Tagged Questions
0
votes
0answers
46 views
How to write my own Celery worker?
I have a python script that is going to be run on host side. The script can work endlessly or until fail.
I have to run the script as task (from web page) passing params. I want to know tasks ...
0
votes
0answers
102 views
Celery : Restoring 1 unacknowledged message
We have created a project using django in a virtual environment. We had to use background workers so we implemented celery. While developing we used the command:
python manage.py celeryd ...
0
votes
0answers
50 views
Celery tasks are forgotten in PoolWorker processes
I'm working on a job queue and it seems like my celery tasks are getting forgotten in PoolWorker processes. Here's the pattern I'm using:
def register_jobs_one(celery, settings):
thing_one = ...
1
vote
1answer
326 views
django-celery Queuing and retrieving of result
We use django-celery for application. I have doubt regarding the workflow that we follow.
Currently when a user clicks on a link a task is queued using following code
...
2
votes
0answers
94 views
CELERY_ROUTES seems to be ignored
I'm using django and djcelery. Since some tasks are a bit heavy I want them in a separate queue.
According to the part about automatic routing in the user guide, you can achieve this through the ...
0
votes
0answers
119 views
Heroku Second Apps worker is too slow
I have a Heroku account and have an application up and running which uses django-celery for background processing and the app is working perfectly.
I wanted to create a test site so created a second ...
0
votes
1answer
250 views
Combining job results in celery
I'm working on a software upgrade system using celery. I have a use case that I'm struggling to implement cleanly. Here are my jobs:
device_software_updates(device_id)
returns a list of software ...
1
vote
1answer
586 views
Django-celery : Passing request Object to worker
How can i pass django request object to celery worker. When try to pass the request object it throws a Error
Can't Pickle Input Objects
It seems that celery serialize any arguments passed to ...
2
votes
1answer
485 views
Django celery reterive task status using Ajax
I'm using celery 2.5.3 and django celery - 2.5.5. And i'm mysql as the broker.
Here is the scenario, when the user request i queue a job in the worker which is getting data from another site. And ...
