Kafka "end of partition/topic" events #3478
Unanswered
Gyllsdorff
asked this question in
Q&A
Replies: 1 comment
-
@Gyllsdorff Does |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a small log-compacted topic that I need to consume before my application can start to receive HTTP request. When I use the librdkafka based consumer in java, go or Python I can use the
enable.partition.eof
config to receive a event every-time I reach the end of a partition which I use to keep keep track if I hit the high watermark at least once for each partition of my topic.Is it possible to something similar in Spring Kafka? The closest things I could find in the documentation is the "Detecting Idle and Non-Responsive Consumers" but that relies on hardcoded idle timeouts.
Beta Was this translation helpful? Give feedback.
All reactions