Question

The Google App Engine documentation says:

The App Engine Cron Service allows you to configure regularly scheduled tasks...

But what task queue do cron scheduled tasks run on? How can I change the task queue for a cron job? My motivation for this question is that I'd like to control the retry-parameters of cron scheduled tasks.

Thanks

Était-ce utile?

La solution

It doesn't use a task queue, and the retry options for cron 'tasks' aren't configurable. The closest you can get is to do nothing in your cron 'task' except enqueue another task, which can be configured via a queue.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top