Home > OS >  How to make gcp schedule execute tasks at a specific time every hour?
How to make gcp schedule execute tasks at a specific time every hour?

Time:01-30

How to set schedule as "every 1 minutes from every hours from HH:10 to HH:15"? I want the task to be executed at a specific time every hour, but gcp doesn't seem to support it.

In a nutshell,I want to execute the task 5 times per hour.

https://cloud.google.com/appengine/docs/standard/python/config/cronref

"every 1 minutes from every hours from HH:10 to HH:15" not working.

CodePudding user response:

"5 times per hour" would essentially mean every 12 minutes. Try:

schedule: every 12 minutes

If you are using Cloud Scheduler, you can specify a cron:

*/12 * * * *

For running its every 11-15th every hour being 10-15 hours, try using the cron:

11-15 10-15 * * *
  • Related