|
| 1 | +Squeezed architecture |
| 2 | +===================== |
| 3 | + |
| 4 | +Squeezed is responsible for managing the memory on a single host. Squeezed |
| 5 | +"balances" memory between VMs according to a policy written to Xenstore. |
| 6 | + |
| 7 | +The following diagram shows the internals of Squeezed: |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | +At the center of squeezed is an abstract model of a Xen host. The model includes |
| 12 | +- the amount of already-used host memory (used by fixed overheads such as Xen |
| 13 | + and the crash kernel) |
| 14 | +- per-domain memory policy specifically ```dynamic-min``` and ```dynamic-max``` which |
| 15 | + together describe a range, within which the domain's actual used memory should remain |
| 16 | +- per-domain calibration data which allows us to compute the necessary balloon target |
| 17 | + value to achive a particular memory usage value. |
| 18 | + |
| 19 | +Squeezed is a single-threaded program which receives commands from |
| 20 | +[Xenopsd](https://github.com/xapi-project/xenopsd) over a Unix domain socket. |
| 21 | +When Xenopsd wishes to start a new VM, squeezed will be asked to create a "reservation". |
| 22 | +Note this is different to the Xen notion of a reservation. A squeezed reservation consists |
| 23 | +of an amount of memory squeezed will guarantee to keep free labelled with an id. |
| 24 | +When Xenopsd later creates the domain to notionally use the reservation, the reservation |
| 25 | +is "transferred" to the domain before the domain is built. |
| 26 | + |
| 27 | +Squeezed will also wake up every 30s and attempt to rebalance the memory on a host. This |
| 28 | +is useful to correct imbalances caused by balloon drivers temporarily failing to reach |
| 29 | +their targets. Note that ballooning is fundamentally a co-operative process, so squeezed |
| 30 | +must handle cases where the domains refuse to obey commands. |
| 31 | + |
| 32 | +The "output" of squeezed is a list of "actions" which include: |
| 33 | +- set domain x's ```memory/target``` to a new value |
| 34 | +- set the ```maxmem``` of a domain to a new value (as a hard limit beyond which the domain |
| 35 | + cannot allocate) |
| 36 | + |
0 commit comments