About 4,040,000 results
Open links in new tab
  1. python - Celery : understanding the big picture - Stack Overflow

    Mar 7, 2017 · Celery seems to be a great tool, but I have hard time understanding how the various Celery components work together: The workers The apps The tasks The message Broker (like …

  2. python - How to run celery on windows? - Stack Overflow

    May 16, 2016 · How to run celery worker on Windows without creating Windows Service? Is there any analogy to $ celery -A your_application worker?

  3. python - How can I schedule a Task to execute at a specific time …

    Jan 2, 2010 · How can I schedule a Task to execute at a specific time using celery? Asked 15 years, 11 months ago Modified 8 years, 1 month ago Viewed 31k times

  4. python - Retrieve list of tasks in a queue in Celery - Stack Overflow

    The celery inspect module appears to only be aware of the tasks from the workers perspective. If you want to view the messages that are in the queue (yet to be pulled by the workers) I …

  5. python - How to combine Celery with asyncio? - Stack Overflow

    Oct 2, 2016 · How can I create a wrapper that makes celery tasks look like asyncio.Task? Or is there a better way to integrate Celery with asyncio? @asksol, the creator of Celery, said this:: …

  6. python - How do I run periodic tasks with celery beat? - Stack …

    Sep 18, 2023 · 10 Celery beat command celery -A proj worker -l info -B --scheduler django_celery_beat.schedulers:DatabaseScheduler This command has used for start the …

  7. python - Callback for celery apply_async - Stack Overflow

    Sep 21, 2012 · I use celery in my application to run periodic tasks. Let's see simple example below from myqueue import Queue @perodic_task(run_every=timedelta(minutes=1)) def …

  8. python - Cancel an already executing task with Celery? - Stack …

    Jan 19, 2012 · I have been reading the doc and searching but cannot seem to find a straight answer: Can you cancel an already executing task? (as in the task has started, takes a while, …

  9. python - How can I use Celery's apply_async ()/delay () as a non ...

    May 10, 2022 · In general, the celery is geared towards multi-processing not towards coroutines and async. The key thing to remember when trying to integrate with asyncio is that calling …

  10. python - Celery auto reload on ANY changes - Stack Overflow

    I could make celery reload itself automatically when there is changes on modules in CELERY_IMPORTS in settings.py. I tried to give mother modules to detect changes even on …