Re: Why setting '\001' separator config gives 'abc\001def' instead of 'abc^Adef'?

2015-08-28 Thread Mark Gao
try value: \\\001 or \\\u0001 On Fri, Aug 28, 2015 at 9:33 AM, Mungeol Heo mungeol@gmail.com wrote: Hi, I am trying to use the config which addressed below. name: mapreduce.output.textoutputformat.separator value: \001 or \u0001 The problem is when I use a configuration file or -D

Re: Prallel running jobs

2015-06-03 Thread Mark Gao
Hi, Jay You can split this SQL into 3 scripts, like this: --script1.sql FROM EMPLOYER_STAGE INSERT OVERWRITE TABLE EMPLOYER PARTITION (FISCAL_YEAR = 2015, FISCAL_PERIOD = 01) SELECT * WHERE FISCAL_YEAR = 2014 AND FISCAL_PERIOD = 08; --script2.sql FROM EMPLOYER_STAGE INSERT OVERWRITE TABLE