-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KAFKA-17985: Set share.auto.offset.reset to earliest in ShareRoundTripWorker #17758
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR.
import java.util.Properties; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import static org.apache.kafka.trogdor.common.WorkerUtils.addConfigsToProperties; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personally, I'd prefer to see WorkerUtils.addConfigsToProperties
and WorkerUtils.createAdminClient
in the code, rather than using these static imports.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ShivsundarR Thanks for the PR. LGTM
…pWorker (apache#17758) After the share.auto.offset.reset dynamic config was added for share groups in this commit - 9db5ed0, we needed to update this config value to "earliest" in ShareRoundTripWorker when it creates the consumer. Reviewers: Andrew Schofield <[email protected]>, Manikumar Reddy <[email protected]>
…pWorker (apache#17758) After the share.auto.offset.reset dynamic config was added for share groups in this commit - 9db5ed0, we needed to update this config value to "earliest" in ShareRoundTripWorker when it creates the consumer. Reviewers: Andrew Schofield <[email protected]>, Manikumar Reddy <[email protected]>
What
After the
share.auto.offset.reset
dynamic config was added for share groups in this commit - 9db5ed0, we needed to update this config value to "earliest" in ShareRoundTripWorker when it creates the consumer.