Skip to content

aspiers/migrationpaths

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VM migration path finder

Overview

In a populated compute cloud, there are several scenarios in which it's beneficial to be able to rearrange VM guest instances into a different placement across the hypervisor hosts via migration (live or otherwise), using a policy based on some business need, such as optimising performance or maximising return on hardware investment.

In this blog post, I went into more detail on these scenarios, took a look at the status quo in OpenStack and the computer science behind the problem, and briefly mentioned that I have a working implementation of an algorithm which reliably calculates a reasonably optimal sequence of VM migrations from a given initial placement to a given final placement. This repository provides the code for that implementation. Here it is in action:

YouTube screencast

Algorithm

For more details on the algorithm design and implementation, please see doc/algorithm.md.

Usage

The code is provided as a set of Python classes in the src/ directory, but there are several frontend interfaces with which you can run the algorithm directly:

  • src/animate.py - for a single (current, target) state pair, finds a path of migrations from one to the other and animates the sequence via an ASCII representation, showing one migration per keypress.
  • src/debug.py - runs the solver on one of the fixed testcases, outputting verbose debugging information as it goes. Useful for examining in detail exactly how the algorithm works.
  • src/demo.py - randomly generates (current, target) state pairs, finds a migration between them, and animates the solution via an ASCII representation.
  • src/repl.py - REPL interface which lets you manually specify migrations one at a time.
  • src/soaktest.py - randomly generates (current, target) state pairs, launches the path finder on them, and flags any runs which took longer than a time threshold. This helps highlight issues (performance and otherwise) in the algorithm.
  • src/test.py - a test runner which runs the algorithm on some hardcoded scenarios and checks the results

Code structure

The backend code implementing the algorithm comprises of the following files:

  • src/pathfinder.py - base class providing container for state used during path discovery
  • Strategy subclasses:
    • src/dijkstra.py - naive Dijkstra implementation I implemented first but which turned out to be completely useless due to the algorithmic complexity of the path graph which needs to be explored
    • src/aspiers.py - my algorithm

This code is supported by several OO helper classes:

Development / support / feedback

Please see the CONTRIBUTING file.

License

This repository is released under the Apache 2.0 license in order to be compatible with the OpenStack project; however I am open to the idea of dual-licensing if anyone needs this.

Acknowledgements

Thanks to the awesomeness of my employer SUSE, once or twice a year I get to work on whatever I want for a whole week. We call it Hack Week! And I've actually been (very sporadically) working in my spare time on designing and implementing this algorithm for the last four years or so. So for Hack Week 10 (7th--11th October 2013), I decided to finally complete this proof of concept implementation. Embarrassingly, it took me until May 2015 to publish the code and blog about it, but better late than never ...

History

I became fascinated with the potential of using orchestration techniques to optimise large-scale virtualized environments around 2007 or so, when I was a data center architect working in Novell's sales division. Around that time, Novell acquired a small Californian company called RedMojo, together with some amazing orchestration / virtualization management technology which became ZenWorks Orchestrator. It was later rebranded as PlateSpin Orchestrate in 2008 after Novell's acquisition of PlateSpin, which had also some very interesting virtualization environment optimization technology.

As an orchestration engine, PlateSpin Orchestrate was way ahead of its time, and I had fun building demonstrations of the huge potential of policy-based management of large-scale virtualized environments. I left the sales division to join the engineering team for PlateSpin Orchestrate, and it eventually became the backend for NetIQ Cloud Manager.

These experiences got me thinking about possible generalized solutions to the problem of optimizing large-scale virtualized environments, and so the ideal for this path-finding approach was born.

About

implementation of VM migration path-finding algorithm

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages