About 2,200,000 results
Open links in new tab
  1. 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?

  2. python - How can I schedule a Task to execute at a specific time using ...

    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 ago Viewed 31k times

  3. 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 suggest to use …

  4. 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 …

  5. python - How do I run periodic tasks with celery beat? - Stack Overflow

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

  6. 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 child …

  7. 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:: It's quite …

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

    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, and half way …

  9. python - How do you unit test a Celery task? - Stack Overflow

    Aug 22, 2012 · The Celery documentation mentions testing Celery within Django but doesn't explain how to test a Celery task if you are not using Django. How do you do this?

  10. python - How to check task status in Celery? - Stack Overflow

    Part of the issue hinges on how Celery is configured to keep the results of tasks, because it depends on the availability of the "tombstones" in the results backend. ("Tombstones" is the term use in the …