cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Scheduler to run every 1min

bala-s
Deputy Chef I
Deputy Chef I

Hi Team,


To run a Scheduler every 1min, im using Custom Scheduler value as 0-59 * * * *


Can anyone suggest more options on this?

14 REPLIES 14

gordonhuworkato
Workato employee
Workato employee

Just tested that */1 * * * * will not run, same as 2,3,4

brian-haskins
Deputy Chef III
Deputy Chef III

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.

gordonhuworkato
Workato employee
Workato employee

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 ๐Ÿฅฒ

sathia-seelan
Workato employee
Workato employee

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.

sathia-seelan
Workato employee
Workato employee

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.