Add memfree migration selector for flush #152
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the
mem
selector based on allocated/provisioned memory is not sufficient to handle situations where some VMs are provisioned large but have low usage, and others are provisioned large but have high usage. This can cause situations where there is a massive discrepancy between the actual memory utilization on a node and the allocated/provisioned memory on the node. Thus, the migration selector can choose a suboptimal target for a VM migration that could result in swapping/low performance or worse (OOMs, etc.).Add another option here for
memfree
which would instead choose the node with the "most free memory" instead. This can then be used on memory-constrained clusters where this difference could be significant.