-
Moved from arnaud-lb/php-rdkafka#529 here where it most likely belongs and/or gets more attention I hope.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Sorry, I assume without logs nobody can help much. So, I just ran the consumer again and consumed everything from 6 partitions. I set the timeout for the next consume to some very high level and in the logs I can see that it does something in a loop, it seems to be fetching data and doing something with offsets forever. Extract from the log
Messages like And if the timeout is reached, I get an error response
but instead I would have been expecting a |
Beta Was this translation helpful? Give feedback.
-
So regarding your first question:
I hope that helps to clear things up. |
Beta Was this translation helpful? Give feedback.
So regarding your first question:
auto.offset.reset
will be used and applied the first time you connect or when you have no commited offset. So if you want to skip old messages, but get all future ones, you might want to connect withLATEST
but commit the current offset (i think this is what you are trying to achieve)EOF
you need to enable it, the default behaviour was changed (see example)I hope that helps to clear things up.