Reputation:
How can I use Cron on Google App Engine?
Upvotes: 32
Views: 18795
Reputation: 317
You can use GAE Cron jobs, but be careful as they don't support HTTPS!
Upvotes: -1
Reputation: 7831
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
Upvotes: 36
Reputation: 41
Here's a tutorial on using a Google App Engine Cron Job to send an automated email:
http://www.fishbonecloud.com/2010/11/automated-email-using-google-app-engine.html
Upvotes: -1
Reputation: 651
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/
Upvotes: 1
Reputation: 681
You can now run scheduled tasks with google appengine
http://code.google.com/appengine/docs/python/config/cron.html#Securing_URLs_for_Cron
Upvotes: 3
Reputation: 2906
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).
Upvotes: 1
Reputation: 12895
See this post - maybe soon we'll get sort-of-cron functionality in GAE.
Upvotes: 1
Reputation:
Use http://schedulerservice.appspot.com/ or http://code.google.com/p/gaeutilities/wiki/Cron
Upvotes: 1