You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* added new consumer group states
* applied updates as suggested by reviewers for consumer group states
* replaced general references to 'Kafka' with 'the Kafka instance'
Consumer group states displayed in the OpenShift Streams for Apache Kafka web console and `rhoas` CLI can be one of the following values:
125
+
126
+
* *Empty*: The group exists but has no members.
127
+
* *Stable*: Rebalancing already occurred and consumers are consuming.
128
+
* *PreparingRebalance*: The group is waiting for consumers to join, which requires the reassignment of partitions, so the Kafka instance is currently rebalancing.
129
+
* *CompletingRebalance*: The Kafka instance is still rebalancing and reassigning partitions.
130
+
* *Dead*: The group is due to be removed from this Kafka instance soon. This deletion might be due to inactivity, or the group is being migrated to a different group coordinator.
131
+
* *Unknown*: The state is too new for it to be parsed.
132
+
133
+
122
134
[id="con-consumer-group-script_{context}"]
123
135
=== Connecting the Kafka consumer group script
124
136
@@ -161,7 +173,7 @@ To create a consumer group, you specify a consumer group ID in your consumer app
161
173
162
174
A group ID is required for a consumer to be able to join a consumer group.
163
175
The group ID is the name of the consumer group.
164
-
When you configure a consumer client application to access Kafka, you assign a group ID to associate it with a consumer group.
176
+
When you configure a consumer client application to access a Kafka instance, you assign a group ID to associate it with a consumer group.
165
177
All consumers with the same group ID belong to the consumer group with that ID.
166
178
167
179
Consumer groups connected to a Kafka instance are displayed in the {product-kafka} web console.
0 commit comments