v.18.10Improvement
Added max_fetch_partition_retries_count Setting
Added the max_fetch_partition_retries_count setting. #2831Why 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 themax_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.