Tagged Questions
0
votes
0answers
46 views
Celery tasks are forgotten in PoolWorker processes
I'm working on a job queue and it seems like my celery tasks are getting forgotten in PoolWorker processes. Here's the pattern I'm using:
def register_jobs_one(celery, settings):
thing_one = ...
0
votes
0answers
219 views
“ImportError: cannot import name Exchange” when using Celery w/ Kombu installed
I'm trying to create a Celery worker node on an Amazon EC2 Windows2008 R2 instance. Due to a plugin we require for another Python module, we are required to user Python3. I've installed Python3.2 ...
-1
votes
1answer
187 views
Is python celery only for servers or websites? [closed]
Can I use celery for a windows machine? If so how does celery work, does it run in the task manager 24/7? Or is celery only for websites. I tired to use this code:
from celery.schedules import ...
3
votes
1answer
1k views
How to create Celery Windows Service?
I'm trying to create a Windows Service to launch Celery. I have come across an article that does it using Task Scheduler. However it seems to launch numerous celery instances and keeps eating up ...
0
votes
1answer
426 views
Celery on Windows: subprocess.call Access is denied in Celery, runs fine in Django
I have the following task:
@task(track_started = True)
def run_transcode_server():
commands = ('java', '-cp', settings.TRANSCODE_CLASSPATH, settings.TRANSCODE_JAVA_CLASS)
...
2
votes
1answer
625 views
Celery + Django: Cannot start celerybeat on Windows 7
Odd issues over here. I've been developing a Django application and I am now trying to implement Celery. I need both normal tasks and periodic tasks to be queued. I can start up celeryd just fine, and ...
1
vote
1answer
291 views
WorkerLostError, Python.exe APPCRASH with django/celery under Windows
I have Django set up under Windows (Win2008 Server R2, IIS 7.5, MS SQL). I'm trying to implement celery 2.4.1 (with RabbitMQ) for task processing and running into a very frustrating problem.
I start ...