3dcb404b1f
Add a new server topology API to show server NUMA information: - GET /servers/{server_id}/topology Add new policy to control the default behavior: - compute:server:topology:index - compute:server:topology:host:index Change-Id: Ie647ef96597195b0ef00f77cece16c2bef8a78d4 Implements: blueprint show-server-numa-topology Signed-off-by: Yongli He <yongli.he@intel.com>
42 lines
786 B
JSON
42 lines
786 B
JSON
{
|
|
"nodes": [
|
|
{
|
|
"cpu_pinning": {
|
|
"0": 0,
|
|
"1": 5
|
|
},
|
|
"host_node": 0,
|
|
"memory_mb": 1024,
|
|
"siblings": [
|
|
[
|
|
0,
|
|
1
|
|
]
|
|
],
|
|
"vcpu_set": [
|
|
0,
|
|
1
|
|
]
|
|
},
|
|
{
|
|
"cpu_pinning": {
|
|
"2": 1,
|
|
"3": 8
|
|
},
|
|
"host_node": 1,
|
|
"memory_mb": 2048,
|
|
"siblings": [
|
|
[
|
|
2,
|
|
3
|
|
]
|
|
],
|
|
"vcpu_set": [
|
|
2,
|
|
3
|
|
]
|
|
}
|
|
],
|
|
"pagesize_kb": 4
|
|
}
|