v.18.10Improvement

Added max_fetch_partition_retries_count Setting

Added the max_fetch_partition_retries_count setting. #2831
Added the max_fetch_partition_retries_count setting to control the maximum number of retry attempts when fetching partitions.

Why it matters

To provide users with the ability to limit the number of retries performed when fetching partitions, improving control over query retries and helping to avoid excessive retry loops in case of persistent failures.

How to use it

Set the max_fetch_partition_retries_count parameter in your session or server configuration to the desired maximum number of retry attempts for fetching partitions. For example:

SET max_fetch_partition_retries_count = 3;

This will limit partition fetch retries to 3 attempts.