-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set CPU Affinities for Thread Workers
This doesn't have a significant impact on overall system performance, but it's still the right thing to do. We now ensure that worker threads are pinned to a CPU core during query processing. Worker 0 is pinned to CPU 0, worker 1 is pinned to CPU 1, and so on. This makes sure that we don't bounce our caches so much when a thread gets rescheduled during morsel execution. I had hoped this would positively impact ROF performance, but it really doesn't.
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters