Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --verbose
GROUP		COORDINATOR (ID)          		ASSIGNMENT-STRATEGY   		STATE       GROUP-EPOCH		TARGET-ASSIGNMENT-EPOCH		#MEMBERS
my-group	localhost:61316  (0)      uniform      		  	uniform					Stable		1				1							1

--describe --members --verbose

...

Code Block
$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --members --verbose
GROUP		CONSUMER-ID            HOST            				HOST			CLIENT-ID			#PARTITIONS		CURRENT-EPOCH		CURRENT-ASSIGNMENT			TARGET-EPOCH	TARGET-ASSIGNMENT
my-group	T4tbGKsvT7CtsxVBH5J2QQ 	/127.0.0.1      		consumer-my-group-1	14				1     				  (0) 	mytopic:0,1;newtopic:0,1	1				1				(0)mytopic:0,1;newtopic:0,1

--describe --offsets --verbose

...

Code Block
$ bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --offsets --verbose
GROUP       TOPIC    	PARTITION  LEADER		TOPIC		PARTITION	LEADER-EPOCH	CURRENT-OFFSET  	LOG-END-OFFSET  LAG            CONSUMER-ID                                   	HOST            	LAG		CONSUMER-ID										HOST			CLIENT-ID
my-group	mytopic		0			1				10				10				10		my-topic 	0          1				10              10              10             -group-3056e339-59e1-43d8-abe3-8a9e10c53937	/127.0.0.1		consumer-test.group.CLASSIC.--offsets-2
my-group	mytopic		1			1				10				10				10		my-group-3056e339-59e1-43d8-abe3-8a9e10c53937 	/127.0.0.1      		consumer-test.group.CLASSIC.--offsets-2
my-group	newtopic	0			1				10				10				10		my-group-3056e339-59e1-43d8-abe3-8a9e10c53937	/127.0.0.1		consumer-test.group.CLASSIC.--offsets-2
my-group	newtopic	1			1				10				10				10		my-group-3056e339-59e1-43d8-abe3-8a9e10c53937	/127.0.0.1		consumer-test.group.CLASSIC.--offsets-2 

kafka-share-groups.sh

--describe --verbose

...

Code Block
$ bin/kafka-share-groups.sh --bootstrap-server localhost:9092 --describe --group my-group --members --verbose
GROUP		CONSUMER-ID            HOST            				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;newtopic:0,1	1			1    			my_topic:0,1;newtopic:0,1

Compatibility, Deprecation, and Migration Plan

...