I'm trying to come up with a schedule for my Azure WebJob in crontab format that will run every 15 minutes but exactly at h:00, h:15, h:30 and h:45.
The one that I'm using for my web job right now is:
{ "schedule": "0 0/15 * * * *" }
But this doesn't make it run exactly at the top of the hour then every 15 minutes thereafter.
I want the job to keep running -- no end date/time. However, when I launch the webjob, it should not start running until it's h:00, h:15, h:30 or h:45 -- whichever happens to be next. For example, if I deploy my webJob at 8:37 AM, the first run should be at 8:45 AM AND it should then keep running every 15 minutes after that.
I'd appreciate some help with this. Thanks.