Running a basic application for any extended period of time - sometimes just a few minutes - leads to consumers slowly dying one-by-one until they've all stopped responding and the entire application hangs. The data is still flowing into a topic at the tip of the pipeline from an external source, so there are still messages to be read as they begin to hang.
The following messages are displayed in increasing numbers as things begin to die:
[2021-07-21 01:04:39,262] [31912] [ERROR] [^---AIOKafkaConsumerThread]: Stream has not started processing TP(topic='archive-log-events', partition=36) (started 1.10 hour 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 stream_processing_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.
2) The stream has stopped processing events for some reason.
3) The agent processing the stream is hanging (waiting for network, I/O or infinite loop).
I've tested this with agents performing simple functions and the behavior still shows. Is there any obvious reason why this would be occurring or a reasonable way to debug it?
Checklist
Steps to reproduce
Run an application with multiple agents.
Expected behavior
Things run indefinitely.
Actual behavior
Things run and slowly begin stop.
Full traceback
N/A
Versions
- Python version:
3.8.6
- Faust version:
0.6.9
- Operating system:
Ubuntu 18.04
- Kafka version:
2.8.0
- RocksDB version (if applicable)
Running a basic application for any extended period of time - sometimes just a few minutes - leads to consumers slowly dying one-by-one until they've all stopped responding and the entire application hangs. The data is still flowing into a topic at the tip of the pipeline from an external source, so there are still messages to be read as they begin to hang.
The following messages are displayed in increasing numbers as things begin to die:
I've tested this with agents performing simple functions and the behavior still shows. Is there any obvious reason why this would be occurring or a reasonable way to debug it?
Checklist
masterbranch of Faust.Steps to reproduce
Run an application with multiple agents.
Expected behavior
Things run indefinitely.
Actual behavior
Things run and slowly begin stop.
Full traceback
N/A
Versions
3.8.60.6.9Ubuntu 18.042.8.0