Pass user configurations/arguments to UDF

2014-04-10 Thread Patcharee Thongtra
Hi, I implemented a custom load function. How to pass some user settings to this function? Any help is appreciated, Patcharee

Re: Pass user configurations/arguments to UDF

2014-04-10 Thread Abhishek Agarwal
You can get the job configuration in your UDF through this function. JobConf conf = UDFContext.getInstance().getJobConf(); Any job parameters that you pass in the job, should be available in conf. On Thu, Apr 10, 2014 at 12:02 PM, Patcharee Thongtra patcharee.thong...@uni.no wrote: Hi, I