Re: Dynamic Partitioning not working in HCatalog 0.11?

2013-10-14 Thread Timothy Potter
Wanted to follow-up with the solution to this issue I raised last week. I upgraded to Hive 0.12 branch and added these two properties to my Pig script: SET hive.exec.dynamic.partition.mode nonstrict; SET hive.exec.dynamic.partition true; This seems to do the trick although I don't recall having t

Dynamic Partitioning not working in HCatalog 0.11?

2013-10-10 Thread Timothy Potter
Here's some simple Pig that reads from one Hive table and writes to another (same data, same schema): sigs_in = load 'signals' using org.apache.hcatalog.pig.HCatLoader(); sigs = filter sigs_in by datetime_partition == '2013-10-07_'; STORE sigs INTO 'signals_orc' USING org.apache.hcatalog.pig.H