Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-02-01 Thread via GitHub
dajac commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1920964896 @nizhikov FYI - I merged this one. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-02-01 Thread via GitHub
dajac merged PR #15253: URL: https://github.com/apache/kafka/pull/15253 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail:

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-31 Thread via GitHub
dajac commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1473247269 ## clients/src/main/java/org/apache/kafka/clients/admin/internals/DescribeConsumerGroupsHandler.java: ## @@ -158,36 +295,71 @@ public ApiResult handleResponse(

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-31 Thread via GitHub
AndrewJSchofield commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1473234152 ## clients/src/main/java/org/apache/kafka/clients/admin/internals/DescribeConsumerGroupsHandler.java: ## @@ -158,36 +295,71 @@ public ApiResult

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-31 Thread via GitHub
dajac commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1919372877 Thanks @cadonna! I have addressed your comments. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-31 Thread via GitHub
cadonna commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1472830748 ## clients/src/main/java/org/apache/kafka/clients/admin/internals/DescribeConsumerGroupsHandler.java: ## @@ -89,18 +97,42 @@ public AdminApiLookupStrategy

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-30 Thread via GitHub
dajac commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1916713439 Hey @mimaison! As you have done some work in this area, I wonder if you would be interested by reviewing this PR. It would help us with the KIP-848 effort. We need this as soon as possible

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-30 Thread via GitHub
dajac commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1471105525 ## clients/src/main/java/org/apache/kafka/clients/admin/ConsumerGroupDescription.java: ## @@ -36,6 +37,7 @@ public class ConsumerGroupDescription { private final

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-30 Thread via GitHub
dajac commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1471064233 ## clients/src/main/java/org/apache/kafka/clients/consumer/internals/CommitRequestManager.java: ## @@ -240,10 +240,11 @@ private CompletableFuture maybeAutoCommit(final

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-29 Thread via GitHub
dajac commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1915007420 Thanks for letting me know, @nizhikov. I can definitely adapt my PR when https://github.com/apache/kafka/pull/15256 gets merged. However, I cannot wait too long because this PR is needed

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-29 Thread via GitHub
nizhikov commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1914941776 Hello @dajac Right now I have #15256 which moves `DescribeConsumerGroupTest` and `ConsumerGroupCommandTest` to tools module. You are modifying those tests in PR. My PR is

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-26 Thread via GitHub
dajac commented on PR #15253: URL: https://github.com/apache/kafka/pull/15253#issuecomment-1912511055 cc @nizhikov @jolshan FYI - I have a few minor changes related to the consumer group command here. As saw that you’re working on migrating it to Java. -- This is an automated message

Re: [PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-24 Thread via GitHub
dajac commented on code in PR #15253: URL: https://github.com/apache/kafka/pull/15253#discussion_r1465170111 ## clients/src/main/java/org/apache/kafka/clients/admin/internals/DescribeConsumerGroupsHandler.java: ## @@ -89,18 +96,42 @@ public AdminApiLookupStrategy

[PR] KAFKA-16189; Extend admin to support ConsumerGroupDescribe API [kafka]

2024-01-24 Thread via GitHub
dajac opened a new pull request, #15253: URL: https://github.com/apache/kafka/pull/15253 WIP - Needs https://github.com/apache/kafka/pull/15205 and https://github.com/apache/kafka/pull/15211. ### Committer Checklist (excluded from commit message) - [ ] Verify design and