django-celery
Parallel processing within a queue (using Pool within Celery)
I\'m using Celery to queue jobs from a CGI application I made. The way I\'ve set it up, Celery makes each job run one- or two-at-a-time by setting CELERYD_CONCURRENCY = 1 or = 2 (so they don\'t crowd[详细]
2023-04-12 02:16 分类:问答Implementing "idle" and "normal" priority queues for long-running tasks in Celery
I\'m attempting to implement a following scenario with Celery: two queues of (same) long-running tasks, one for \"normal\" and the other for \"idle\" priority.[详细]
2023-04-05 07:25 分类:问答Django-Celery progress bar
I use: Celery Django-Celery RabbitMQ I can see all my tasks in the Django admin page, but at the moment it has just a few states, like:[详细]
2023-04-04 16:10 分类:问答Asynchronous data fetching and cache handling
I\'m planning on deploying a dynamic site that needs certain tasks to be done periodically in the background, let\'s say every hour or two. The data that i need to output is strictly depending on the[详细]
2023-04-04 05:26 分类:问答Django - Celery: @transaction and @task don't stack
I want to run a Django - Celery task with manual transaction management, but it seems that the annotations do not stack.[详细]
2023-04-04 01:24 分类:问答Celery in Django (RabbitMQ vs. Django Database)
I am trying to set up Django with Celery so I can send bulk emails in the background. I am a little confused about how the different components play into Celery. Do I need to use RabbitMQ? Can I just[详细]
2023-04-02 07:50 分类:问答newbie question to RabbitMQ and Celery
I started playing around with Celery and RabbitMQ this morning and defined some basic tasks to see how the performance will improve on my server.[详细]
2023-04-02 07:17 分类:问答django celery: how to set task to run at specific interval programmatically
I found that I can set the task to run at specific interval at specific times from here, but that was only done dur开发者_Python百科ing task declaration. How do I set a task to run periodically dynami[详细]
2023-03-30 14:18 分类:问答Celery result.get times out
I have two different django projects say projA and projB, each have its own celery daemon running on separate queues but same vhost, projA have a task taskA and projB have a task taskB, I try to run t[详细]
2023-03-29 15:52 分类:问答django djcelery: building a transactional task is not rolling back
am trying to do a transactional tasks whereby the task will rollback the database updates if it fails to send the email.[详细]
2023-03-29 14:18 分类:问答