max_delay_to_insert
The value in seconds, which is used to calculate theINSERT delay, if the
number of active parts in a single partition exceeds the
parts_to_delay_insert value.
Possible values:
- Any positive integer.
INSERT is calculated by the formula:
INSERT is
delayed for pow( 1 * 1000, (1 + 299 - 150) / (300 - 150) ) = 1000
milliseconds.
Starting from version 23.1 formula has been changed to:
INSERT is delayed for max( 10, 1 * 1000 * (224 - 150 + 1) / (300 - 150) ) = 500 milliseconds.