User talk:Haris

From QEMU
Revision as of 18:05, 20 May 2016 by Haris (talk | contribs) (→‎Gsoc_2016)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Gsoc_2016

Abstract

Live Migration is a process of moving a running virtual machine from one physical system to another. There are usually two ways, precopy and postcopy. Postcopy migration is used for virtual machines which have a high memory dirtying rate, (higher than the bandwidth of the network that will be used to perform migration). The disadvantage of postcopy migration is, if there is a network failure then we are left with an inconsistent vm at both the source and the destination side.

The aim of this project is to recover from the network failure, and complete the migration process. The project will include completing the process of sending the leftover memory pages.

Short term Tasks

  1. Set up the environment, and perform migration. (completed)
  2. Try breaking the migration process. (completed)
  3. Understanding the path which causes the destination to quit in case of network failure during a postcopy migration.
  4. Understanding why a "info cpus" query on the destination side is making the monitor hang.
  5. Find some way to stop the destination from quitting in case of network failure during a postcopy migration.
  6. Understanding the code base and the flow of execution. (ongoing)

Long term Tasks

  1. In case of a network failure, keeping the state of the migration intact at both the source and the destination side.
  2. Establishing a connection between the source and the destination when the network issue is resolved.
  3. Testing the connection recovery for all possible failure scenarios.
  4. Resume migration, restart the vCPUs, send the rest of the memory pages.
  5. Sending the rest of the left-out pages and completing the migration.