0
votes
0answers
128 views

How to run Celery (billiard) on Linux (SL6) without /dev/shm?

I installed Celery 3.0.12 on Scientific Linux release 6.0 and got the following error when trying to start the Celery worker: -------------- celery@mydomain.com v3.0.12 (Chiastic Slide) ---- **** ...
4
votes
2answers
1k views

Using Celery on processes and gevent in tasks at the same time

I'd like to use Celery as a queue for my tasks so my web app could enqueue a task, return a response and the task will be processed meanwhile / someday / ... I build a kind of API, so I don't know ...
0
votes
2answers
1k views

Best way for single worker implementation in Flask

I have some spider that download pages and store data in database. I have created flask application with admin panel (by Flask-Admin extension) that show database. Now I want append function to my ...
4
votes
2answers
597 views

Is Celery as efficient on a local system as python multiprocessing is?

I'm having a bit of trouble deciding whatever to use python multiprocessing or celery or pp for my application. My app is very IO heavy and currently uses only one cpu so I need to spread it across ...
5
votes
1answer
1k views

Django Celery: Execute only one instance of a long-running process

I have a long-running process that must run every five minutes, but more than one instance of the processes should never run at the same time. The process should not normally run past five min, but I ...
2
votes
1answer
528 views

Forking processes for every task in Celery

I currently use a C extension library for Python, but it seems to have memory leaks. Tasks that are run on my celeryd do something using this C extension library, and celeryd eats a lot of memory ...
0
votes
1answer
320 views

Celery worker variable sharing issues

I am using Python and celery in a project. In the project, I have two files: celeryconfig.py BROKER_URL = "amqp://guest:guest@localhost:5672//" CELERY_RESULT_BACKEND = "amqp" CELERY_IMPORTS = ...
5
votes
1answer
564 views

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 EC2 ...