vote up 6 vote down star
6

I've been working on a web app using Django, and I'm curious if there is a way to schedule a job to run periodically.

Basically I just want to run through the database and make some calculations/updates on an automatic, regular basis, but I can't seem to find any documentation on doing this.

Does anyone know how to set this up?

To clarify: I know I can set up a cron job to do this, but I'm curious if there is some feature in Django that provides this functionality. I'd like people to be able to deploy this app themselves without having to do much config (preferably zero).

I've considered triggering these actions "retroactively" by simply checking if a job should have been run since the last time a request was sent to the site, but I'm hoping for something a bit cleaner.

flag

7 Answers

vote up 12 vote down check

One solution that I have employed is to do this:

1) Create a custom management command, e.g.

python manage.py my_cool_command

2) Use cron to run my command at the required times.

link|flag
vote up 4 vote down

If you're using a standard OS, you use cron.

If you're using Windows, you use at.

Write a Django management command to

  1. Figure out what platform they're on.

  2. Either execute the appropriate "AT" command for your users, or update the crontab for your users.

link|flag
1  
I'd like to have it rolled-up into my django app if possible. – TM Feb 21 at 20:20
@TM: What does "rolled-up into my django app" mean? Please clarify your question. – S.Lott Feb 21 at 20:29
1  
I'd like people to be able to easily deploy this app without having to set up cron jobs themselves. – TM Feb 21 at 20:55
You can always wrap the cron interface into your app. – monkut Feb 22 at 12:41
Re reading this answer I'm wondering why I didn't upvote it a long time ago. +1 – TM Nov 20 at 21:21
vote up 5 vote down

Look at Django Poor Man's Cron which is a Django app that makes use of spambots, search engine indexing robots and alike to run scheduled tasks in approximately regular intervals

See: http://code.google.com/p/django-poormanscron/

link|flag
@jrogi: I hadn't seen this project before and that's an interesting concept to use bot requests as a scheduling mechanism. Thanks! – Van Gale Feb 22 at 8:06
vote up 2 vote down

I personally use cron, but the Jobs Scheduling parts of django-commands-extension looks interesting.

link|flag
Still depends on cron for triggering, just adds another abstraction layer in between. Not sure it's worth it, personally. – Carl Meyer Feb 23 at 2:05
I agree, and after thinking about it I don't want request middleware slowing down my site (ala poormanscron above) when cron can do the job better anyway. – Van Gale Feb 23 at 5:31
vote up 2 vote down

Interesting new pluggable Django app: django-chronograph

You only have to add one cron entry which acts as a timer, and you have a very nice Django admin interface into the scripts to run.

link|flag
vote up 0 vote down

If you are a high-performance site and already using RabbitMQ here's a trick to get around cron:

Using AMQP to do cron-like scheduling

link|flag
vote up 3 vote down

Celery is a distributed task queue, built on AMQP (RabbitMQ). It also handles periodic tasks in a cron-like fashion. Depending on your app, it might be worth a gander.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.