Re: Cron-schedule not working

2019-01-02 Thread Asanka Sanjaya
n > example like 1 AM instead of midnight and see what’s happening? > > > > Cheers Josef > > > > > > *From: *Asanka Sanjaya > *Reply-To: *"users@nifi.apache.org" > *Date: *Wednesday, 2 January 2019 at 07:01 > *To: *"users@nifi.apache.or

Re: Cron-schedule not working

2019-01-02 Thread Josef.Zahner1
e.org" Date: Wednesday, 2 January 2019 at 07:01 To: "users@nifi.apache.org" Subject: Re: Cron-schedule not working Hi All, Does anybody else have any idea regarding this? On Tue, Jan 1, 2019 at 7:26 PM Chad Woodhead mailto:chadwoodh...@gmail.com>> wrote: Hi Asanka, Yes y

Re: Cron-schedule not working

2019-01-01 Thread Asanka Sanjaya
Hi All, Does anybody else have any idea regarding this? On Tue, Jan 1, 2019 at 7:26 PM Chad Woodhead wrote: > Hi Asanka, > > Yes you are correct, my mistake. NiFi uses the Quartz Cron and not the > Linux cron. > > Every day at midnight is: 0 0 0 * * ? > > My apologies. > > -Chad > > On Jan 1,

Re: Cron-schedule not working

2019-01-01 Thread Chad Woodhead
Hi Asanka, Yes you are correct, my mistake. NiFi uses the Quartz Cron and not the Linux cron. Every day at midnight is: 0 0 0 * * ? My apologies. -Chad > On Jan 1, 2019, at 1:55 AM, Asanka Sanjaya wrote: > > Hi Chad, > > The nifi docs say that the expression should start with seconds and

Re: Cron-schedule not working

2018-12-31 Thread Asanka Sanjaya
Hi Chad, The nifi docs say that the expression should start with seconds and not with minutes. https://nifi.apache.org/docs/nifi-docs/html/user-guide.html [image: image.png] This is the example that they have given: The string 0 0 13 * * ? indicates that you want to schedule the processor to

Re: Cron-schedule not working

2018-12-31 Thread Asanka Sanjaya
Thanks Chad! On Mon, Dec 31, 2018 at 6:22 PM Chad Woodhead wrote: > Hi Asanka, > > The cron expression for every night at midnight is: 0 0 * * * > > 0 0 0 * * is not a valid cron expression as the 3rd field (day of month) > cannot be a 0. > > Here is an online cron editor that can help build

Re: Cron-schedule not working

2018-12-31 Thread Chad Woodhead
Hi Asanka, The cron expression for every night at midnight is: 0 0 * * * 0 0 0 * * is not a valid cron expression as the 3rd field (day of month) cannot be a 0. Here is an online cron editor that can help build your cron expressions: https://crontab.guru/ Also here

Cron-schedule not working

2018-12-30 Thread Asanka Sanjaya
Hello, I use a cron-driven processor to start the workflow and the expression is: 0 0 0 * * ? I expect the processor to run each day at 00:00 hours. But it runs each hour instead. Processor configuration: [image: image.png] Flow: [image: image.png] What could be the possible reasons for