djcelery refers to [tag:django-celery] pluggable app for Celery integration with Django

learn more… | top users | synonyms

0
votes
1answer
24 views

Djcelery tasks still scheduled even after removing the task

I have scheduled a task using django celery (djcelery) by defining it as so: @periodic_task(run_every=timedelta(minutes=1)) def mytask(): # Do something I decided to remove this task from the ...
0
votes
0answers
17 views

Celery beat queue includes obsolete tasks

I'm using periodic celery tasks with Django. I used to have the following task in my app/tasks.py file: @periodic_task(run_every=timedelta(minutes=2)) def stuff(): ... But now this task has been ...
0
votes
0answers
34 views

Django Celery Custom Periodic Task Not Executing

I tried using this code to try to dynamically add / remove scheduled tasks. My tasks.py file looks like this: from celery.decorators import task import logging log = logging.getLogger(__name__) ...
0
votes
2answers
209 views

Celery, Django, Heroku — ImportError: No module named tasks

I am trying to run celery with IronMQ and cache in a Django project on Heroku but I am receiving the following: 2013-04-14T22:29:17.479887+00:00 app[celeryd.1]: ImportError: No module named tasks ...
0
votes
1answer
92 views

Django Celerybeat PeriodicTask running far more than expected

I'm struggling with Django, Celery, djcelery & PeriodicTasks. I've created a task to pull a report for Adsense to generate a live stat report. Here is my task: import datetime import httplib2 ...
0
votes
1answer
32 views

Number of celery tasks executed at a given point of time

I am trying to create a bunch of celery tasks asynchronously on the fly. Say there are 1000 tasks I start asynchronously and I have only one celeryd process running to execute tasks. How many threads ...
0
votes
0answers
53 views

Celery task id in task_revoked handler

So I have a task that creates a work directory and does all its work there. The task is called from server A and executed on worker servers. I need to make sure the work directory is deleted once the ...
1
vote
0answers
163 views

Cannot queue tasks using Django 1.5, django-celery 3.0.11 and mongodb

everyone. I have problem using Django==1.5 with django-celery==3.0.11 I get error: [Errno 61] Connection refused when I run following code from django shell from data_warehouse.tasks import add ...
1
vote
1answer
92 views

Django Celery Chord Not Executing

I have a program that generates a large list of products through Python's itertools; basically a big set of various combinations of words. There are multiple sets to run through the products() ...
0
votes
0answers
22 views

Abort task not working as expected in django celery?

I have a celery chain task like this: chain = file_transfer.s(password, source12, destination1) | save_db.s(request.user.id, basename, extension, start_date, end_date, dur, st, f_size, file_test) | ...
1
vote
1answer
130 views

Django celery running only two tasks at once?

I have a celery task like this: @celery.task def file_transfer(password, source12, destination): result = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', source12, destination], ...
0
votes
1answer
103 views

Django celery beat pytz error on startup

Out of the blue I get the following error when trying to start my dev server with celery and celery beat. One day this thing works next day it doesn't, I haven't changed anything that could explain ...
0
votes
1answer
151 views

Is it possible to show progress bar of django celery task? [duplicate]

I am using database backend in django celery. The task information is stored in a table called: celery_taskmeta in database. This is my task: @celery.task def file_transfer(password, source12, ...
0
votes
0answers
31 views

How to pass the end_date of every task to another view in Django celery chain()

I have two Django celery tasks like this saved in tasks.py: @celery.task def file(password, source12, destination): result = subprocess.Popen(['sshpass', '-p', password, 'rsync', '-avz', ...
0
votes
1answer
49 views

result.ready() isn't work as expected in django celery?

I have a django celery view which do the certain task and after the task has been completed successfully write that in database. I am doing this: result = file.delay(password, source12, ...
0
votes
0answers
53 views

DJANGO CELERY workers stop taking requests after few hours

I'm wondering if someone can help me with a problem running Django, NGINX and Celery to process high volumes of webpage screenshots using cutycapt and xvfb (on the worker threads). My worker threads ...
1
vote
0answers
37 views

celery task not acnowledged after warm shutdown of worker

I'm new to djcelery development. I want to shutdown a worker from a button on the web interface. So I'm calling the following task when the button is clicked in tasks.py: result = ...
1
vote
0answers
54 views

NotRegistered with djcelery + Heroku

I've been stuck on this one for the last 6 hours or so. So any help would be greatly appreciated. I am using djcelery on a Django app which is deployed on Heroku. Said app has a periodic task that ...
0
votes
1answer
182 views

Celery - resubmit failed task chain after max retries exceeded

I'm using celery with django. I'm having to provide an option for the user to inspect a failed task, make modifications to the failed task data if necessary and submit it again. I have seen this ...
1
vote
0answers
47 views

First steps in celery(d) 3.0.9

In two shells, on the same machine, I do the following: a) /home/user/prod/env/bin/python /home/user/prod/www/devcode/manage.py celery worker -E and celery starts up, apparently with no problems b) ...
3
votes
2answers
285 views

Unusual warning with djcelery, billiard, and the django_settings_module

When running manage.py celeryd for async processes, everything works as expected but i'm getting a weird warning at every start-up. It's not causing any errors, but i'm having trouble making it ...
2
votes
1answer
128 views

Celery versus djcelery

I am confused between the differences between these two applications while trying to setup celery on my django project. What are the differences between the two if any? When reading tutorials online ...
0
votes
1answer
46 views

Django Import Task

I have a tasks.py file with 3 methods defined within it. and in my views.py file I am trying to import these methods to be called from a view. from app.tasks import generate_standalone_view, ...
1
vote
1answer
319 views

Monitor Pending Celery Tasks

I'm using Celery with RabbitMQ backend. How can I monitor and get the number of pending tasks? "celery events" and djcelery shows the running and completed tasks. Should I be monitoring RabbitMQ? If ...
0
votes
1answer
697 views

In celery how to get task position in queue?

I'm using Celery with Redis as broker and I can see that the queue is actually a redis list with the serialized task as the items. My question is, if I have an AsyncResult object as a result of ...
4
votes
1answer
624 views

How should I implement callback for taskset in celery

Question I use celery to launch task sets that look like this: I perform a batch of tasks that can be run in parallel, number of tasks in this batch varies from tens to couple thousands. I ...
1
vote
1answer
1k views

How to properly configure djcelery results backend to database

I'm trying to setup djangocelery to store task results in the databse. I set: CELERY_RESULT_BACKEND = 'djcelery.backends.database.DatabaseBackend' then I synced and migrated the db (no errors). ...