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.

23 lines
1.1 KiB

  1. # pin-threads
  2. Simple strategies for pinning read and/or process threads. If process
  3. threads are not enabled then the strategy simply works on the read
  4. threads. Invalid values are ignored.
  5. * `pin-threads=R1L`: All read threads pinned to a single logical CPU.
  6. * `pin-threads=R1P`: All read threads pinned to a single physical CPU.
  7. * `pin-threads=RP1L`: All read and process threads pinned to a single logical CPU.
  8. * `pin-threads=RP1P`: All read and process threads pinned to a single physical CPU.
  9. * `pin-threads=R1LP1L`: All read threads pinned to a single logical
  10. CPU, all process threads pinned to a (if possible) different logical
  11. CPU.
  12. * `pin-threads=R1PP1P`: All read threads pinned to a single physical
  13. CPU, all process threads pinned to a (if possible) different logical
  14. CPU.
  15. * `pin-threads=RPSL`: All read and process threads are spread across
  16. all logical CPUs.
  17. * `pin-threads=RPSP`: All read and process threads are spread across
  18. all physical CPUs.
  19. * `pin-threads=R1PPSP`: All read threads are pinned to a single
  20. physical CPU while process threads are spread across all other
  21. physical CPUs.