3

What does it mean when Celery flower shows a task as N/A in the active column? (screenshot 01 -task data_01 in Active column)

Not sure if they are related but again on the same row of data_01, it shows a total of 263,497 received and 251,900 succeeded with no Failure or Retried. My understanding would be that the difference in received Vs. succeeded would mean there are still jobs in the queue? (screenshot 01)

Issue though is, when I interrogate rabbit-mq, the validate_data queue is empty so am note sure what that variance of about 11,000 is coming from (screenshot 02 & screenshot 03)

Screenshot01 flower screenshot01

Screenshot02 rabbit-mq webpage screenshot02

Screenshot03 rabbit-mq console screenshot03

lukik
  • 3,919
  • 6
  • 46
  • 89
  • The culprit here might be python memory leaks. Your processed and succeeded list are counting the number of objects that were pushed onto the Queue and then successfully popped off, but if you are popping off empty references after whatever action is done to them, that could account for your deficit. It's hard to really diagnose without seeing the code. – Jodo1992 Feb 20 '16 at 06:57
  • Hey, did you find out more about the issue? I am having the same issue and would be great if you shared your findings as an answer. – Prakhar Gupta Jul 24 '17 at 16:40
  • Can anyone tell me what does it mean when it shows 2 or 3 or any number >1 in active column? – Sajjad Zaidi Sep 18 '20 at 10:16

0 Answers0