From Fedora Project Wiki

No edit summary
No edit summary
Line 5: Line 5:
# On the source machine, start the guest.
# On the source machine, start the guest.
# Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice).  From the source machine, start a ping to the guest:<br><br><code>$ ping <guest-IP></code><br><br>
# Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice).  From the source machine, start a ping to the guest:<br><br><code>$ ping <guest-IP></code><br><br>
# Download this code to the guest: and compile it using<br><br><code>$ gcc -g -Wall memchanger.c -o memchanger</code><br><br>
# Download this code to the guest: [[File:memchanger.c]] and compile it using<br><br><code>$ gcc -g -Wall memchanger.c -o memchanger</code><br><br>
# Start the memchanger inside the guest by executing:<br><br><code>$ ./memchanger</code><br><br>
# Start the memchanger inside the guest by executing:<br><br><code>$ ./memchanger</code><br><br>
# Now on the source machine execute:<br><br><code>$ virsh migrate --live <guestname> qemu+ssh://<destination host>/system</code><br><br>
# Now on the source machine execute:<br><br><code>$ virsh migrate --live <guestname> qemu+ssh://<destination host>/system</code><br><br>

Revision as of 13:42, 17 September 2009

Description

This test case checks that worst-case live migration using libvirt between two Fedora 12 hosts works correctly. The worst-case for live migration happens when the guest in question is very busy and changing memory very rapidly, which causes the same pages to be transmitted multiple times to the destination.


How to test

  1. On the source machine, edit the guest so that it has a fairly large amount of memory (at least 2GB, more if you can spare it).
  2. On the source machine, start the guest.
  3. Once the guest has fully booted, find out the IP address of the guest (by logging into the guest and running ifconfig, or whatever is equivalent in the guest OS of your choice). From the source machine, start a ping to the guest:

    $ ping <guest-IP>

  4. Download this code to the guest: File:Memchanger.c and compile it using

    $ gcc -g -Wall memchanger.c -o memchanger

  5. Start the memchanger inside the guest by executing:

    $ ./memchanger

  6. Now on the source machine execute:

    $ virsh migrate --live <guestname> qemu+ssh://<destination host>/system

  7. Shutdown the guest on the destination machine. Once it's successfully shut down, edit the guest on the source machine and give it random, differing amounts of memory: 1024MB, 2111MB, etc. Then repeat the test for these differing amounts of memory.
  8. Repeat the entire test for as many different guest OS's as are relevant. We would at least like to see the following guests:
    1. Fedora 12
    2. Fedora 11
    3. RHEL-4
    4. RHEL-5
    5. SUSE

Expected Results

  1. After executing the virsh migrate command, the guest should migrate over to the destination machine, and not be running anymore on the source machine. Use $ virsh list on both machines to verify this. Additionally, the ping that was started in step 3 should continue uninterrupted. Note that this migration may take significantly longer than a migration of an idle guest.