Example #1
0
def update_dictionary(host, vmid, cpu_count):
	host_vm_dict = getHostVMDict()
    	value = host_vm_dict[host][vmid]
	old_cpu = value.current_cpu
	required_cpu = float(cpu_count) - float(old_cpu)
	guest = Guest(value.vmip,value.vmid, float(cpu_count), value.max_cpu, value.current_memory, value.max_memory,value.io, value.start_time)
	addOrUpdateDictionaryOfVM(host, vmid, guest)
	update_resources_after_cpu_scaling(host, vmid, guest, required_cpu)
Example #2
0
def vm_terminate_dependency(source_host, vmid):

    #Remove entry from host_vm_dict.pkl
    #Remove the configuration XML
    host_vm_dict = getHostVMDict()
    guest = host_vm_dict[source_host][vmid]
    addOrUpdateDictionaryOfVM(source_host, vmid, None)
    resume_resources_from_guest(source_host, vmid, guest)
Example #3
0
def vm_terminate_dependency(source_host, vmid):

    #Remove entry from host_vm_dict.pkl
    #Remove the configuration XML
    host_vm_dict = getHostVMDict()
    guest = host_vm_dict[source_host][vmid]
    addOrUpdateDictionaryOfVM(source_host, vmid, None)
    resume_resources_from_guest(source_host, vmid, guest)
Example #4
0
def update_dictionary(host, vmid, mem_size):

	host_vm_dict = getHostVMDict()
    	value = host_vm_dict[host][vmid]
	old_memory = value.current_memory
	required_memory = float(mem_size) - float(old_memory)
	
	guest = Guest(value.vmip,value.vmid, value.current_cpu, value.max_cpu, float(mem_size), value.max_memory,value.io, value.start_time)

	#Update memory for guest in guest dictionary
	addOrUpdateDictionaryOfVM(host, vmid, guest)

	#Update memory for guest in host dictionary
	update_resources_after_mem_scaling(host, vmid, guest, required_memory)
Example #5
0
def update_dictionary(host, vmid, mem_size):

    host_vm_dict = getHostVMDict()
    value = host_vm_dict[host][vmid]
    old_memory = value.current_memory
    required_memory = float(mem_size) - float(old_memory)

    guest = Guest(value.vmip, value.vmid, value.current_cpu, value.max_cpu,
                  float(mem_size), value.max_memory, value.io,
                  value.start_time)

    #Update memory for guest in guest dictionary
    addOrUpdateDictionaryOfVM(host, vmid, guest)

    #Update memory for guest in host dictionary
    update_resources_after_mem_scaling(host, vmid, guest, required_memory)
Example #6
0
def vm_migrate_dependency(source_host,dest_host,vmid):

	obj=NodeFinder()
	#Remove entry from host_vm_dict.pkl for the source_host
	#Add Entry to the dest_host in node_dict.pkl
	#Remove the configuration XML
	host_vm_dict = getHostVMDict()
	guest = host_vm_dict[source_host][vmid]

	#update guest dictionay on source_host
	addOrUpdateDictionaryOfVM(source_host, vmid, None)

	#Update host dictionary for source host 
	resume_resources_from_guest(source_host, vmid, guest)

	#update guest dictionay on dest_host
	addOrUpdateDictionaryOfVM(dest_host, vmid, guest)
	
	#Update host dictionary for dest host
	host = obj.place_job (dest_host, guest.current_cpu,guest.current_memory,guest.io)
Example #7
0
def vm_migrate_dependency(source_host, dest_host, vmid):

    obj = NodeFinder()
    #Remove entry from host_vm_dict.pkl for the source_host
    #Add Entry to the dest_host in node_dict.pkl
    #Remove the configuration XML
    host_vm_dict = getHostVMDict()
    guest = host_vm_dict[source_host][vmid]

    #update guest dictionay on source_host
    addOrUpdateDictionaryOfVM(source_host, vmid, None)

    #Update host dictionary for source host
    resume_resources_from_guest(source_host, vmid, guest)

    #update guest dictionay on dest_host
    addOrUpdateDictionaryOfVM(dest_host, vmid, guest)

    #Update host dictionary for dest host
    host = obj.place_job(dest_host, guest.current_cpu, guest.current_memory,
                         guest.io)
Example #8
0
def vm_submitjob(vmid, cpu, memory, max_memory, io):

    try:
        #Activity Log
        vmsubmission_log = open(
            '/var/lib/virtdc/logs/activity_logs/vmsubmission.log', 'a+')

        obj = NodeFinder()

        #memory=float(_base_memory_size) + float(memory)
        #print "Memory "+str(memory)

        #Identify is there a space for the VM
        host = obj.is_space_available_for_vm(cpu, memory, io)

        print 'VMID "', vmid
        print 'CPU "', cpu
        print 'memory"', memory
        print 'max_memory"', max_memory
        print 'io"', io

        if host is None:
            print "Cant create new domain. Space not available."
            #print subprocess.call("date")
            #print 'VMID "', vmid
            #print 'CPU "', cpu
            #print 'memory"', memory
            #print 'max_memory"', max_memory
            #print 'io"', io
            return False

        prefix_host = host
        print host
        #Code to check whether the VM can be placed

        if (host == _master):
            prefix_host = ''
            _imageCopyCmd = "cp "
            _cloneCmd = "virsh create "
        else:
            _cloneCmd = "virsh --connect qemu+ssh://" + host + "/system create "
            prefix_host = host + ":"
            _imageCopyCmd = "scp "

        #print "The node is %s",host
        #To get the guest os configuration xml for the first time
        #cmd = "virsh dumpxml Test_clone > /root/Desktop/PYTHON/guestconfig.xml"
        #p = subprocess.Popen(cmd, shell=True, stderr=subprocess.PIPE)

        #command to get the xml into python string for further updates. guestconfig.xml needs to be copied(physically present) int the same folder of this script
        nodeInfo = "cat " + guest_config_path
        xmlstring = subprocess.check_output(nodeInfo,
                                            shell=True,
                                            stderr=subprocess.PIPE)

        #command to copy the iso image to the destination. Every VM will have an individual iso image. (I think this copy can be cleared later on). Make the nodes passwordless
        image_path = guest_image + vmid + ".img"
        image_dest = prefix_host + guest_image + vmid + ".img"
        cp_cmd = _imageCopyCmd + guest_image + "base_image.img " + image_dest
        copy_image = subprocess.check_output(cp_cmd,
                                             shell=True,
                                             stderr=subprocess.PIPE)
        vmsubmission_log.write(
            str(datetime.datetime.now()) + '::Copy Image ::' + host + ' :: ' +
            vmid + ' :: Successfully copied the image\n')

        #uuid = subprocess.check_output("uuidgen", shell=True, stderr=subprocess.PIPE)

        #config update based on the new VM requiement  	#image_path	max_memory	current_memory	current_cpu	max_cpu
        xmlstring = xmlstring.replace("vm_name", vmid)
        #xmlstring=xmlstring.replace("vm_uuid", uuid);
        xmlstring = xmlstring.replace("max_memory", str(int(max_memory)))
        xmlstring = xmlstring.replace("current_memory", str(int(memory)))
        xmlstring = xmlstring.replace("current_cpu", str(int(cpu)))
        xmlstring = xmlstring.replace("max_cpu", "8")
        xmlstring = xmlstring.replace("image_path", image_path)

        #command to write the xml string to file
        guest_info_file = guest_config_file_storage_path + vmid + ".xml"
        config_temp_file = open(guest_info_file, "w")
        config_temp_file.write(xmlstring)
        config_temp_file.close()

        #command to clone the image
        clone = _cloneCmd + guest_info_file
        clone_out = subprocess.check_output(clone,
                                            shell=True,
                                            stderr=subprocess.PIPE)
        vmsubmission_log.write(
            str(datetime.datetime.now()) + '::Create VM ::' + host + ' :: ' +
            vmid + ' :: Successfully created the VM\n')

        #VM Successfully created. Update the node dictionary pickle
        host = obj.place_job(host, cpu, max_memory, io)

        if host is None:
            print 'Issue in updating node dictionary'
            vmsubmission_log.write(
                str(datetime.datetime.now()) + '::Update Node Dictionary ::' +
                host + ' :: ' + vmid +
                ' :: Issue in updating node dictionary\n')
            return False

        # Wait for VM to boot up
        time.sleep(60)

        # Get the IP address of Virtual Machine and update in VM_Info_Updater
        guest_ip = getGuestIP(host.strip(), vmid.strip(), "root", "Teamb@123")

        # If get ip failed, terminate this VM
        if guest_ip == "":
            print 'Issue in retrieving public IP of domain : Terminating the domain!'
            vmsubmission_log.write(
                str(datetime.datetime.now()) +
                '::Issue in retrieving public IP of domain : Terminating the domain - '
                + vmid + '\n')
            vm_terminate_guest(host.strip(), vmid.strip())
            return False

        # Making the max cpu as 8 for all VM's
        addOrUpdateDictionaryOfVM(
            host, vmid,
            Guest(guest_ip, vmid, float(cpu), float(8), float(memory),
                  float(max_memory), float(1), str(datetime.datetime.now())))
        vmsubmission_log.write(
            str(datetime.datetime.now()) + '::Update IP::' + host + ' :: ' +
            vmid + ' :: Successfully updated the IP\n')

        # copy host_config.txt file to guest
        # this will start monitor_agent on guest
        do_prereq_start_workload(host, vmid)

        #Run Job in Guest
        runJobOnVM(host, vmid)
        vmsubmission_log.write(
            str(datetime.datetime.now()) + '::Run Job::' + host + ' :: ' +
            vmid + ' :: Successfully ran the job\n')

        return True

    except Exception, e:
        print 'Error occured during domain creation/run job' + str(vmid)

        #exc_type, exc_obj, exc_tb = sys.exc_info()
        #fname = os.path.split(exc_tb.tb_frame.f_code.co_filename)[1]
        #print exc_type, fname, exc_tb.tb_lineno

        vmsubmission_log.write(
            str(datetime.datetime.now()) + ' :: Create Guest :: ' + vmid +
            ' :: Cannot create the guest\n')
        #print "error>",e.output,'<'
        vmsubmission_log.write(str(e) + '\n')
        mail_subject = 'Guest creation error - ' + str(vmid)
        mail_content = 'Error occured during guest creation ' + vmid + ' . The error as follows, \n\n' + str(
            e) + '\n'
        send_support_mail(mail_subject, mail_content.strip())
        return False
Example #9
0
def vm_submitjob(vmid, cpu, memory, max_memory, io):

    try:
        # Activity Log
        vmsubmission_log = open("/var/lib/virtdc/logs/activity_logs/vmsubmission.log", "a+")

        obj = NodeFinder()

        # memory=float(_base_memory_size) + float(memory)
        # print "Memory "+str(memory)

        # Identify is there a space for the VM
        host = obj.is_space_available_for_vm(cpu, memory, io)

        print 'VMID "', vmid
        print 'CPU "', cpu
        print 'memory"', memory
        print 'max_memory"', max_memory
        print 'io"', io

        if host is None:
            print "Cant create new domain. Space not available."
            # print subprocess.call("date")
            # print 'VMID "', vmid
            # print 'CPU "', cpu
            # print 'memory"', memory
            # print 'max_memory"', max_memory
            # print 'io"', io
            return False

        prefix_host = host
        print host
        # Code to check whether the VM can be placed

        if host == _master:
            prefix_host = ""
            _imageCopyCmd = "cp "
            _cloneCmd = "virsh create "
        else:
            _cloneCmd = "virsh --connect qemu+ssh://" + host + "/system create "
            prefix_host = host + ":"
            _imageCopyCmd = "scp "

            # print "The node is %s",host
            # To get the guest os configuration xml for the first time
            # cmd = "virsh dumpxml Test_clone > /root/Desktop/PYTHON/guestconfig.xml"
            # p = subprocess.Popen(cmd, shell=True, stderr=subprocess.PIPE)

            # command to get the xml into python string for further updates. guestconfig.xml needs to be copied(physically present) int the same folder of this script
        nodeInfo = "cat " + guest_config_path
        xmlstring = subprocess.check_output(nodeInfo, shell=True, stderr=subprocess.PIPE)

        # command to copy the iso image to the destination. Every VM will have an individual iso image. (I think this copy can be cleared later on). Make the nodes passwordless
        image_path = guest_image + vmid + ".img"
        image_dest = prefix_host + guest_image + vmid + ".img"
        cp_cmd = _imageCopyCmd + guest_image + "base_image.img " + image_dest
        copy_image = subprocess.check_output(cp_cmd, shell=True, stderr=subprocess.PIPE)
        vmsubmission_log.write(
            str(datetime.datetime.now())
            + "::Copy Image ::"
            + host
            + " :: "
            + vmid
            + " :: Successfully copied the image\n"
        )

        # uuid = subprocess.check_output("uuidgen", shell=True, stderr=subprocess.PIPE)

        # config update based on the new VM requiement  	#image_path	max_memory	current_memory	current_cpu	max_cpu
        xmlstring = xmlstring.replace("vm_name", vmid)
        # xmlstring=xmlstring.replace("vm_uuid", uuid);
        xmlstring = xmlstring.replace("max_memory", str(int(max_memory)))
        xmlstring = xmlstring.replace("current_memory", str(int(memory)))
        xmlstring = xmlstring.replace("current_cpu", str(int(cpu)))
        xmlstring = xmlstring.replace("max_cpu", "8")
        xmlstring = xmlstring.replace("image_path", image_path)

        # command to write the xml string to file
        guest_info_file = guest_config_file_storage_path + vmid + ".xml"
        config_temp_file = open(guest_info_file, "w")
        config_temp_file.write(xmlstring)
        config_temp_file.close()

        # command to clone the image
        clone = _cloneCmd + guest_info_file
        clone_out = subprocess.check_output(clone, shell=True, stderr=subprocess.PIPE)
        vmsubmission_log.write(
            str(datetime.datetime.now()) + "::Create VM ::" + host + " :: " + vmid + " :: Successfully created the VM\n"
        )

        # VM Successfully created. Update the node dictionary pickle
        host = obj.place_job(host, cpu, max_memory, io)

        if host is None:
            print "Issue in updating node dictionary"
            vmsubmission_log.write(
                str(datetime.datetime.now())
                + "::Update Node Dictionary ::"
                + host
                + " :: "
                + vmid
                + " :: Issue in updating node dictionary\n"
            )
            return False

        # Wait for VM to boot up
        time.sleep(60)

        # Get the IP address of Virtual Machine and update in VM_Info_Updater
        guest_ip = getGuestIP(host.strip(), vmid.strip(), "root", "Teamb@123")

        # If get ip failed, terminate this VM
        if guest_ip == "":
            print "Issue in retrieving public IP of domain : Terminating the domain!"
            vmsubmission_log.write(
                str(datetime.datetime.now())
                + "::Issue in retrieving public IP of domain : Terminating the domain - "
                + vmid
                + "\n"
            )
            vm_terminate_guest(host.strip(), vmid.strip())
            return False

        # Making the max cpu as 8 for all VM's
        addOrUpdateDictionaryOfVM(
            host,
            vmid,
            Guest(
                guest_ip,
                vmid,
                float(cpu),
                float(8),
                float(memory),
                float(max_memory),
                float(1),
                str(datetime.datetime.now()),
            ),
        )
        vmsubmission_log.write(
            str(datetime.datetime.now()) + "::Update IP::" + host + " :: " + vmid + " :: Successfully updated the IP\n"
        )

        # copy host_config.txt file to guest
        # this will start monitor_agent on guest
        do_prereq_start_workload(host, vmid)

        # Run Job in Guest
        runJobOnVM(host, vmid)
        vmsubmission_log.write(
            str(datetime.datetime.now()) + "::Run Job::" + host + " :: " + vmid + " :: Successfully ran the job\n"
        )

        return True

    except Exception, e:
        print "Error occured during domain creation/run job" + str(vmid)

        # exc_type, exc_obj, exc_tb = sys.exc_info()
        # fname = os.path.split(exc_tb.tb_frame.f_code.co_filename)[1]
        # print exc_type, fname, exc_tb.tb_lineno

        vmsubmission_log.write(
            str(datetime.datetime.now()) + " :: Create Guest :: " + vmid + " :: Cannot create the guest\n"
        )
        # print "error>",e.output,'<'
        vmsubmission_log.write(str(e) + "\n")
        mail_subject = "Guest creation error - " + str(vmid)
        mail_content = "Error occured during guest creation " + vmid + " . The error as follows, \n\n" + str(e) + "\n"
        send_support_mail(mail_subject, mail_content.strip())
        return False