Tagged Questions
0
votes
0answers
36 views
django celery redis error ValueError: invalid literal for int() with base 10: 'OK'
I keep getting the error "ValueError: invalid literal for int() with base 10: 'OK'" when I am trying to run a delayed task with celery with redis in django. Could some show me what is wrong ? here is ...
0
votes
0answers
87 views
Using Celery for Realtime, Synchronous External API Querying with Gevent
I'm working on a web application that will receive a request from a user and have to hit a number of external APIs to compose the answer to that request. This could be done directly from the main web ...
1
vote
0answers
30 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
0answers
63 views
Celery tries to connect to the wrong broker
I have in my celery configuration
BROKER_URL = 'redis://127.0.0.1:6379'
CELERY_RESULT_BACKEND = 'redis://127.0.0.1:6379'
Yet whenever I run the celeryd, I get this error
consumer: Cannot connect ...
1
vote
1answer
44 views
Configure Celery to talk to Redis via Unix socket
I would like Celery to build on Redis rather than the default RabbitMQ.
The Celery documentation explains:
Configuration is easy, just configure the location of your Redis database:
...
0
votes
0answers
17 views
javac is not running under a subprocess launched over http
I'm running a django web application witch launch a java compilation command and I need to catch the javac stderr, I've put it in a separate task (Celery), here is the code:
class JavaSubTask(Task):
...
0
votes
1answer
61 views
celery celerybeat not ticking
I have the following setup:
celery-with-redis - 3.0 - active
celery - 3.0.12 - active
django-celery - 3.0.11 - active
django-kombu - 0.9.4 - active
kombu ...
0
votes
0answers
62 views
Trying to send task using Celery with Redis broker
Trying to use NodeJS to send a job to Celery. Based on the Messages section of the Celery docs found here, when I try to publish a message to Redis, I'm unable to trigger Celery to consume the task.
...
6
votes
3answers
215 views
How to inspect and cancel Celery tasks by task name
I'm using Celery (3.0.15) with Redis as a broker.
Is there a straightforward way to query the number of tasks with a given name that exist in a Celery queue?
And, as a followup, is there a way to ...
0
votes
1answer
36 views
Huge delay when using Celery + Redis
I'm testing Django + Celery, hello world examples. With RabbitMQ celery works fine, but when I switched to Redis broker/result I get following:
%timeit add.delay(1,2).get()
1 loops, best of 3: 503 ms ...
1
vote
3answers
74 views
How to send Email on dates specified by visitors?
I'm building a django app that has users come to my site, enter in a string of text, their email, a friend's email and a date they would like to be emailed on.
How would I go about having the text ...
0
votes
0answers
47 views
Celery with Redis backend and routing
I want to perform routing with django, celery using redis as a backend. However I find the documentation referring to amqp and not for redis. Is routing possible using redis? If so code snippets ...
0
votes
0answers
18 views
Is there any error handling mechanism in celery for like redis crash?
I would like to know if there is some config that will ignore the crash of redis in run time?
0
votes
0answers
99 views
In celery, how to ensure tasks are retried when worker crashes
First of all please don't consider this question as a duplicate of this question
I have a setup an environment which uses celery and redis as broker and result_backend. My question is how can I ...
0
votes
0answers
100 views
Celery scheduled task executing immediately instead of delaying
I am trying to schedule a Celery task for execution using : mytask.apply_async(countdown=120)(mytask is a simple python method with @task decorator). However when I call that, the task is executed ...
0
votes
1answer
45 views
redis celeryd and apache
I'm a bit new to redis and celery. Do I need to restart celeryd and redis every time I restart apache? I'm using celery and redis with a django project hosted on webfaction.
Thanks for the info in ...
-1
votes
1answer
126 views
Django Celery FIFO
So I have this 2 applications connected with a REST API (json messages). One written in Django and the other in Php. I have an exact database replica on both sides (using mysql).
When i press ...
0
votes
1answer
66 views
What can I do if celery forgets about tasks on a (apparently) random basis?
I have a flask app with sqlalchemy and a celery worker up and running. I use redis as my broker. Every time someone submits a new message in a conversation, a worker is started and is supposed to send ...
0
votes
1answer
434 views
Pros and cons to use Celery vs. RQ
Currently I'm working on python project that requires implement some background jobs (mostly for email sending and heavily database updates). I use Redis for task broker. So in this point I have two ...
1
vote
0answers
100 views
catching celery connection errors
I have a problem with celery and redis as broker. After some time my celery workers stop working and give me messages "Consumer: connection refused too many open files. Trying again in 32 seconds". I ...
1
vote
1answer
234 views
How can I build a activity feed similar to that of Instagram using Redis and Celery for Django? [closed]
I'm kinda new at this and I've just started playing around with Django a few months ago. I'm making a photo sharing iOS app, similar to that of Instagram's. I've read a lot of documentation pertaining ...
0
votes
0answers
97 views
Celery cannot detect nodes
I've started a celery3 worker (Redis backend) on dev machine with a command like:
celery -A tasks worker --loglevel=info -E
(and the celery screen says that events are enabled)
Then I try to get ...
13
votes
2answers
1k views
Why do we need a message brokers like rabbitmq over database like postgres? [closed]
I am new to message brokers like rabbitmq which we can use to create tasks / message queues for a scheduling system like celery.
Now, here is the question :
I can create a table in postgres which ...
2
votes
1answer
213 views
celery tasks with long eta (8+ hours) are executed multiple times in a row when eta is reached
I'm creating a task with eta ranging between 3 and 20 hours and when I look at the worker log, for this task, the worker says "Got task from broker: ..." every hour after the original task was ...
0
votes
0answers
115 views
if reboot server, all celery-tasks with ETA dissapear
any ideas to "persist" those tasks to be restored after a machine reboot?
the system is:
broker: redis server 2.4.8
redis==2.4.11
django-celery==3.0.9
celery==3.0.9
1
vote
0answers
311 views
how to tune celery settings so Redis dosent use as much memory? CELERY_TASK_RESULT_EXPIRES?
kinda a Celery noob here but, I think I have a configuration issue where Celery is putting too much stuff in Redis
my goal is to attempt to reduce or optimize the amount of memory Redis is using, if ...
0
votes
1answer
225 views
how can i get result of periodic task scheduling
hey guys i am new to celery. i am working on periodic task scheduling. I have configured my celeryconfig.py as follow:
from datetime import timedelta
BROKER_URL = 'redis://localhost:6379/0'
...
0
votes
1answer
305 views
django-celery celerybeat periodic task running every 5 seconds regardless of interval
I've never experienced this issue before, despite a few projects using celerybeat and django-celery. I have used redis for the backend.
For some reason, periodic tasks are being run every 5 second, ...
1
vote
2answers
519 views
getting error Received unregistered task of type 'mytasks.add'
I have written a file mytasks.py
from celery import Celery
celery = Celery("tasks",
broker='redis://localhost:6379/0',
backend='redis')
@celery.task
def add(x,y):
...
1
vote
1answer
259 views
not getting how to work with redis and celery
I am new to redis and celery. I have gone throug the basic tutorial of both. but I am not getting how to implent then in task scheduling job
1
vote
2answers
199 views
Using Multiple Installations of Celery with a Redis Backend
Is it possible to use the same redis database for multiple projects using celery? Like using the same database for multiple projects as a cache using a key prefix. Or do i have to use a seperate ...
5
votes
1answer
428 views
Celery creating a new connection for each task
I'm using Celery with Redis to run some background tasks, but each time a task is called, it creates a new connection to Redis. I'm on Heroku and my Redis to Go plan allows for 10 connections. I'm ...
0
votes
2answers
605 views
Connection refused for Redis on Heroku
I'm trying to set up Redis on Heroku as a backend for Celery. I have it working locally but on Heroku, I get this error (after the celery task completes): ConnectionError: Error 111 connecting ...
2
votes
1answer
293 views
How can I send HTML email via Celery? It keeps sending in text/plain
I setup a system Django/Celery/Redis. And I used EmailMultiAlternatives to send my HTML and Text email.
When I send email as part of the request process, the email is sent in HTML. All runs well and ...
0
votes
1answer
168 views
TypeError occurring while using Celery 2.6.0rc5
I am using Celery 2.6.0rc5, and getting the following error:
[2012-06-22 23:01:42,016: ERROR/MainProcess] Unrecoverable error: TypeError('handle_event() takes exactly 3 arguments (1 given)',)
...
3
votes
2answers
635 views
Django and Celery: admin task list does not display values
My problem ought to be fairly simple and is more a question of interest than something that needs to be desperately fixed. Google could not give me the answer I was looking for so I hope your ...
0
votes
0answers
141 views
Django-celery does not add records to db
My project settings looks like:
djcelery.setup_loader()
CELERY_EMAIL_TASK_CONFIG = {
'name': 'djcelery_email_send',
'ignore_result': False,
}
CELERYBEAT_SCHEDULE = { # some tasks
}
...
2
votes
4answers
2k views
celery with redis backend
Ok, i got everything installed properly to get celery + redis in django
i got
INSTALLED_APPS = (
'djcelery',
'kombu.transport.django',
)
These are in my settings
CELERY_REDIS_HOST = ...
0
votes
1answer
697 views
In celery how to get task position in queue?
I'm using Celery with Redis as broker and I can see that the queue is actually a redis list with the serialized task as the items.
My question is, if I have an AsyncResult object as a result of ...
0
votes
1answer
137 views
Celery + 2 redis: broker and cache
What I have:
1) redis on standart port - this is cache
2) redis on port 53333 - this is a broker
Why celery get task successfully, but don't return it to port 53333? This task I can see by redis-cli ...
2
votes
1answer
268 views
How should i handle my redis connections inside celery Tasks?
I have a celery server that handles some counters for my application
class IncrementStatsCounterTask(Task):
def run(self, count, shortcode, stat_type, operator_id, date, **kwargs):
...
1
vote
0answers
158 views
get same row of information for celery task as celeryev or celerymon using simple python code
I'm running celerly 2.5.1 with redis. I would like to obtain the same task information for a celery task that is displayed in celerymon or celeryev. That is:
celeryev 2.5.1
││ UUID ...
0
votes
1answer
571 views
Redis - Celery Configuration over Amazon EC2
I am developing a web application using Python, Django and MySql. I have a provision in the application where in a user can upload *.wmv and *.mov files which the system will process and convert it ...
1
vote
2answers
1k views
Problems with Celery & Redis Backend
I have a system set up currently that is using celery with a redis
backend to do a bunch of asynchronous tasks such as sending emails,
pulling social data, crawling,etc. Everything is working great, ...
19
votes
4answers
7k views
Whats the advantage of using celery with rabbitmq over Redis, MongoDB or Django ORM)
Is there a speed advantage, functionality advantage?
Also using Django ORM (mysql), is it a lot slower than using rabbitmq, mongodb or redis?
Im currently hosting on webfaction, and installing ...
8
votes
1answer
927 views
Celery and Redis keep running out of memory
I have a Django app deployed to Heroku, with a worker process running celery (+ celerycam for monitoring). I am using RedisToGo's Redis database as a broker. I noticed that Redis keeps running out of ...
0
votes
2answers
407 views
Django-celery + redis not show tasks
I'm use django-celery and redis with this config:
BROKER_URL = "redis://192.168.1.79:6379/0"
BROKER_BACKEND = "redis"
CELERY_SEND_EVENTS=True
...
5
votes
1answer
367 views
Start Python Celery task via Redis Pub/Sub
Is there an efficient way to start tasks via Redis Pub/Sub and return
the value of the task back to a Pub/Sub channel to start another task
based on the result?
Does anybody have an idea on how to ...
0
votes
1answer
54 views
What is the correct way to install Celery/Redis to run the tasks on another server?
The web server itself runs django. I would like the web server to delegate the actual tasks work to another server.
2
votes
1answer
656 views
How to structure my application for several tasks using redis with gevent or threading in Python
I have a process which sends financial tick data through redis pubsub in realtime. Now I want my Python Application to handle the input data (json) for instance calculations like moving average and so ...
