I recently upgraded to the latest spring boot and spring cloud stream for my application. Then I started seeing a lot of these such as Processed 0 total records, ran 0 punctuators, and committed 0 total tasks since the last update from the log file.
The log level is info and I was a little surprised. I wonder if I can turn it off because this log is constantly rolling and is eating up the disk space.
I recently upgraded to the latest spring boot and spring cloud stream for my application. Then I started seeing a lot of these such as
Processed 0 total records, ran 0 punctuators, and committed 0 total tasks since the last update
from the log file.I found out that there is a log processing summary from the thread thread https://github.com/a0x8o/kafka/blob/master/streams/src/main/java/org/apache/kafka/streams/processor/internals/StreamThread.java#L846.
The log level is info and I was a little surprised. I wonder if I can turn it off because this log is constantly rolling and is eating up the disk space.