anonymous
anonymous

Reputation:

Use of Cron jobs in Google App Engine

How can I use Cron on Google App Engine?

Upvotes: 32

Views: 18795

Answers (10)

Yevhen Dyachenko
Yevhen Dyachenko

Reputation: 317

You can use GAE Cron jobs, but be careful as they don't support HTTPS!

Upvotes: -1

Benjamin Ortuzar
Benjamin Ortuzar

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

Fishbone
Fishbone

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

Livio
Livio

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

Dimitris
Dimitris

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

jrk
jrk

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

zgoda
zgoda

Reputation: 12895

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

Upvotes: 1

Alexander Kojevnikov
Alexander Kojevnikov

Reputation: 17742

Read comments to issue 6 for possible workarounds.

Upvotes: 1

Ross
Ross

Reputation: 47057

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

Upvotes: 3

Related Questions