mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
1004 B
15 lines
1004 B
# pin-threads
|
|
|
|
Simple strategies for pinning read and/or process threads. If process
|
|
threads are not enabled then the strategy simply works on the read
|
|
threads. Invalid values are ignored.
|
|
|
|
* `pin-threads=R1L`: All read threads pinned to a single logical CPU.
|
|
* `pin-threads=R1P`: All read threads pinned to a single physical CPU.
|
|
* `pin-threads=RP1L`: All read and process threads pinned to a single logical CPU.
|
|
RP1P: All read and process threads pinned to a single physical CPU.
|
|
R1LP1L: All read threads pinned to a single logical CPU, all process threads pinned to a (if possible) different logical CPU.
|
|
R1PP1P: All read threads pinned to a single physical CPU, all process threads pinned to a (if possible) different logical CPU.
|
|
RPSL: All read and process threads are spread across all logical CPUs.
|
|
RPSP: All read and process threads are spread across all physical CPUs.
|
|
R1PPSP: All read threads are pinned to a single physical CPU while process threads are spread across all other physical CPUs.
|