Job to be executed each second

Hi There!

Is there any way for Job to be executed each second?

I guess there no such option to pass it through code. What were you trying to do?

I want to call the external URL each second, based on that result I need to update some data on moralis table

What will be the stop condition of the loop?

Maybe you can use cloud functions instead of jobs for this.

1 Like

You can run a job and add a delay of 1 second between requests. Make sure there is also a way to stop that job somehow.

That is great, So How to start a job for looping?

there is no option to loop job

Repeat on what interval? MIN is 1minute

Got it we can create a Job without scheduling it, and inside use a loop and delay it by 1 second

1 Like