3:34 AM
To: Users
Subject: Re: Deletion a specific consumer of a consumer group through the Kafka
admin client API.
Hey Mazen,
There is technically an AdminClient API which allows you to remove a single
member from the group:
Admin.removeMembersFromConsumerGroup(String groupId
Hey Mazen,
There is technically an AdminClient API which allows you to remove a single
member from the group:
Admin.removeMembersFromConsumerGroup(String groupId,
RemoveMembersFromConsumerGroupOptions options);
but I don't think this will help you. For one thing, this API only works
for removing
Dear all,
The kafka admin client API enables the deletion of a consumer group through a
logic like the one shown below
DeleteConsumerGroupsResult deleteConsumerGroupsResult =
adminClient.deleteConsumerGroups(Arrays.asList(consumerGroupToBeDeleted));
However, is there any way/API through