Replies: 2 comments
-
I found a similar open issue titled How can I view and manage the queues in Celery?, which was last updated on November 01, 2024. The issue currently has no comments or solutions. For monitoring and managing Celery queues in Dify, you can use the following commands to start the Worker service, which will consume asynchronous tasks from the queue: For Linux or macOS: celery -A app.celery worker -P gevent -c 1 --loglevel INFO -Q dataset,generation,mail,ops_trace For Windows: celery -A app.celery worker -P solo --without-gossip --without-mingle -Q dataset,generation,mail,ops_trace --loglevel INFO These commands will help you manage the queues by starting the worker service with specific queues like |
Beta Was this translation helpful? Give feedback.
-
Try this one https://github.com/mher/flower |
Beta Was this translation helpful? Give feedback.
-
Self Checks
1. Is this request related to a challenge you're experiencing? Tell me about your story.
Celery is consuming a lot of memory, and I want to check the information about the queues. How can I do that?
2. Additional context or comments
No response
3. Can you help us with this feature?
Beta Was this translation helpful? Give feedback.
All reactions