DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Show the member level information. Add CURRENT-EPOCH, TARGET-EPOCH, and TARGET-ASSIGNMENT, and PROTOCOL information. Change ASSIGNMENT to CURRENT-ASSIGNMENT.
| Code Block |
|---|
$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --members --verbose GROUP CONSUMER-ID HOST CLIENT-ID #PARTITIONS CURRENT-EPOCH CURRENT-ASSIGNMENT TARGET-EPOCH TARGET-ASSIGNMENT PROTOCOL my-group T4tbGKsvT7CtsxVBH5J2QQ /127.0.0.1 consumer-my-group-1 4 1 mytopicmy_topic:0,1;newtopicnew_topic:0,1 1 mytopicmy_topic:0,1;newtopicnew_topic:0,1 consumer |
--describe --offsets --verbose
...
| Code Block |
|---|
$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --offsets --verbose GROUP TOPIC PARTITION LEADER-EPOCH CURRENT-OFFSET LOG-END-OFFSET LAG CONSUMER-ID HOST CLIENT-ID my-group mytopic my_topic 0 1 10 10 10 my-group-3056e339-59e1-43d8-abe3-8a9e10c53937 /127.0.0.1 consumer-test.group.CLASSIC.--offsets-2 my-group mytopic my_topic 1 1 10 10 10 my-group-3056e339-59e1-43d8-abe3-8a9e10c53937 /127.0.0.1 consumer-test.group.CLASSIC.--offsets-2 my-group newtopicnew_topic 0 1 10 10 10 my-group-3056e339-59e1-43d8-abe3-8a9e10c53937 /127.0.0.1 consumer-test.group.CLASSIC.--offsets-2 my-group newtopicnew_topic 1 1 10 10 10 my-group-3056e339-59e1-43d8-abe3-8a9e10c53937 /127.0.0.1 consumer-test.group.CLASSIC.--offsets-2 |
...
| Code Block |
|---|
$ bin/kafka-share-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --verbose GROUP COORDINATOR (ID) STATE STATE GROUP-EPOCH TARGET-ASSIGNMENT-EPOCH #MEMBERS my-group localhost:61316 (0) Stable Stable 1 1 1 |
--describe --members --verbose
...
| Code Block |
|---|
$ bin/kafka-share-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --members --verbose GROUP CONSUMER-ID HOST CLIENT-ID CURRENT-EPOCH CURRENT-ASSIGNMENT TARGET-EPOCH TARGET-ASSIGNMENT my-group T4tbGKsvT7CtsxVBH5J2QQ /127.0.0.1 consumer-my-group-1 1 my_topic:0,1;newtopicnew_topic:0,1 1 my_topic:0,1;newtopicnew_topic:0,1 |
Compatibility, Deprecation, and Migration Plan
...