How do I know if my server has NUMA?

后端 未结 5 1016
失恋的感觉
失恋的感觉 2021-02-01 19:03

Hopping from Java Garbage Collection, I came across JVM settings for NUMA. Curiously I wanted to check if my CentOS server has NUMA capabilities or not. Is there a *ix command o

5条回答
  •  一生所求
    2021-02-01 19:34

    You can also get this info from lscpu command:

    lscpu | grep -i numa
    NUMA node(s):          2
    NUMA node0 CPU(s):     0-19,40-59
    NUMA node1 CPU(s):     20-39,60-79
    

提交回复
热议问题