Using Cron Jobs in Google App Engine

How can I use Cron in Google App Engine?

+31
google-app-engine cron
Sep 28 '08 at 10:55
source share
10 answers

Google officially included cron in AppEngine, for more details:

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

+36
Apr 08 '09 at 21:10
source share

This page shows how to achieve Cron functionality in Google Appengine.

+3
Sep 28 '08 at 10:59
source share

Now you can run scheduled tasks using the Google appengine

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

+3
Apr 09 '09 at 10:21
source share

Read the comments on issue 6 for possible workarounds.

+1
Sep 28 '08 at 11:19
source share
+1
Jan 18 '09 at 13:40
source share

See this post - maybe we will get cron functions in GAE soon.

+1
Feb 06 '09 at 15:21
source share

According to the official AppEngine public blog, updating the roadmap two weeks ago planned tasks (as well as queues of background tasks) release in the moderately near future ("in the next six months", as of February 6, 2009).

+1
Feb 19 '09 at 7:42
source share

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

+1
Jun 29 '10 at 8:21
source share

Here's a tutorial on using the Google Cron job for the Google App Engine to send an automated email:

http://www.fishbonecloud.com/2010/11/automated-email-using-google-app-engine.html

-one
Nov 23 '10 at 16:21
source share

You can use the GAE Cron jobs, but be careful, as they do not support HTTPS!

-one
Jun 18 '19 at 9:53 on
source share



All Articles