-
Notifications
You must be signed in to change notification settings - Fork 172
rscan command for hypervisor
Currently, the rscan command didn't support to get the kvm guests information from the kvmhost/hypervisor, and can't write the kvm guests information into the xCAT database if required.
This design will support rscan command to scan kvmhost to get the virtual machine list.
Support Options:
-w write the different kvm guest information in xCAT tables and output conflict information if occurs.
-u update the same kvm guest.
-n write the different kvm guest information in xCAT tables.
a) Command: rscan [noderange]
The output will looks like:
type name hypervisor id cpu memory nic disk
kvm kvm1 kvmhost1 41 2 2048 br0 /install/vms/kvm1.hda.qcow2
kvm kvm2 kvmhost1 21 2 2048 br0 /install/vms/kvm2.hda.qcow2
kvm kvm1 kvmhost2 43 2 2048 br0 /install/vms/kvm1.hda.qcow2
kvm kvm2 kvmhost2 2 2048 br0 /install/vms/kvm2.hda.qcow2
b) Command: rscan [noderange] -w or rscan [noderange] -u or rscan [noderange] -n
The output will looks like below also writes or update the kvm guests information in the xCAT database tables.
type name hypervisor id cpu memory nic disk
kvm kvm1 kvmhost1 41 2 2048 br0 /install/vms/kvm1.hda.qcow2
kvm kvm2 kvmhost1 21 2 2048 br0 /install/vms/kvm2.hda.qcow2
kvm kvm1 kvmhost2 43 2 2048 br0 /install/vms/kvm1.hda.qcow2
kvm kvm2 kvmhost2 2 2048 br0 /install/vms/kvm2.hda.qcow2
These are some scenarios we need to take care of.
- Command: rscan [noderange] -w
Scenario 1
If the xCAT database tables don't have the kvm1 guest information. While rscan command find that kvmhost1 have kvm1 guest information and kvmhost2 have another kvm1 guest information. Which kvm1 guest information will be write in the database.
Solution:
Write the last kvm1 guest information to be found in the database and output the conflict information.
Scenario 2
If the xCAT database tables have kvm1 guest information, this kvm1 belong to the kvmhost1. While rscan command find that kvmhost2 have another kvm1 guest informaiton. Should this kvm1 guest information from kvmhost1 will be overwrited by the kvm1 guest information from kvmhost2?
Solution:
Don't overwrite the kvm1 guest information from kvm1host1 and output the conflict information.
- Command: rscan [noderange] -u
Scenario 1
If the xCAT database tables don't have the kvm1 guest information. While rscan command find that kvmhost1 have kvm1 guest information and kvmhost2 have another kvm1 guest information. What to do next?
Solution:
Don't write the kvm1 guest information to the xCAT database tables.
Scenario 2
If the xCAT database tables have kvm1 guest information. While rscan command find that kvmhost1 have kvm1 guest information and kvmhost2 have another kvm1 guest information. How to identify which kvm1 guest information will be updated?
Solution:
If the kvm1 guest information from xCAT database tables have the same name and vmhost with kvm1 guest information from the kvmhost1. Then update the kvm1 guest information from kvmhost1.
a) Add rscan command definition in kvm.pm
We need to write the rscan command definition into the kvm.pm file so that the xcatd will look for this command in kvm.pm.
- add rscan command in
handle_commands()
function
Use the nodehm table in xcat, and the value in mgt column will be used to find the kvm.pm file.
sub handled_commands {
...
rscan => 'nodehm:mgt=ipmi',
...
}
- add
rscan()
function inguestcmd()
function
Enable every node in noderange to be handled by rscan()
function.
sub guestcmd {
...
} elsif ($command eq "rscan") {
return rscan($node, @args);
...
}
b) Add rscan command in process_request()
function
Find hyphash for every node in noderange.
sub process_request {
...
unless ($command eq 'lsvm' or $command eq 'rscan') {
xCAT::VMCommon::grab_table_data($noderange, $confdata, $callback);
my $kvmdatatab = xCAT::Table->new("kvm_nodedata", -create => 0); #grab any pertinent pre-existing xml
if ($kvmdatatab) {
$confdata->{kvmnodedata} = $kvmdatatab->getNodesAttribs($noderange, [qw/xml/]);
} else {
$confdata->{kvmnodedata} = {};
}
}
...
if ($command eq 'lsvm' or $command eq 'rscan') { #command intended for hypervisors, not guests
foreach (@$noderange) { $hyphash{$_}->{nodes}->{$_} = 1; }
} else {
foreach (keys %{ $confdata->{vm} }) {
if ($confdata->{vm}->{$_}->[0]->{host}) {
$hyphash{ $confdata->{vm}->{$_}->[0]->{host} }->{nodes}->{$_} = 1;
} else {
$orphans{$_} = 1;
}
}
}
...
}
c) Add rscan() function in the kvm.pm
Libvirt software is the open source infrastructure to provide the low-level virtualization capabilities in most hypervisors that are available, including KVM, Xen, VMware, IBM PowerVM. Libvirt provides different ways of access, from a command line called virsh to a low-level API for many programming languages. (For perl, the API reference to http://search.cpan.org/dist/Sys-Virt/)
- require Sys::Virt
Try to connect to virtualization host identified by uri.
$hypconn= Sys::Virt->new(uri=>"qemu+ssh://root@".$_."/system?no_tty=1");
Return a list of all domains currently known to the $hypconn, whether running or shutoff.
@doms = $hypconn->list_all_domains();
- require Sys::Virt::Domain
Returns an XML document containing a complete description of the domain's configuration.
$currxml=$dom->get_xml_description();
- get information from xml file
Get the type name id cpu memory disk information from the xml file.
my $domain=$parser->parse_string($currxml);
my $type = $domain->findnodes("/domain")->[0]->getAttribute("type");
my $name = $domain->findnodes("/domain/name")->[0]->to_literal;
my $id = $domain->findnodes("/domain")->[0]->getAttribute("id");
my $vmcpus = $domain->findnodes("/domain/vcpu")->[0]->to_literal;
my $mem = $domain->findnodes("/domain/memory")->[0]->to_literal;
my $vmnics = $domain->findnodes("/domain/devices/interface/source")->[0]->getAttribute("bridge");
my $vmstorage = $domain->findnodes("/domain/devices/disk/source")->[0]->getAttribute("file");
- Mar 08, 2023: xCAT 2.16.5 released.
- Jun 20, 2022: xCAT 2.16.4 released.
- Nov 17, 2021: xCAT 2.16.3 released.
- May 25, 2021: xCAT 2.16.2 released.
- Nov 06, 2020: xCAT 2.16.1 released.
- Jun 17, 2020: xCAT 2.16 released.
- Mar 06, 2020: xCAT 2.15.1 released.
- Nov 11, 2019: xCAT 2.15 released.
- Mar 29, 2019: xCAT 2.14.6 released.
- Dec 07, 2018: xCAT 2.14.5 released.
- Oct 19, 2018: xCAT 2.14.4 released.
- Aug 24, 2018: xCAT 2.14.3 released.
- Jul 13, 2018: xCAT 2.14.2 released.
- Jun 01, 2018: xCAT 2.14.1 released.
- Apr 20, 2018: xCAT 2.14 released.
- Mar 14, 2018: xCAT 2.13.11 released.
- Jan 26, 2018: xCAT 2.13.10 released.
- Dec 18, 2017: xCAT 2.13.9 released.
- Nov 03, 2017: xCAT 2.13.8 released.
- Sep 22, 2017: xCAT 2.13.7 released.
- Aug 10, 2017: xCAT 2.13.6 released.
- Jun 30, 2017: xCAT 2.13.5 released.
- May 19, 2017: xCAT 2.13.4 released.
- Apr 14, 2017: xCAT 2.13.3 released.
- Feb 24, 2017: xCAT 2.13.2 released.
- Jan 13, 2017: xCAT 2.13.1 released.
- Dec 09, 2016: xCAT 2.13 released.
- Dec 06, 2016: xCAT 2.9.4 (AIX only) released.
- Nov 11, 2016: xCAT 2.12.4 released.
- Sep 30, 2016: xCAT 2.12.3 released.
- Aug 19, 2016: xCAT 2.12.2 released.
- Jul 08, 2016: xCAT 2.12.1 released.
- May 20, 2016: xCAT 2.12 released.
- Apr 22, 2016: xCAT 2.11.1 released.
- Mar 11, 2016: xCAT 2.9.3 (AIX only) released.
- Dec 11, 2015: xCAT 2.11 released.
- Nov 11, 2015: xCAT 2.9.2 (AIX only) released.
- Jul 30, 2015: xCAT 2.10 released.
- Jul 30, 2015: xCAT migrates from sourceforge to github
- Jun 26, 2015: xCAT 2.7.9 released.
- Mar 20, 2015: xCAT 2.9.1 released.
- Dec 12, 2014: xCAT 2.9 released.
- Sep 5, 2014: xCAT 2.8.5 released.
- May 23, 2014: xCAT 2.8.4 released.
- Jan 24, 2014: xCAT 2.7.8 released.
- Nov 15, 2013: xCAT 2.8.3 released.
- Jun 26, 2013: xCAT 2.8.2 released.
- May 17, 2013: xCAT 2.7.7 released.
- May 10, 2013: xCAT 2.8.1 released.
- Feb 28, 2013: xCAT 2.8 released.
- Nov 30, 2012: xCAT 2.7.6 released.
- Oct 29, 2012: xCAT 2.7.5 released.
- Aug 27, 2012: xCAT 2.7.4 released.
- Jun 22, 2012: xCAT 2.7.3 released.
- May 25, 2012: xCAT 2.7.2 released.
- Apr 20, 2012: xCAT 2.7.1 released.
- Mar 19, 2012: xCAT 2.7 released.
- Mar 15, 2012: xCAT 2.6.11 released.
- Jan 23, 2012: xCAT 2.6.10 released.
- Nov 15, 2011: xCAT 2.6.9 released.
- Sep 30, 2011: xCAT 2.6.8 released.
- Aug 26, 2011: xCAT 2.6.6 released.
- May 20, 2011: xCAT 2.6 released.
- Feb 14, 2011: Watson plays on Jeopardy and is managed by xCAT!
- xCAT OS And Hw Support Matrix
- Oct 22, 2010: xCAT 2.5 released.
- Apr 30, 2010: xCAT 2.4 is released.
- Oct 31, 2009: xCAT 2.3 released. xCAT's 10 year anniversary!
- Apr 16, 2009: xCAT 2.2 released.
- Oct 31, 2008: xCAT 2.1 released.
- Sep 12, 2008: Support for xCAT 2 can now be purchased!
- June 9, 2008: xCAT breaths life into (at the time) the fastest supercomputer on the planet
- May 30, 2008: xCAT 2.0 for Linux officially released!
- Oct 31, 2007: IBM open sources xCAT 2.0 to allow collaboration among all of the xCAT users.
- Oct 31, 1999: xCAT 1.0 is born!
xCAT started out as a project in IBM developed by Egan Ford. It was quickly adopted by customers and IBM manufacturing sites to rapidly deploy clusters.