-
Notifications
You must be signed in to change notification settings - Fork 25.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slack merge throttling params for fewer merge tasks #126016
Slack merge throttling params for fewer merge tasks #126016
Conversation
Pinging @elastic/es-distributed-indexing (Team:Distributed Indexing) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some comments.
Also, I were expecting some sort of test change to be necessary. But if not, perhaps we can add a test to show that only the first task submitted decreases the io-rate?
@@ -87,8 +87,8 @@ public class ThreadPoolMergeExecutorService { | |||
private ThreadPoolMergeExecutorService(ThreadPool threadPool) { | |||
this.executorService = threadPool.executor(ThreadPool.Names.MERGE); | |||
this.maxConcurrentMerges = threadPool.info(ThreadPool.Names.MERGE).getMax(); | |||
this.concurrentMergesFloorLimitForThrottling = maxConcurrentMerges * 2; | |||
this.concurrentMergesCeilLimitForThrottling = maxConcurrentMerges * 4; | |||
this.concurrentMergesFloorLimitForThrottling = 2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we put a comment here that this means to only decrease throttle rate when we submit a task and no other tasks are running?
this.concurrentMergesFloorLimitForThrottling = maxConcurrentMerges * 2; | ||
this.concurrentMergesCeilLimitForThrottling = maxConcurrentMerges * 4; | ||
this.concurrentMergesFloorLimitForThrottling = 2; | ||
this.concurrentMergesCeilLimitForThrottling = maxConcurrentMerges * 2; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps assert that concurrentMergesCeilLimitForThrottling >= concurrentMergesFloorLimitForThrottling
- I feel like it adds readabililty.
newTargetIORateBytesPerSec = Math.min( | ||
MAX_IO_RATE.getBytes(), | ||
currentTargetIORateBytesPerSec + currentTargetIORateBytesPerSec / 10L | ||
currentTargetIORateBytesPerSec + currentTargetIORateBytesPerSec / 20L |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think what you did only adds 5%, it should be:
currentTargetIORateBytesPerSec + currentTargetIORateBytesPerSec / 20L | |
currentTargetIORateBytesPerSec + currentTargetIORateBytesPerSec / 5L |
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for catching this!
Thanks for the review, @henningandersen , I've addressed it all, please take another look. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
server/src/test/java/org/elasticsearch/index/engine/ThreadPoolMergeExecutorServiceTests.java
Outdated
Show resolved
Hide resolved
…MergeExecutorServiceTests.java Co-authored-by: Henning Andersen <[email protected]>
The intent here is to aim for fewer to-do merges enqueued for execution,
and to unthrottle disk IO at a faster rate when the queue grows longer.
Overall this results in less merge disk throttling.
Relates https://github.com/elastic/elasticsearch-benchmarks/issues/2437 #120869