Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default partitions count for __consumer_offsets topic increased #5412

Merged

Commits on Jul 8, 2022

  1. config: increased default partitions # for __consumer_offsets

    When a consumer tries to locate a consumer group coordinator of a cluster
    for the first time, the __consumer_offsets topic is created with the
    number of partitions as per the group_topic_partitions property.
    The default value for that property was 1 which means that unless
    a different value was explicitly specified by the customer at a very
    early stage of cluster's life, all OffsetCommit requests from all
    consumers will be going to a single broker. This change increases
    the default value to 16 as a reasonable trade-off between OffsetCommit
    parallelism for the clusters that will use consumer groups
    later in their life, and the overhead for the clusters that
    won't use consumer groups.
    
    redpanda-data#5222
    dlex committed Jul 8, 2022
    Configuration menu
    Copy the full SHA
    8d29b9d View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. ducktape: run GroupMetricsTest with group_topic_partitions=1

    test_leadership_transfer relies on kafka_group_offset metric source as an
    indication of the node being a group coordinator. However in admin API
    there is no way to know which __consumer_groups partition a specific
    consumer group uses, and the testcase always works with partition 0.
    To make that work, number of __consumer_groups partition is set to 1
    explicitly.
    dlex committed Jul 13, 2022
    Configuration menu
    Copy the full SHA
    20c701a View commit details
    Browse the repository at this point in the history