You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix conflicts in http.ml (with_tracing got moved),
and periodic scheduler (got moved to xapi-stdext-threads).
The conflict resolution can be reviewed with a recent version of git:
```
git log --remerge-diff -1 81146d223d3d5cd449105ecef713cfd57e2c1853
```
Signed-off-by: Edwin Török <[email protected]>
Copy file name to clipboardExpand all lines: doc/content/design/plugin-protocol-v2.md
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ DATASOURCES
20
20
000001e4
21
21
dba4bf7a84b6d11d565d19ef91f7906e
22
22
{
23
-
"timestamp": 1339685573,
23
+
"timestamp": 1339685573.245,
24
24
"data_sources": {
25
25
"cpu-temp-cpu0": {
26
26
"description": "Temperature of CPU 0",
@@ -62,7 +62,7 @@ reported datasources.
62
62
### Example
63
63
```
64
64
{
65
-
"timestamp": 1339685573,
65
+
"timestamp": 1339685573.245,
66
66
"data_sources": {
67
67
"cpu-temp-cpu0": {
68
68
"description": "Temperature of CPU 0",
@@ -96,7 +96,7 @@ Protocol V2
96
96
|data checksum |32 |int32 |binary-encoded crc32 of the concatenation of the encoded timestamp and datasource values|
97
97
|metadata checksum |32 |int32 |binary-encoded crc32 of the metadata string (see below) |
98
98
|number of datasources|32 |int32 |only needed if the metadata has changed - otherwise RRDD can use a cached value |
99
-
|timestamp |64 |int64 |Unix epoch |
99
+
|timestamp |64 |double|Unix epoch |
100
100
|datasource values |n * 64 |int64 \| double |n is the number of datasources exported by the plugin, type dependent on the setting in the metadata for value_type [int64\|float]|
101
101
|metadata length |32 |int32 ||
102
102
|metadata |(string length)*8|string||
@@ -193,6 +193,3 @@ This means that for a normal update, RRDD will only have to read the header plus
193
193
the first (16 + 16 + 4 + 8 + 8*n) bytes of data, where n is the number of
194
194
datasources exported by the plugin. If the metadata changes RRDD will have to
195
195
read all the data (and parse the metadata).
196
-
197
-
n.b. the timestamp reported by plugins is not currently used by RRDD - it uses
Copy file name to clipboardExpand all lines: doc/content/toolstack/features/NUMA/index.md
+46-26Lines changed: 46 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ There is also I/O NUMA where a cost is similarly associated to where a PCIe is p
49
49
50
50
NUMA does have advantages though: if each node accesses only its local memory, then each node can independently achieve maximum throughput.
51
51
52
-
For best performance we should:
52
+
For best performance, we should:
53
53
- minimize the amount of interconnect bandwidth we are using
54
54
- run code that accesses memory allocated on the closest NUMA node
55
55
- maximize the number of NUMA nodes that we use in the system as a whole
@@ -62,39 +62,59 @@ The Xen scheduler supports 2 kinds of constraints:
62
62
* hard pinning: a vCPU may only run on the specified set of pCPUs and nowhere else
63
63
* soft pinning: a vCPU is *preferably* run on the specified set of pCPUs, but if they are all busy then it may run elsewhere
64
64
65
-
The former is useful if you want strict separation, but it can potentially leave part of the system idle while another part is bottlenecked with lots of vCPUs all competing for the same limited set of pCPUs.
65
+
Hard pinning can be used to partition the system. But, it can potentially leave part of the system idle while another part is bottlenecked by many vCPUs competing for the same limited set of pCPUs.
66
66
67
-
Xen does not migrate workloads between NUMA nodes on its own (the Linux kernel does), although it is possible to achieve a similar effect with explicit migration.
68
-
However migration introduces additional delays and is best avoided for entire VMs.
67
+
Xen does not migrate workloads between NUMA nodes on its own (the Linux kernel can). Although, it is possible to achieve a similar effect with explicit migration.
68
+
However, migration introduces additional delays and is best avoided for entire VMs.
69
69
70
-
The latter (soft pinning) is preferred: running a workload now, even on a potentially suboptimal pCPU (higher NUMA latency) is still better than not running it at all and waiting until a pCPU is freed up.
70
+
Therefore, soft pinning is preferred: Running on a potentially suboptimal pCPU that uses remote memory could still be better than not running it at all until a pCPU is free to run it.
71
71
72
-
Xen will also allocate memory for the VM according to the vCPU (soft) pinning: if the vCPUs are pinned only to NUMA nodes A and B, then it will allocate the VM's memory from NUMA nodes A and B (in a round-robin way, resulting in interleaving).
72
+
Xen will also allocate memory for the VM according to the vCPU (soft) pinning: If the vCPUs are pinned to NUMA nodes A and B, Xen allocates memory from NUMA nodes A and B in a round-robin way, resulting in interleaving.
73
73
74
-
By default (no pinning) it will interleave memory from all NUMA nodes, which provides average performance, but individual tasks' performance may be significantly higher or lower depending on which NUMA node the application may have "landed" on.
75
-
Furthermore restarting processes will speed them up or slow them down as address space randomization picks different memory regions inside a VM.
74
+
### Current default: No vCPU pinning
75
+
76
+
By default, when no vCPU pinning is used, Xen interleaves memory from all NUMA nodes. This averages the memory performance, but individual tasks' performance may be significantly higher or lower depending on which NUMA node the application may have "landed" on.
77
+
As a result, restarting processes will speed them up or slow them down as address space randomization picks different memory regions inside a VM.
78
+
79
+
This uses the memory bandwidth of all memory controllers and distributes the load across all nodes.
80
+
However, the memory latency is higher as the NUMA interconnects are used for most memory accesses and vCPU synchronization within the Domains.
76
81
77
82
Note that this is not the worst case: the worst case would be for memory to be allocated on one NUMA node, but the vCPU always running on the furthest away NUMA node.
78
83
79
84
## Best effort NUMA-aware memory allocation for VMs
80
85
81
-
By default Xen stripes the VM's memory accross all NUMA nodes of the host, which means that every VM has to go through all the interconnects.
86
+
87
+
### Summary
88
+
89
+
The best-effort mode attempts to fit Domains into NUMA nodes and to balance memory usage.
90
+
It soft-pins Domains on the NUMA node with the most available memory when adding the Domain.
91
+
Memory is currently allocated when booting the VM (or while constructing the resuming VM).
92
+
93
+
Parallel boot issue: Memory is not pre-allocated on creation, but allocated during boot.
94
+
The result is that parallel VM creation and boot can exhaust the memory of NUMA nodes.
95
+
96
+
### Goals
97
+
98
+
By default, Xen stripes the VM's memory across all NUMA nodes of the host, which means that every VM has to go through all the interconnects.
82
99
The goal here is to find a better allocation than the default, not necessarily an optimal allocation.
83
-
An optimal allocation would require knowing what VMs you would start/create in the future, and planning across hosts too.
100
+
An optimal allocation would require knowing what VMs you would start/create in the future, and planning across hosts.
101
+
This allows the host to use all NUMA nodes to take advantage of the full memory bandwidth available on the pool hosts.
84
102
85
-
Overall we want to balance the VMs across NUMA nodes, such that we use all NUMA nodes to take advantage of the maximum memory bandwidth available on the system.
103
+
Overall, we want to balance the VMs across NUMA nodes, such that we use all NUMA nodes to take advantage of the maximum memory bandwidth available on the system.
86
104
For now this proposed balancing will be done only by balancing memory usage: always heuristically allocating VMs on the NUMA node that has the most available memory.
87
-
Note that this allocation has a race condition for now when multiple VMs are booted in parallel, because we don't wait until Xen has constructed the domain for each one (that'd serialize domain construction, which is currently parallel).
105
+
For now, this allocation has a race condition: This happens when multiple VMs are booted in parallel, because we don't wait until Xen has constructed the domain for each one (that'd serialize domain construction, which is currently parallel).
88
106
This may be improved in the future by having an API to query Xen where it has allocated the memory, and to explicitly ask it to place memory on a given NUMA node (instead of best_effort).
89
107
90
108
If a VM doesn't fit into a single node then it is not so clear what the best approach is.
91
109
One criteria to consider is minimizing the NUMA distance between the nodes chosen for the VM.
92
-
Large NUMA systems may not be fully connected in a mesh requiring multiple hops to each a node, or even have assymetric links, or links with different bitwidth.
93
-
These tradeoff should be approximatively reflected in the ACPI SLIT tables, as a matrix of distances between nodes.
110
+
Large NUMA systems may not be fully connected in a mesh requiring multiple hops to each a node, or even have asymmetric links, or links with different bandwidth.
111
+
The specific NUMA topology is provided by the ACPI SLIT table as the matrix of distances between nodes.
94
112
It is possible that 3 NUMA nodes have a smaller average/maximum distance than 2, so we need to consider all possibilities.
95
113
96
114
For N nodes there would be 2^N possibilities, so [Topology.NUMA.candidates] limits the number of choices to 65520+N (full set of 2^N possibilities for 16 NUMA nodes, and a reduced set of choices for larger systems).
97
115
116
+
### Implementation
117
+
98
118
[Topology.NUMA.candidates] is a sorted sequence of node sets, in ascending order of maximum/average distances.
99
119
Once we've eliminated the candidates not suitable for this VM (that do not have enough total memory/pCPUs) we are left with a monotonically increasing sequence of nodes.
100
120
There are still multiple possibilities with same average distance.
@@ -110,19 +130,19 @@ See page 13 in [^AMD_numa] for a diagram of an AMD Opteron 6272 system.
110
130
111
131
* Booting multiple VMs in parallel will result in potentially allocating both on the same NUMA node (race condition)
112
132
* When we're about to run out of host memory we'll fall back to striping memory again, but the soft affinity mask won't reflect that (this needs an API to query Xen on where it has actually placed the VM, so we can fix up the mask accordingly)
113
-
* XAPI is not aware of NUMA balancing across a pool, and choses hosts purely based on total amount of free memory, even if a better NUMA placement could be found on another host
133
+
* XAPI is not aware of NUMA balancing across a pool. Xenopsd chooses NUMA nodes purely based on amount of free memory on the NUMA nodes of the host, even if a better NUMA placement could be found on another host
114
134
* Very large (>16 NUMA nodes) systems may only explore a limited number of choices (fit into a single node vs fallback to full interleaving)
115
135
* The exact VM placement is not yet controllable
116
136
* Microbenchmarks with a single VM on a host show both performance improvements and regressions on memory bandwidth usage: previously a single VM may have been able to take advantage of the bandwidth of both NUMA nodes if it happened to allocate memory from the right places, whereas now it'll be forced to use just a single node.
117
137
As soon as you have more than 1 VM that is busy on a system enabling NUMA balancing should almost always be an improvement though.
118
-
*it is not supported to combine hard vCPU masks with soft affinity: if hard affinities are used then no NUMA scheduling is done by the toolstack and we obey exactly what the user has asked for with hard affinities.
138
+
*It is not supported to combine hard vCPU masks with soft affinity: if hard affinities are used, then no NUMA scheduling is done by the toolstack, and we obey exactly what the user has asked for with hard affinities.
119
139
This shouldn't affect other VMs since the memory used by hard-pinned VMs will still be reflected in overall less memory available on individual NUMA nodes.
120
140
* Corner case: the ACPI standard allows certain NUMA nodes to be unreachable (distance `0xFF` = `-1` in the Xen bindings).
121
141
This is not supported and will cause an exception to be raised.
122
142
If this is an issue in practice the NUMA matrix could be pre-filtered to contain only reachable nodes.
123
-
NUMA nodes with 0 CPUs *are* accepted (it can result from hard affinity pinnings)
143
+
NUMA nodes with 0 CPUs *are* accepted (it can result from hard affinity pinning)
124
144
* NUMA balancing is not considered during HA planning
125
-
* Dom0 is a single VM that needs to communicate with all other VMs, so NUMA balancing is not applied to it (we'd need to expose NUMA topology to the Dom0 kernel so it can better allocate processes)
145
+
* Dom0 is a single VM that needs to communicate with all other VMs, so NUMA balancing is not applied to it (we'd need to expose NUMA topology to the Dom0 kernel, so it can better allocate processes)
126
146
* IO NUMA is out of scope for now
127
147
128
148
## XAPI datamodel design
@@ -139,7 +159,7 @@ Meaning of the policy:
139
159
*`best_effort`: the algorithm described in this document, where soft pinning is used to achieve better balancing and lower latency
140
160
*`default_policy`: when the admin hasn't expressed a preference
141
161
142
-
* Currently `default_policy` is treated as `any`, but the admin can change it, and then the system will remember that change across upgrades.
162
+
* Currently,`default_policy` is treated as `any`, but the admin can change it, and then the system will remember that change across upgrades.
143
163
If we didn't have a `default_policy` then changing the "default" policy on an upgrade would be tricky: we either risk overriding an explicit choice of the admin, or existing installs cannot take advantage of the improved performance from `best_effort`
144
164
* Future XAPI versions may change `default_policy` to mean `best_effort`.
145
165
Admins can still override it to `any` if they wish on a host by host basis.
@@ -149,7 +169,7 @@ It is not expected that users would have to change `best_effort`, unless they ru
149
169
There is also no separate feature flag: this host flag acts as a feature flag that can be set through the API without restarting the toolstack.
150
170
Although obviously only new VMs will benefit.
151
171
152
-
Debugging the allocator is done by running `xl vcpu-list` and investigating the soft pinning masks, and by analyzing xensource.log.
172
+
Debugging the allocator is done by running `xl vcpu-list` and investigating the soft pinning masks, and by analyzing `xensource.log`.
153
173
154
174
### Xenopsd implementation
155
175
@@ -166,18 +186,18 @@ This avoids exponential state space explosion on very large systems (>16 NUMA no
166
186
*[Topology.NUMA.choose] will choose one NUMA node deterministically, while trying to keep overall NUMA node usage balanced.
167
187
*[Domain.numa_placement] builds a [NUMARequest] and uses the above [Topology] and [Softaffinity] functions to compute and apply a plan.
168
188
169
-
We used to have a `xenopsd.conf` configuration option to enable numa placement, for backwards compatibility this is still supported, but only if the admin hasn't set an explicit policy on the Host.
189
+
We used to have a `xenopsd.conf` configuration option to enable NUMA placement, for backwards compatibility this is still supported, but only if the admin hasn't set an explicit policy on the Host.
170
190
It is best to remove the experimental `xenopsd.conf` entry though, a future version may completely drop it.
171
191
172
192
Tests are in [test_topology.ml] which checks balancing properties and whether the plan has improved best/worst/average-case access times in a simulated test based on 2 predefined NUMA distance matrixes (one from Intel and one from an AMD system).
173
193
174
194
## Future work
175
195
176
-
*enable 'best_effort' mode by default once more testing has been done
177
-
* an API to query Xen where it has actually allocated the VM's memory.
178
-
Currently only an`xl debug-keys` interface exists which is not supported in production as it can result in killing the host via the watchdog, and is not a proper API, but a textual debug output with no stability guarantees.
179
-
*more host policies (e.g. `strict`).
180
-
Requires the XAPI pool scheduler to be NUMA aware and consider it as part of chosing hosts.
196
+
*Enable 'best_effort' mode by default once more testing has been done
197
+
*Add an API to query Xen for the NUMA node memory placement (where it has actually allocated the VM's memory).
198
+
Currently, only the`xl debug-keys` interface exists which is not supported in production as it can result in killing the host via the watchdog, and is not a proper API, but a textual debug output with no stability guarantees.
199
+
*More host policies, e.g. `strict`.
200
+
Requires the XAPI pool scheduler to be NUMA aware and consider it as part of choosing hosts.
181
201
* VM level policy that can set a NUMA affinity index, mapped to a NUMA node modulo NUMA nodes available on the system (this is needed so that after migration we don't end up trying to allocate vCPUs to a non-existent NUMA node)
182
202
* VM level anti-affinity rules for NUMA placement (can be achieved by setting unique NUMA affinity indexes)
0 commit comments