Replies: 1 comment 1 reply
-
You're reaching the max poll interval. This is not a librdkafka issue nor rdkafka-ruby issue (maintainer here). Let me expand the answer: pausing != "do whatever you want forever". You are still limited by Kafka protocol and max.poll.interval.ms. If you are looking into processing long running jobs you may want to look here: https://karafka.io/docs/Pro-Long-Running-Jobs/ |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I have a weird behavior when pausing a consumer, I'm using an FFI for librdkafka using ruby lang.
When I use below code to pause and sleep the processing for 15 minutes, the consumer group become empty after 5 minutes.
my question is that does librdkafka still send poll requests to the broker when we pause all partitions? (in my case I only have one partition)
appreciate any help, thank you. 😄
Beta Was this translation helpful? Give feedback.
All reactions