Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

16 Answers

up vote 95 down vote accepted

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 (on Linux) or at (on Windows) to run my command at the required times.

This is a simple solution that doesn't require installing a heavy AMQP stack. However there are nice advantages to using something like Celery, mentioned in the other answers. In particular, with Celery it is nice to not have to spread your application logic out into crontab files. However the cron solution works quite nicely for a small to medium sized application and where you don't want a lot of external dependencies.

share|improve this answer
1  
Is this a way to do this without external services but using an only running django framework process? – sergzach Oct 14 '11 at 13:57
@s.zakharov: yes. – Brian Neal Oct 14 '11 at 14:54
1  
@Brian_Neal django_cron application. – sergzach Dec 4 '11 at 22:13
Please help me understand how will I run a management command in a virtual environment using cron on the last day of every month. – mmrs151 Mar 29 '12 at 23:17
1  
@sergzach I am assuming you are referring to the first one, "django-cron on Google Code". You are right about that one. This is actually why I opt for the second one, "django-cron on GitHub", because it makes it so you have a simple crontab setup/management - only one crontab, referring to the management command - but since you are using a separate cron process you avoid this synchronization issue (as far as I can tell). – seafangs Oct 18 '12 at 15:26
show 2 more comments

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.

share|improve this answer

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.

share|improve this answer
5  
I'd like to have it rolled-up into my django app if possible. – TM. Feb 21 '09 at 20:20
@TM: What does "rolled-up into my django app" mean? Please clarify your question. – S.Lott Feb 21 '09 at 20:29
6  
I'd like people to be able to easily deploy this app without having to set up cron jobs themselves. – TM. Feb 21 '09 at 20:55
You can always wrap the cron interface into your app. – monkut Feb 22 '09 at 12:41
17  
+1 for standard OS – Geradeausanwalt Aug 11 '10 at 17:30
show 1 more comment

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.

share|improve this answer

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/

share|improve this answer
@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 '09 at 8:06

Put the following at the top of your cron.py file:

#!/usr/bin/python
import os, sys
sys.path.append('/path/to/') # the parent directory of the project
sys.path.append('/path/to/project') # these lines only needed if not on path
os.environ['DJANGO_SETTINGS_MODULE'] = 'myproj.settings'

# imports and code below
share|improve this answer

Brian Neal's suggestion of running management commands via cron works well, but if you're looking for something a little more robust (yet not as elaborate as Celery) I'd look into a library like Kronos:

# app/cron.py

import kronos

@kronos.register('0 * * * *')
def task():
    pass
share|improve this answer

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

share|improve this answer
Still depends on cron for triggering, just adds another abstraction layer in between. Not sure it's worth it, personally. – Carl Meyer Feb 23 '09 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 '09 at 5:31

what do you think of this? https://github.com/reavis/django-cron

share|improve this answer
No explanation? – TM. Nov 24 '10 at 3:50
not mine but i've found this on GiHub, personally i think is very simple to use, but i've one problem where after 1Hours all jobs "registred" dead. – Kiuz Nov 25 '10 at 8:59

after the part of code,I can write anything just like my views.py :)

#######################################
import os,sys
sys.path.append('/home/administrator/development/store')
os.environ['DJANGO_SETTINGS_MODULE']='store.settings'
from django.core.management impor setup_environ
from store import settings
setup_environ(settings)
#######################################

from http://www.cotellese.net/2007/09/27/running-external-scripts-against-django-models/

share|improve this answer

I just thought about this rather simple solution:

  1. Define a view function do_work(req, param) like you would with any other view, with URL mapping, return a HttpResponse and so on.
  2. Set up a cron job with your timing preferences (or using AT or Scheduled Tasks in Windows) which runs curl http://localhost/your/mapped/url?param=value.

You can add parameters but just adding parameters to the URL.

Tell me what you guys think.

[Update] I'm now using runjob command from django-extensions instead of curl.

My cron looks something like this:

@hourly python /path/to/project/manage.py runjobs hourly

... and so on for daily, monthly, etc'. You can also set it up to run a specific job.

I find it more managable and a cleaner. Doesn't require mapping a URL to a view. Just define your job class and crontab and you're set.

share|improve this answer
only problem am sensing is un-necessarily adding load to the app and bandwidth just to run a background job that would better be launched "internally" and independent of the serving app. But other than that, this is a clever n more generic django-cron because it can even be invoked by agents external to the app's server! – nemesisfixx Jan 25 '12 at 17:51
You are right, that's why I moved to using jobs from django-command-extensions. See my update to my answer. – Michael Jan 25 '12 at 21:16

We've open-sourced what I think is a structured app. that Brian's solution above alludes too. Would love any / all feedback!

https://github.com/tivix/django-cron

It comes with one management command:

./manage.py runcrons

That does the job. Each cron is modeled as a class (so its all OO) and each cron runs at a different frequency and we make sure same cron type doesn't run in parallel (in case crons themselves take longer time to run than their frequency!)

Thanks!

share|improve this answer

If I understand right, you need to schedule some tasks in Django.

The best thing I find these days is this one:

http://celery.github.com/celery/index.html

share|improve this answer

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

share|improve this answer

I had something similar with your problem today.

I didn't wanted to have it handled by the server trhough cron (and most of the libs were just cron helpers in the end).

So i've created a scheduling module and attached it to the init .

It's not the best approach, but it helps me to have all the code in a single place and with its execution related to the main app.

share|improve this answer

RabbitMQ and Celery gives far more features and task handling capability than Cron. If your task failure is not an issue and you think you will handle broken task in next call, then Cron is sufficient. Celery+AMPQ let you handle the broken task, and it will again be executed by another workers (celery workers listens for next task to work on), till the max attempt you specified. Even you can invoke another task to log in db or mail admin once max failure occurred. You can also distribute CELERY and AMPQ servers when you need to scale.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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