views:

4434

answers:

9

How can I use cron on Google Appengine?

+3  A: 

This page lists how to achieve Cron-like functionality on Google Appengine.

Ross
+1  A: 

Read comments to issue 6 for possible workarounds.

Alexander Kojevnikov
All suggested workarounds in that link depend on external box. The answer 1 suggests a work around without an external box
+1  A: 

See this post - maybe soon we'll get sort-of-cron functionality in GAE.

zgoda
+1  A: 

According to the official AppEngine blog's public roadmap update two weeks ago, scheduled tasks (as well as background task queues) are due for the release in the moderately near future ("in the next six months," as of Feb. 6, 2009).

jrk
+24  A: 

Google has officially enabled cron in the AppEngine, for more details check: Cron for Python: http://code.google.com/appengine/docs/python/config/cron.html Cron for Java http://code.google.com/appengine/docs/java/config/cron.html

Benjamin Ortuzar
+1  A: 

You can now run scheduled tasks with google appengine

http://code.google.com/appengine/docs/python/config/cron.html#Securing_URLs_for_Cron

Dimitris
A: 

Here is an example http://cron-tab.appspot.com/, the python source code is available in the related project at code.google.com/p/cron-tab/

Livio
A: 

How can I redirect a link(of other server) using cron scheduling in google app engine

Narendra Choyal