Pregunta

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

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top