Re: Welcome new Oozie Committers - Peter Bacsko and Peter Cseh

2017-03-21 Thread Abhishek Bafna
Congrats (Peter)^2. > On Mar 21, 2017, at 6:58 AM, goun na wrote: > > Congrats! > > 2017-03-21 7:37 GMT+09:00 Robert Kanter : > >> Hi everyone, >> >> It is my pleasure to announce that the Oozie PMC has invited >> Peter Bacsko and Peter (Geza) Cseh to

Re: Welcome new Oozie Committers - Abhishek Bafna and Satish Saley

2017-01-09 Thread Abhishek Bafna
Hi, Many thanks to the PMC for the invitation and guidance all along. Thanks to fellow community members for all the feedback and help they provided. Regards, Abhishek Bafna On Sat, Jan 7, 2017 at 4:50 AM, Mohammad Islam <misla...@yahoo.com.invalid> wrote: > Congrats both! > Rega

[ANNOUNCE] Apache Oozie 4.3.0 released

2016-12-02 Thread Abhishek Bafna
Hello Oozie Community, The Apache Oozie team is pleased to announce the release of Oozie 4.3.0. Oozie 4.3.0 includes new features, bug fixes and minor improvements. The details of the release and download location can be found at http://oozie.apache.org/ The full release notes can be found at

Re: Oozie Job + Version Control Tool

2016-10-19 Thread Abhishek Bafna
Hi, Oozie does not have version control for jobs. When you submit a workflow/coordinator/bundle to oozie, it stores it into DB uses it from there for further execution. Thanks, Abhishek > On Oct 19, 2016, at 1:16 PM, goun na wrote: > > Hi users, > > What is the best to

Re: Unable to configure custom mapreduce.job.queuename in Oozie shell action

2016-09-13 Thread Abhishek Bafna
Hi, Then why not use the same way of specifying the queue name in the pig script and launch it. set mapreduce.job.queuename=queuename ~Abhishek > On Sep 13, 2016, at 1:48 PM, Bijoy Deb wrote: > > Hi, > > When I submit a job using Pig command,I am able to submit it

Re: Oozie suspend command

2016-06-16 Thread Abhishek Bafna
Hi, The shell action executes using a launcher job. It is most probably, node where launcher is getting executed does not have oozie client installed. So it is not able to find the oozie command. Thanks, Abhishek > On Jun 16, 2016, at 6:28 PM, Hanmay Udgiri wrote:

Re: oozie.service.PurgeService.purge.limit

2016-04-22 Thread Abhishek Bafna
Hi, 1. The property "oozie.service.PurgeService.purge.limit" defines the number of records to be retrieved/deleted in each operation with the database. 2. It is just not to overload the database with purge service operation data in a single transaction. 3. The logs of the PurgeService are

Re: Error running workflow for first time

2016-04-22 Thread Abhishek Bafna
What database are you using here derby or any other database? Can you check the status of the database. It is in Read-Only mode and not able to write the data. On Fri, Apr 22, 2016 at 8:38 AM, Suresh V wrote: > Hello > > We are trying to get oozie working in a small cluster

Re: Java Action, httpclient and httpcore problem

2016-04-15 Thread Abhishek Bafna
Hi Morgrim, The httpcore-4.2.5 and httpclient-4.2.5 version is coming from the hadoop classpath not from the oozie. Because Java action executes the main() method from the launcher mapper only. You can check the oozie httpc* version from the share lib with below command. BTW, none of these are

Re: oozie coordinators cron syntax and handling DST

2016-04-04 Thread Abhishek Bafna
Hi, Quoting from the Oozie Coordinator Docs: "Oozie processes coordinator jobs in a fixed timezone with no DST (typically UTC ), this timezone is referred as 'Oozie processing timezone'."

Re: About java action and sharelibs

2016-04-04 Thread Abhishek Bafna
Hi, Answer-1: It will bring *.* from the oozie directory into your class path. Answer-2: In a general sense, you need not add the property "oozie.action.sharelib.for.java=xxx,xxx" for your java action, unless you want to add some more jars (libraries) in your class path. The "xxx" value,