Skip to content

Commit

Permalink
MINOR: Improve doc for config group.consumer.max.size (#18533)
Browse files Browse the repository at this point in the history
Reviewers: David Jacot <[email protected]>
  • Loading branch information
lianetm authored Jan 14, 2025
1 parent ea77352 commit a9688b9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ public class GroupCoordinatorConfig {
public static final int CONSUMER_GROUP_MAX_HEARTBEAT_INTERVAL_MS_DEFAULT = 15000;

public static final String CONSUMER_GROUP_MAX_SIZE_CONFIG = "group.consumer.max.size";
public static final String CONSUMER_GROUP_MAX_SIZE_DOC = "The maximum number of consumers that a single consumer group can accommodate. This value will only impact the new consumer coordinator. To configure the classic consumer coordinator check " + GROUP_MAX_SIZE_CONFIG + " instead.";
public static final String CONSUMER_GROUP_MAX_SIZE_DOC = "The maximum number of consumers " +
"that a single consumer group can accommodate. This value will only impact groups under " +
"the CONSUMER group protocol. To configure the max group size when using the CLASSIC " +
"group protocol use " + GROUP_MAX_SIZE_CONFIG + " " + "instead.";
public static final int CONSUMER_GROUP_MAX_SIZE_DEFAULT = Integer.MAX_VALUE;

public static final String CONSUMER_GROUP_ASSIGNORS_CONFIG = "group.consumer.assignors";
Expand Down

0 comments on commit a9688b9

Please sign in to comment.