I am using Django with MongoEngine, django-celery and the MongoDB backend for celery. I am queuing one task. The task involves fetching a file from GridFS (through the MongoEngine FileField), manipulating it and putting it back in the database.
The task runs as I expect without queuing. When I queue it, it converts the files, but it does not write to the database.
Here's the relevant part of my settings.py.
#These are apparently defaults that I shouldn't need
BROKER_BACKEND = 'mongodb'
BROKER_HOST = "localhost"
BROKER_PORT = 27017
BROKER_USER = ""
BROKER_PASSWORD = ""
BROKER_VHOST = ""
CELERY_RESULT_BACKEND = "mongodb" CELERY_MONGODB_BACKEND_SETTINGS = {
"host": "localhost",
"port": 27017,
"database": "svg",
"taskmeta_collection": "taskmeta", }
import djcelery djcelery.setup_loader()
I'm running celery like this
$ ./manage.py celeryd -l info
When it runs the task, celery says this
[2011-07-23 16:07:11,858: INFO/MainProcess] Got task from broker: graphics.tasks.queue_convert[dfdf98ad-0669-4027-866d-c64971bb6480]
[2011-07-23 16:07:15,196: INFO/MainProcess] Task graphics.tasks.queue_convert[dfdf98ad-0669-4027-866d-c64971bb6480] succeeded in 3.33006596565s
(No errors)
Here's the task.
@task()
def queue_convert(imageId):
image=Image.objects.get(id=imageId)
convert(image)
convert calls a bunch of other functions. Basically, it first reads from a FileField, manipulates that string, writes that string to a file, manipulates that file, writes the generated strings and files to other FileFields and then runs image.save().
The mongo logs look different depending on whether I queue the task. This is what happens in the mongo logs when I use the task queue.
Sat Jul 23 16:03:26 [initandlisten] connection accepted from 127.0.0.1:39065 #801
Sat Jul 23 16:03:26 [initandlisten] connection accepted from 127.0.0.1:39066 #802
Sat Jul 23 16:03:29 [initandlisten] connection accepted from 127.0.0.1:39068 #803
This is what happens when I call convert(image) directly instead of calling queue_convert(image.id)
Sat Jul 23 16:07:13 [conn807] end connection 127.0.0.1:43630
Sat Jul 23 16:07:13 [initandlisten] connection accepted from 127.0.0.1:43633 #808
Sat Jul 23 16:07:13 [initandlisten] connection accepted from 127.0.0.1:43634 #809
Sat Jul 23 16:07:13 [conn808] end connection 127.0.0.1:43633
Any idea as to what might be going wrong?
convertcould enlight this case a bit more.. – lazerscience Jul 23 '11 at 21:21