Tagged Questions
1
vote
0answers
76 views
In celery, what would be the purpose of having multiple workers process the same queue?
In the documentation for celeryd-multi, we find this example:
# Advanced example starting 10 workers in the background:
# * Three of the workers processes the images and video queue
# * Two of ...
1
vote
2answers
45 views
Where is the huey consumer configuration?
I'm trying to get running the Huey task queue for python (it's a Celery alternative) and I'm stuck with starting the consumer with main.Configuration (as it's written in the tutorial). I know the ...
2
votes
1answer
68 views
When using celery and rabbitmq, is it possible for the queue to get so large that everything locks up?
I am using celery and rabbitmq to do a chain that looks something like this:
fetch -> parse -> write pages
The write pages part issues it's own set of asynchronous tasks to write each ...
1
vote
2answers
194 views
In Celery Task Queue, is running tasks in a group any different than multiple asyncs in a loop?
Let's say I have a very simple task like this:
@celery.task(ignore_result=True)
def print_page(page):
with open('path/to/page','w') as f:
f.write(page)
(Please ignore the potential race ...
0
votes
0answers
42 views
what for rabbitmq's new taskqueue of random name?
I use celery + rabbitmq
I add some delayed task by celery
and I find that each time after celery processed one task,
a new taskqueue of random name will be created in rabbitmq
that's why,what for ...
3
votes
1answer
606 views
Celery or beanstalkd or both?
I know (but I do not understand) that Celery can use Beanstalk as delivery mechanism.
From the Beanstalkd Homepage
"Beanstalk is a simple, fast work queue."
From the Celery Homepage
"It’s a task ...
2
votes
1answer
255 views
Celery, Resque, or custom solution for processing jobs on machines in my cloud?
My company has thousands of server instances running application code - some instances run databases, others are serving web apps, still others run APIs or Hadoop jobs. All servers run Linux.
In ...
3
votes
2answers
736 views
Is there distributed task queue in Python that enables me to kill hanging tasks that are not willing to cooperate
Basically I have a lot of tasks (in batches of about 1000) and execution times of these tasks can vary widely (from less than second to 10 minutes). I know that if a task is executing more than a ...
0
votes
1answer
369 views
Python-compatible distributed messaging/task system (like Celery) that uses domain sockets
Is there anything like Celery that works with unix domain sockets? My current host (dreamhost) forbids the running of servers that listen on IP sockets, so I need something that will work with domain ...
6
votes
3answers
495 views
'Queueing' tutorials and documentation?
I'm looking for articles and references that give an overview of 'queueing' (I'm probably not even using the right term here). I'm hoping for an introductory styled guide through a world of Redis, ...
2
votes
1answer
312 views
How should I use Celery when task results are large?
What's the best way to handle tasks executed in Celery where the result is large? I'm thinking of things like table dumps and the like, where I might be returning data in the hundreds of megabytes.
...
5
votes
1answer
1k views
Is it possible to use celery for synchronous tasks?
Nearly synchronous works, too; basically, I want to delegate the data access and processing behind a web app to a task queue for most jobs. What's the fastest latency that I can consider reasonable ...
4
votes
1answer
1k views
django-celery without an ampq server (rabbitmq)
I am using celery for distributed task processing. I wanted to deploy my work on a web-host, just to show the working of my project.
So how can i get djcelery to use a database (sqlalchemy) as backend ...