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, TARGET-ASSIGNMENT, and PROTOCOL information. Change ASSIGNMENT to CURRENT-ASSIGNMENT. For both classic and consumer groups, the ASSIGNMENT value format will change from "(0,1), (0,1)" to "my_topic:0,1;new_topic:0,1". The original format only shows sorted partition numbers for each topic. The new format adds the topic name.
| 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 consumer-group T4tbGKsvT7CtsxVBH5J2QQ /127.0.0.1 consumer-group-1 4 1 my_topic:0,1;new_topic:0,1 1 my_topic:0,1;new_topic:0,1 consumer classic-group 984f918d0921caae /127.0.0.1 classic-group-1 4 1 my_topic:0,1;new_topic:0,1 1 my_topic:0,1;new_topic:0,1 classic |
...