v.23.1Bug Fix
Delay Calculation for INSERTs Updated to Use Proportional Formula
Delay for INSERT can be calculated incorrectly, which can lead to always usingmax_delay_to_insertsetting as delay instead of a correct value. Using simple formulamax_delay_to_insert * (parts_over_threshold/max_allowed_parts_over_threshold)i.e. delay grows proportionally to parts over threshold. Closes #44902. #44954 (Igor Nikonov).