Bring up the faust app and let it run for a while. After running for some time the application starts logging the following error messages
2021-06-28 10:57:33 [1] [ERROR] faust.transport.drivers.aiokafka [^----AIOKafkaConsumerThread]: Has not committed TP(topic='test_topic', partition=27) at all since worker start (started 5.52 minutes ago).
There are multiple possible explanations for this:
1) The processing of a single event in the stream
is taking too long.
The timeout for this is defined by the broker_commit_livelock_soft_timeout setting,
currently set to 300.0. If you expect the time
required to process an event, to be greater than this then please
increase the timeout.
## Expected behavior
These errors should only happen if the commit offset is not progressing
## Actual behavior
The app is running fine and consumer offsets are actually updated
# Versions
* Python version 3.9
* Faust version 0.6.7
* Operating system Centos75
* Kafka version 2.4.1
Checklist
masterbranch of Faust.Steps to reproduce
Bring up the faust app and let it run for a while. After running for some time the application starts logging the following error messages