djcelery Questions
2
Solved
What is the point of Celery chain if the whole chain breaks if one of the tasks fail?!!
I have this Celery chain:
res = chain(workme.s ( y=1111 ), workme2.s( 2222 ), workme3.s( 3333 ),)()
And ...
Tergiversate asked 25/6, 2013 at 7:13
3
I am working on a Django app locally that needs to take a CSV file as input and run some analysis on the file. I am running Celery, RabbitMQ, and web server locally. When I import the file, I see t...
Cide asked 11/12, 2015 at 17:7
3
Solved
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 onli...
1
I am getting the following error:
File "/Library/Python/2.7/site-packages/Django-1.8.2-py2.7.egg/django/utils/translation/trans_real.py", line 164, in _add_installed_apps_translations
"The transla...
Gonium asked 11/6, 2015 at 21:28
2
Solved
I have created a celery worker with a single celerybeat schedule task which runs at 5 seconds time interval. How can I add another beat task dynamically to the celery worker without stopping it?
E...
Cothran asked 13/11, 2015 at 3:28
1
*Using celery 3.1.25 because django-celery-beat 1.0.1 has an issue with scheduling periodic tasks.
Recently I encountered an issue with celerybeat whereby periodic tasks with an interval of a day ...
Strait asked 21/3, 2017 at 10:20
1
Solved
So I am using django with celery. rabbitmq is the broker. redis is the cache. mysql is the db. (everything in localhost)
I am using python2.7 and using virtualenv based virtual environment
I star...
Selfstyled asked 12/7, 2016 at 4:14
2
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 bee...
Expository asked 21/5, 2013 at 12:18
3
Solved
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)...
3
Solved
I'm calling a task within a tasks in Django-Celery
Here are my tasks.
@shared_task
def post_notification(data,url):
url = "http://posttestserver.com/data/?dir=praful" # when in production, remov...
1
Solved
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],
s...
Buroker asked 9/3, 2013 at 5:37
1
Solved
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 agg...
1
© 2022 - 2024 — McMap. All rights reserved.