In my dev box, I have MapR 3.0.2
, Hive 0.11
, HCatLog 0.4.1
& Pig 0.12
. Am using HCatlog
to read and write Hive
tables from Pig
(Pig Latin
), using standard queries,
A = LOAD 'dbname.tablename' USING org.apache.hcatalog.pig.HCatLoader();
My Hive
table contains TIMTESTAMP
datatype (few columns), so immediately after this statement in GRUNT
, am getting error as
ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: Type timestamp not present
There is a similar query at : Type conversion pig hcatalog .
I can't change the data-type of my Hive
tables. Also I can't change or upgrade any of these tools to newer versions (client policy constraint). How can I cast it to string or any supported data-type, so that HCatalog
passes it between Pig
& Hive
and I can continue further?
As per the Hive, Pig and HCatalog version that you are using, timestamp is not supported. And there is no way that you can directly load it into Pig using HCatalog from Hive.
There is a work around, if you create a temp hive table and change the datatype from timestamp to string. This way you will be able to load it into Pig as chararray. Once you have your data loaded in Pig, you can always typecast it.