celery
Executing Celery tasks with dependency graph
I would like to have Celery tasks that depend on the result of 2 or more other tasks. I have looked into Python+Celery: Chaining jobs? and http://pypi.python.org/pypi/celery-tasktree , but those are g[详细]
2023-03-17 03:19 分类:问答Issues with celery daemon
We\'re having issues with our celery daemon being very flaky.We use a fabric deployment script to restart the daemon whenever we push changes, but for some reason this is causing massive issues.[详细]
2023-03-16 15:22 分类:问答How to diagnose Celery workers that hang
I am getting started with Celery for a Django project.For local development purposes I\'ve set it up with djcelery and djkombu (database transport), according to these instructiuons http://ask.github.[详细]
2023-03-16 03:12 分类:问答Recover from task failed beyond max_retries
I am attempting to asynchronously consume a web service because it takes up to 45 seconds to return.Unfortunately, this web service is also so开发者_如何转开发mewhat unreliable and can throw errors.I[详细]
2023-03-15 23:48 分类:问答Setting up EC2 instances as Celery Workers with a local computer as the host
Similar to my question here I\'m trying to set up multiple amazon EC2 instances to do some multiprocessing. I was thinking of using Celery to manage the workers. Has anyone gotten celery to work on EC[详细]
2023-03-15 05:01 分类:问答Making only one task run at a time in celerybeat
I have a task which I execute once a minute using celerybeat. It works fine. Sometimes though, the task takes a few seconds more than a minute to run because of which two instances of the task run. Th[详细]
2023-03-15 03:05 分类:问答Too many open mongoDB connections when using Celery
I\'m using 开发者_如何学CCelery to download feeds and resize images. The feeds and image paths are then stored in MongoDB using mongoengine. When I check current connections (db.serverStatus()[\"conne[详细]
2023-03-14 20:19 分类:问答Celery task that runs more tasks
I am using celerybeat to kick off a primary task that kicks of a number of secondary tasks. I have both tasks written already.[详细]
2023-03-13 11:38 分类:问答Twisted or Celery? Which is right for my application with lots of SOAP calls?
I\'m writing a Python application that needs both concurrency and asynchronicity.I\'ve had a few recommendations each for Twisted and Celery, but I\'m having trouble determining which is the better ch[详细]
2023-03-12 23:22 分类:问答Django schedule task on timeout
I have a time-out set on an entity in my database, and a开发者_如何学C state (active/finished) assigned to it. What I want is to change that entity\'s state to finished when that time-out expires. I w[详细]
2023-03-12 06:16 分类:问答