Warn from WorkManager #80
-
Sometimes i have a lot of warns: Could you explain me that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Yeah I need to clean that up. It's a debug level statement for a situation I didn't think would arise much, and if it did it's a potential problem - and only prints at WARN if the record has been waiting in the queue for over 10 seconds to process. Can you give me some more context around what was happening when this happened? How loaded was the system? It's this line here: I've pushed this minor clean up here: master...astubbs:logging-cleanup Keen to hear your thoughts.. |
Beta Was this translation helpful? Give feedback.
Yeah I need to clean that up. It's a debug level statement for a situation I didn't think would arise much, and if it did it's a potential problem - and only prints at WARN if the record has been waiting in the queue for over 10 seconds to process.
Can you give me some more context around what was happening when this happened? How loaded was the system?
It's this line here:
parallel-consumer/parallel-consumer-core/src/main/java/io/confluent/parallelconsumer/WorkManager.java
Line 444 in 5fa5f59
I've pushed this m…