v.25.3New Feature
Add concurrent_threads_scheduler server
Addedconcurrent_threads_schedulerserver setting that governs how CPU slots are distributed among concurrent queries. Could be set toround_robin(previous behavior) orfair_round_robinto address the issue of unfair CPU distribution between INSERTs and SELECTs. #75949 (Sergei Trifonov).
Why it matters
This feature solves the issue of unfair CPU distribution between INSERT and SELECT queries by allowing users to choose a scheduling algorithm that balances CPU resources more fairly.How to use it
Set theconcurrent_threads_scheduler server setting to either round_robin (default behavior) or fair_round_robin to enable fairer CPU slot distribution among concurrent queries.