Resetting consumer group offsets #1435
Unanswered
kudryk-enverus
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is it possible to reset a consumer group's offsets using the
AdminClient
?I've been trying to experiment to figure if this is possible. I've instantiated an
AdminClient
and I can successfully retrieve the topics by callinglist_topics()
, and list my groupadmin.list_groups(group="mark.test3.all.sa.derive", timeout=30)
successfully, but when I try to get the configs for the group:And subsequently invoke
result()
on the group's future I get the following error:It's unlikely to be an incompatible broker issue, otherwise the first 2 calls would not have succeeded. As far I my understanding of the documentation and looking at the tests that also invoke
describe_configs()
I'm doing everything correctly.I'm using version 1.9.2 of the library.
When I've looked at the broker logs in AWS Cloudwatch, I see the following error:
It would appear whether I pass
ResourceType.GROUP
or3
(GROUP) as the first argument toConfigResource
, the broker is receivingUNKNOWN
for that group. The group does exist.Beta Was this translation helpful? Give feedback.
All reactions