Re: Deletion a specific consumer of a consumer group through the Kafka admin client API.

2021-04-10 Thread Mazen Ezzeddine
Thanks so much Sophie for your super ideas and suggestions. Very interesting and smart workarounds/ideas, will try and surely come back to further report the outcome and/or issues if any. Best regards, From: Sophie Blee-Goldman Sent: Saturday, April 10, 2021

Re: Deletion a specific consumer of a consumer group through the Kafka admin client API.

2021-04-09 Thread Sophie Blee-Goldman
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

Deletion a specific consumer of a consumer group through the Kafka admin client API.

2021-04-09 Thread Mazen Ezzeddine
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