NUMA - 所有 CPU 绑定到节点 0

NUMA - 所有 CPU 绑定到节点 0

我正在运行带有两个 16 核 Opteron 的 Dell PE 815 服务器,每个服务器上有四个内存模块,操作系统为 RHEL6,当我开始针对 NUMA 操作对其进行优化时,发现所有核心都显示为绑定到 node0:

[root@node1 ~]# numactl --show
policy: default
preferred node: current
physcpubind: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
cpubind: 0
nodebind: 0
membind: 0
[root@node1 ~]# numactl --hardware
available: 1 nodes (0)
node 0 cpus: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
node 0 size: 65462 MB
node 0 free: 5889 MB
node distances:
node   0
  0:  10
[root@node1 ~]# numastat
                           node0
numa_hit              2661443864
numa_miss                      0
numa_foreign                   0
interleave_hit             43010
local_node            2661443864
other_node                     0
[root@node1 ~]#

根据物理配置,至少需要两个节点。原因是什么?

相关内容