Tagged Questions
1
vote
0answers
26 views
Call Celery task ( with Redis ) using PHP
I want to use Celery and Redis to build a task queue. ( http://www.celeryproject.org/ ).
And my tasks.py is following:
from celery import Celery
celery.conf.update(
CELERY_ACCEPT_CONTENT = ...
0
votes
1answer
48 views
celery - Tasks that need to run in priority
In my website users can UPDATE they profile (manual) every time he want, or automatic once a day.
This task is being distributed with celery now.
But i have a "problem" :
Every day, in automatic ...
0
votes
1answer
91 views
Distributed rate limiting
I have multiple servers/workers going through a task queue doing API requests. (Django with Memcached and Celery for the queue) The API requests are limited to 10 requests a second. How can I rate ...
0
votes
0answers
70 views
new Celery worker machines dont start consuming tasks, unless tasks are re-added
im using celery distributed task queue. Right now Ive got it running on two machines. One of them has the broker, and 4 worker threads, the other machine connects to the broker machine and also has 4 ...
0
votes
1answer
135 views
Can i schedule a celery task to execute between a certain period?
I work for an organization that sends sms to users based on subscription, my stack has Django, Celery, Redis, RabbitMQ, PostgreSQL, Apache, nginx and Kannel. In this environment every SMS service ...
4
votes
1answer
459 views
How is rate_limit enforced in Celery?
I'm running a Django website where I use Celery to implement preventive caching - that is, I calculate and cache results even before they are requested by the user.
However, one of my Celery tasks ...
8
votes
3answers
997 views
Does the java world have a task queue similar to celery?
Seeing as java is so mature, I'm hoping someone can tell me if java has something similar to http://celeryproject.org/
It is a distributed task queue.
I'm writing to rabbitmq, and want to know what ...
2
votes
1answer
1k views
How can I configure different worker pools using celery?
I need to deploy a queued execution service with (generally) the following three classes of worker:
A periodic, low-priority job class that takes a long time and can be processed serially; these ...
0
votes
3answers
152 views
Is there something wrong with my Python code? (functions)
#tasks.py
from celery.decorators import task
@task()
def add(x, y):
add.delay(1, 9)
return x + y
>>> import tasks
>>> res = tasks.add.delay(5, 2)
>>> res.result()
...
8
votes
2answers
700 views
Is there a way to make Celery/RabbitMQ persistent?
So that if my server crashes, I still have my Tasks?
16
votes
1answer
3k views