Hi, I running a query in Hive that generates 2 map reduce job. However, I noticed that the settings are not propagated into the 2nd map reduce job. Is this a bug or am I issuing the query incorrectly?
set hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat; set hive.exec.dynamic.partition.mode = nonstrict; set hive.exec.dynamic.partition = true; set mapred.max.split.size = 134217728; insert overwrite table data_table partition(date_partition) select a, b, c, date from tmp_tablewhere date_partition = '2011-03-01' and date >= '2011-02-01';
