โ05-11-2021 05:02 PM
Hi Team,
To run a Scheduler every 1min, im using Custom Scheduler value as 0-59 * * * *
Can anyone suggest more options on this?
โ05-12-2021 01:26 AM
Just tested that */1 * * * * will not run, same as 2,3,4
โ05-12-2021 06:34 PM
You could try a callable job repeat and wait one minute with the scheduler. I inadvertantly did that and it fired every 5 seconds for about an hour until I realized it.
โ05-12-2021 06:37 PM
Sad to say that because of Workatoโs current billable recipe model, we have to find these โworkaroundsโ . I would prefer to spend more time on the actual workflow design instead of scheduling ๐ฅฒ
โ05-19-2021 01:51 AM
Hi everyone, the minimum limit for scheduler is 5 minutes. Although you can bypass this limit by using Cron Expressions, the internal limit is still at 5 minutes. You may run into failures or get wonky results if you continue to run this.
โ05-19-2021 01:54 AM
If you want to get a 1 min interval, the workaround is to call 5 different callable recipes (Assuming concurrency is at 1). Main recipe calls 1st callable recipe asynchronously, waits 1 minutes and proceeds to call 2nd callable recipe asynchronously and the pattern continues.