v.20.12Performance Improvement
ReplicatedMergeTree Now Utilizes Separate Thread Pool for Fetches
NowReplicatedMergeTreetree engines family uses a separate thread pool for replicated fetches. Size of the pool limited by settingbackground_fetches_pool_sizewhich can be tuned with a server restart. The default value of the setting is 3 and it means that the maximum amount of parallel fetches is equal to 3 (and it allows to utilize 10G network). Fixes #520. #16390 (alesapin).