US20130305242A1 - Performance of Load Balancing Modules with Migration Awareness - Google Patents

Performance of Load Balancing Modules with Migration Awareness Download PDF

Info

Publication number
US20130305242A1
US20130305242A1 US13/469,276 US201213469276A US2013305242A1 US 20130305242 A1 US20130305242 A1 US 20130305242A1 US 201213469276 A US201213469276 A US 201213469276A US 2013305242 A1 US2013305242 A1 US 2013305242A1
Authority
US
United States
Prior art keywords
migration
load balancing
vms
host
notification
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US13/469,276
Other versions
US9152448B2 (en
Inventor
Yong Wang
Weiqing Wu
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
VMware LLC
Original Assignee
VMware LLC
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by VMware LLC filed Critical VMware LLC
Priority to US13/469,276 priority Critical patent/US9152448B2/en
Assigned to VMWARE, INC. reassignment VMWARE, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: WANG, YONG, WU, WEIQING
Publication of US20130305242A1 publication Critical patent/US20130305242A1/en
Application granted granted Critical
Publication of US9152448B2 publication Critical patent/US9152448B2/en
Assigned to VMware LLC reassignment VMware LLC CHANGE OF NAME (SEE DOCUMENT FOR DETAILS). Assignors: VMWARE, INC.
Active legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5083Techniques for rebalancing the load in a distributed system
    • G06F9/5088Techniques for rebalancing the load in a distributed system involving task migration
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/46Multiprogramming arrangements
    • G06F9/54Interprogram communication
    • G06F9/542Event management; Broadcasting; Multicasting; Notifications
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/455Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
    • G06F9/45533Hypervisors; Virtual machine monitors
    • G06F9/45558Hypervisor-specific management and integration aspects
    • G06F2009/4557Distribution of virtual machine instances; Migration and load balancing

Definitions

  • Some existing systems deploy web servers as virtual machines (VMs) running on a single physical host.
  • the host may have one, or a few, front-end virtual load balancers that operate to distribute traffic among the web servers so that no single server becomes a performance bottleneck. Operation of the load balancers is affected by surges in traffic loads and changing conditions of the web servers. For example, in a virtual data center, the VMs implementing the web servers are frequently migrated across physical hosts (e.g., due to address failures, congestion, or load rebalancing).
  • Live migration of VMs is a form of migration that allows high availability, transparent mobility, and consolidation.
  • live migration running VMs are moved between hosts without disconnecting services executing inside the VMs.
  • the load balancers are unaware of the underlying migration states of the VMs.
  • the load balancers treat the VMs undergoing migration no differently from the VMs that are not being migrated.
  • the load balancers continuously dispatch new connections to the VMs being migrated introducing performance challenges into the migration.
  • Exemplary performance challenges include, but are not limited to, an increase in memory to copy during a pre-copy phase of migration, memory-related bookkeeping, and additional downtime for saving and restoring non-memory states.
  • Some of the existing load balancing algorithms track web server status (e.g., server load, connection count, response time, etc.) by, for example, passively probing the web servers. This technique, however, only detects performance degradation after the performance degradation has occurred. As such, it is difficult for existing load balancers to respond (e.g., redirect traffic elsewhere) to short resource spike usage scenarios introduced by migration of VMs.
  • web server status e.g., server load, connection count, response time, etc.
  • One or more embodiments described herein reduce performance degradation during a migration or other operation affecting virtual machines (VMs).
  • a migration notification is sent, before migration of one of the VMs, to one or more load balancing modules distributing data requests to the VMs.
  • the load balancing modules reduce the load on the VM to be migrated.
  • the load balancing modules reduce the load by reducing a quantity of new connections established to the VM while maintaining the existing connections.
  • the load balancing modules increase the load on the newly migrated VM.
  • FIG. 1 is a block diagram of an exemplary host computing device.
  • FIG. 2 is a block diagram of virtual machines (VMs) that are instantiated on a computing device, such as the host computing device shown in FIG. 1 .
  • VMs virtual machines
  • FIG. 3 is a block diagram of an exemplary computing device, such as the host computing device shown in FIG. 1 , for implementing the migration module and one or more load balancing modules.
  • FIG. 4 is a flowchart of an exemplary method performed by the load balancing modules to adjust distribution of data requests responsive to a migration notification.
  • FIG. 5 is a flowchart of an exemplary method performed by the migration module to notify registered load balancing modules of an upcoming migration of a VM to a new host.
  • FIG. 6 is a sequence diagram illustrating interaction among the migration module, load balancing module, and one or more VMs.
  • FIG. 7 is a block diagram of a host, such as the host computing device shown in FIG. 1 , having a plurality of servers managing data requests from a plurality of clients prior to migration.
  • FIG. 8 is a block diagram of the host shown in FIG. 7 during migration of one of the servers to a new host.
  • FIG. 9 is a block diagram of hosts shown in FIG. 8 after migration of one of the servers.
  • Embodiments described herein provide a notification mechanism to inform applications and/or services of a status of backend servers (e.g., servers 702 ). For example, embodiments operate to reduce, prevent, or avoid performance degradation introduced by servers 702 undergoing migration.
  • servers 702 are implemented as virtual machines (VMs 235 ) processing data requests distributed by one or more virtual networking load balancers (e.g., load balancing modules 308 ) on a host computing device 100 .
  • VMs 235 virtual machines
  • load balancers e.g., load balancing modules 308
  • VM migration information Prior to migration of at least one of servers 702 , VM migration information is proactively fed to one or more load balancing modules 308 to enable load balancing modules 308 to adjust distribution of the data requests to servers 702 immediately before the migration process commences. For example, load balancing modules 308 reduce a load on the VM 235 to be migrated thereby reducing a duration of the migration. During migration, load balancing modules 308 re-distribute loads among the other servers 702 to ensure sufficient resources are allocated to the data requests. Such elastic redirection of the data requests results in better resource provisioning, less service unavailability, reduced migration time, reduced or avoided performance degradation, and few or no aborted connections. Further, migration downtime may also be reduced as the remaining states to be checkpointed during migration are also reduced.
  • load balancing modules 308 Upon completion of the migration, load balancing modules 308 are notified of the completion and re-adjust distribution of the data requests. For example, load balancing modules 308 increase the load on the migrated VM 235 .
  • aspects of the disclosure are not limited to any particular load balancing technique. Rather, embodiments are operable with any load balancing technique such as dynamic weight-based algorithms that additionally factor in other information such as the loads on the remaining available servers 702 and system service level agreements (SLAs). This helps to prevent situations where the remaining available servers 702 become overloaded.
  • load balancing technique such as dynamic weight-based algorithms that additionally factor in other information such as the loads on the remaining available servers 702 and system service level agreements (SLAs). This helps to prevent situations where the remaining available servers 702 become overloaded.
  • SLAs system service level agreements
  • embodiments described herein may be integrated with other dynamic application delivery control methodologies to obtain accurate status information regarding backend servers 702 .
  • aspects of the disclosure are operable, and may be integrated, with any data-intensive, distributed systems that dispatch data requests to a cluster of backend servers 702 .
  • Such distributed systems may include cloud-based products and services for mission-critical and latency-sensitive workloads.
  • embodiments are operable with Hadoop or other distributed computing systems, memcached or other distributed memory object caching systems, fault tolerant systems, and high availability systems that deploy multiple servers 702 for redundancy.
  • Such systems benefit from the accurate knowledge of migration (e.g., live migration) in virtual data centers provided by aspects of this disclosure.
  • FIG. 1 is a block diagram of exemplary host computing device 100 .
  • Host computing device 100 includes a processor 102 for executing instructions.
  • executable instructions are stored in a memory 104 .
  • Memory 104 is any device allowing information, such as executable instructions and/or other data, to be stored and retrieved.
  • memory 104 may include one or more random access memory (RAM) modules, flash memory modules, hard disks, solid state disks, and/or optical disks.
  • RAM random access memory
  • Host computing device 100 may include a user interface device 110 for receiving data from a user 108 and/or for presenting data to user 108 .
  • User 108 may interact indirectly with host computing device 100 via another computing device such as VMware's vCenter Server or other management device.
  • user interface device 110 operates to receive data from user 108
  • another device e.g., a presentation device
  • user interface device 110 has a single component, such as a touch screen, that functions to both output data to user 108 and receive data from user 108 .
  • user interface device 110 operates as the presentation device for presenting information to user 108 .
  • Host computing device 100 also includes a network communication interface 112 , which enables host computing device 100 to communicate with a remote device (e.g., another computing device) via a communication medium, such as a wired or wireless packet network.
  • host computing device 100 may transmit and/or receive data via network communication interface 112 .
  • User interface device 110 and/or network communication interface 112 may be referred to collectively as an input interface and may be configured to receive information from user 108 .
  • Aspects of the disclosure are operable with any quantity of general purpose or dedicated network communication interfaces 112 .
  • Host computing device 100 further includes a storage interface 116 that enables host computing device 100 to communicate with one or more datastores, which store virtual disk images, software applications, and/or any other data suitable for use with the methods described herein.
  • storage interface 116 couples host computing device 100 to a storage area network (SAN) (e.g., a Fibre Channel network) and/or to a network-attached storage (NAS) system (e.g., via a packet network).
  • SAN storage area network
  • NAS network-attached storage
  • the storage interface 116 may be integrated with network communication interface 112 . Aspects of the disclosure are operable with any quantity of storage interfaces 116 .
  • FIG. 2 depicts a block diagram of virtual machines 235 1 , 235 2 . . . 235 N that are instantiated on host computing device 100 , which may be referred to as a host 314 .
  • Host computing device 100 includes a hardware platform 205 , such as an x86 architecture platform.
  • Hardware platform 205 may include processor 102 , memory 104 , network communication interface 112 , user interface device 110 , and other input/output (I/O) devices, such as a presentation device 106 (shown in FIG. 1 ).
  • a virtualization software layer also referred to hereinafter as a hypervisor 210 , is installed on top of hardware platform 205 .
  • the virtualization software layer supports a virtual machine execution space 230 within which multiple virtual machines (VMs 235 1 - 235 N ) may be concurrently instantiated and executed.
  • Hypervisor 210 includes a device driver layer 215 , and maps physical resources of hardware platform 205 (e.g., processor 102 , memory 104 , network communication interface 112 , and/or user interface device 110 ) to “virtual” resources of each of VMs 235 1 - 235 N such that each of VMs 235 1 - 235 N has its own virtual hardware platform (e.g., a corresponding one of virtual hardware platforms 240 1 - 240 N ), each virtual hardware platform having its own emulated hardware (such as a processor 245 , a memory 250 , a network communication interface 255 , a user interface device 260 and other emulated I/O devices in VM 235 1 ).
  • hardware platform 205 e.g., processor 102 , memory 104 , network communication interface 112 , and
  • Hypervisor 210 may manage (e.g., monitor, initiate, and/or terminate) execution of VMs 235 1 - 235 N according to policies associated with hypervisor 210 , such as a policy specifying that VMs 235 1 - 235 N are to be automatically restarted upon unexpected termination and/or upon initialization of hypervisor 210 .
  • hypervisor 210 may manage execution VMs 235 1 - 235 N based on requests received from a device other than host computing device 100 . For example, hypervisor 210 may receive an execution instruction specifying the initiation of execution of first VM 235 1 from a management device via network communication interface 112 and execute the execution instruction to initiate execution of first VM 235 1 .
  • memory 250 in first virtual hardware platform 240 1 includes a virtual disk that is associated with or “mapped to” one or more virtual disk images stored in memory 104 (e.g., a hard disk or solid state disk) of host computing device 100 .
  • the virtual disk image represents a file system (e.g., a hierarchy of directories and files) used by first virtual machine 235 1 in a single file or in a plurality of files, each of which includes a portion of the file system.
  • virtual disk images may be stored in memory 104 of one or more remote computing devices 100 , such as in a storage area network (SAN) configuration. In such embodiments, any quantity of virtual disk images may be stored by the remote computing devices 100 .
  • SAN storage area network
  • Device driver layer 215 includes, for example, a communication interface driver 220 that interacts with network communication interface 112 to receive and transmit data from, for example, a local area network (LAN) connected to host computing device 100 .
  • Communication interface driver 220 also includes a virtual bridge 225 that simulates the broadcasting of data packets in a physical network received from one communication interface (e.g., network communication interface 112 ) to other communication interfaces (e.g., the virtual communication interfaces of VMs 235 1 - 235 N ).
  • Each virtual communication interface for each VM 235 1 - 235 N may be assigned a unique virtual Media Access Control (MAC) address that enables virtual bridge 225 to simulate the forwarding of incoming data packets from network communication interface 112 .
  • network communication interface 112 is an Ethernet adapter that is configured in “promiscuous mode” such that all Ethernet packets that it receives (rather than just Ethernet packets addressed to its own physical MAC address) are passed to virtual bridge 225 , which, in turn, is able to further forward the Ethernet packets to VMs 235 1 - 235 N .
  • This configuration enables an Ethernet packet that has a virtual MAC address as its destination address to properly reach the VM 235 in host computing device 100 with a virtual communication interface that corresponds to such virtual MAC address.
  • Virtual hardware platform 240 1 may function as an equivalent of a standard x86 hardware architecture such that any x86-compatible desktop operating system (e.g., Microsoft WINDOWS brand operating system, LINUX brand operating system, SOLARIS brand operating system, NETWARE, or FREEBSD) may be installed as guest operating system (OS) 265 in order to execute applications 270 for an instantiated VM, such as first VM 235 1 .
  • Virtual hardware platforms 240 1 - 240 N may be considered to be part of virtual machine monitors (VMM) 275 1 - 275 N that implement virtual system support to coordinate operations between hypervisor 210 and corresponding VMs 235 1 - 235 N .
  • VMM virtual machine monitors
  • virtual hardware platforms 240 1 - 240 N may also be considered to be separate from VMMs 275 1 - 275 N
  • VMMs 275 1 - 275 N may be considered to be separate from hypervisor 210 .
  • hypervisor 210 One example of hypervisor 210 that may be used in an embodiment of the disclosure is included as a component in VMware's ESX brand software, which is commercially available from VMware, Inc.
  • FIG. 3 is a block diagram of an exemplary computing device, such as host computing device 100 shown in FIG. 1 , for implementing a migration module 306 and one or more load balancing modules 308 .
  • Host computing device 100 represents any device executing instructions (e.g., as application programs, operating system functionality, or both) to implement the operations and functionality described herein. For example, host computing device 100 executes instructions to implement the operations illustrated and described with reference to FIG. 4 and FIG. 5 .
  • Host computing device 100 may include any computing device or processing unit. For example, host computing device 100 may represent a group of processing units or other computing devices, such as in a cloud computing configuration.
  • Host computing device 100 has at least one processor such as processor 102 and a memory area 304 such as memory 104 .
  • Processor 102 includes any quantity of processing units. In some embodiments, multiple processors 102 provide opportunities for parallelism, such as enabling tens or hundreds of VMs to execute behind one or more load balancers.
  • Processor 102 is programmed to execute computer-executable instructions for implementing aspects of the disclosure. The instructions may be performed by processor 102 or by multiple processors executing within host computing device 100 , or performed by a processor external to host computing device 100 . In some embodiments, processor 102 is programmed to execute instructions such as those illustrated in the figures to reduce performance degradation of VMs 235 during migration. The instructions may be embodied on one or more computer-readable storage media such as memory 104 .
  • Memory area 304 includes any quantity of computer-readable media associated with or accessible by host computing device 100 .
  • Memory area 304 or portions thereof, may be internal to host computing device 100 , external to host computing device 100 , or both.
  • memory area 304 stores migration module 306 and one or more load balancing modules 308 . While each host computing device 100 is described in some embodiments herein as containing one migration module 306 , each host computing device 100 in other embodiments may include multiple migration modules 306 .
  • Migration module 306 operates to detect, monitor, or otherwise manage migration of one or more VMs 235 accessible to host computing device 100 . For example, migration module 306 detects, or is notified of, an upcoming migration of one of VMs 235 from host computing device 100 (e.g., a first host) to another computing device (e.g., a second host).
  • Migration module 306 communicates with load balancing modules 308 , as described herein, to mitigate any performance issues that may arise during the migration. While migration module 306 may be local to a host such as host computing device 100 in some embodiments, load balancing modules 308 may communicate with multiple hosts. For example, one of load balancing modules 308 in a first host (e.g., host computing device 100 ) may communicate with one of VMs 235 that has migrated from the first host to a second host using layer 3 connections (see FIGS. 7 , 8 , and 9 below).
  • a first host e.g., host computing device 100
  • layer 3 connections see FIGS. 7 , 8 , and 9 below.
  • Load balancing modules 308 operate to distribute data requests received from one or more clients 310 to one or more of VMs 235 .
  • Clients 310 represent any entity requesting data and/or providing data via the data requests.
  • clients 310 may represent web browsers executing on client computing devices.
  • VMs 235 represent servers 702 such as web servers for responding to the data requests (e.g., requests for content) from clients 310 . While VMs 235 are illustrated in FIG. 3 as being contained within host computing device 100 , aspects of the disclosure are operable with one of more of VMs 235 being located in other hosts.
  • An exemplary load balancing module 308 includes the vShield traffic load balancer by VMware, Inc.
  • load balancing modules 308 may attempt to evenly distribute the data requests across VMs 235 , or may weight distribution of the data requests based on characteristics of each VM 235 such as resource availability, resource capability, load, hardware version, compatibility, etc.
  • FIG. 4 is a flowchart of an exemplary method 400 performed by load balancing modules 308 to adjust distribution of data requests responsive to a migration notification. While method 400 is described with reference to execution by one or more of load balancing modules 308 (shown in FIG. 3 ), it is contemplated that method 400 may be performed by any component or module. Further, while FIG. 4 is described with reference to one load balancing module 308 , the operations in FIG. 4 are operable with a plurality of load balancing modules 308 .
  • load balancing module 308 executes on a first host (e.g., host computing device 100 ) to distribute data requests received from one or more of clients 310 or other computing devices to VMs 235 accessible to the first host. While distributing the data requests, load balancing module 308 listens for or is otherwise configured to receive a migration notification from migration module 306 . For example, load balancing module 308 registers with migration module 306 to receive the migration notifications. In some embodiments, registration includes load balancing module 308 identifying migration module 306 , and providing migration module 306 with identifiers of load balancing module 308 and VMs 235 accessible to load balancing module 308 . In this manner, load balancing module 308 receives migration notifications relating only to VMs 235 accessible to load balancing module 308 .
  • a first host e.g., host computing device 100
  • load balancing module 308 listens for or is otherwise configured to receive a migration notification from migration module 306 .
  • the migration notification indicates that at least one of VMs 235 will migrate from the first host to another host (e.g., second host).
  • An exemplary migration notification identifies VM 235 to be migrated, a scheduled time for the migration to commence (e.g., described absolutely or relatively), and other details about the migration such as expected duration, identifier of the second host, etc.
  • Load balancing module 308 receives the migration notification before the actual migration occurs or commences to enable load balancing module 308 to prepare for the migration.
  • the migration notifications take the form of interrupts or event notifications, and may be received by connection controller algorithms associated with load balancing modules 308 .
  • the migration notification may be in a form that uses protocols like hypertext transfer protocol (HTTP) or other application layer message exchange protocols.
  • HTTP hypertext transfer protocol
  • load balancing modules 308 performs operations to reduce the load on VM 235 to be migrated. Aspects of the disclosure are operable with any operations performed that result in a decreased current and/or future load on VM 235 to be migrated.
  • load balancing module 308 reduces the quantity of data requests distributed to VM 235 to be migrated at 406 .
  • load balancing module 308 reduces, or entirely prohibits, establishment of new connections to VM 235 to be migrated.
  • VM 235 to be migrated continues to service existing connections. In this manner, the load on VM 235 to be migrated is at least contained, or reduced in some embodiments.
  • the load, and load reduction, on VM 235 to be migrated may be measured absolutely, or relative to the loads (e.g., new connections established) on other VMs 235 accessible to the first host.
  • Pre-copy-based live migration includes a pre-copy phase in which the virtual memory of a source VM 235 (e.g., on a first host) is copied to a destination VM 235 (e.g., on a second host), and a stun phase in which non-memory state is similarly transferred and restored.
  • the pre-copy phase may take several iterations as memory may change during the pre-copy phase (e.g., because the source VM 235 remains live), thus prompting another copy attempt.
  • Reducing the load on the VM 235 reduces the likelihood the memory changes during the pre-copy phase. As such, the live migration completes faster when the virtual memory (and non-memory state) remains static (and smaller).
  • aspects of the disclosure are operable, however, with any form or type of migration.
  • load balancing module 308 acknowledges receipt of the migration notification from migration module 306 .
  • migration module 306 may then commence the migration process, or signal another module to commence the migration process. If, however, migration module 306 does not receive the acknowledgement from load balancing module 308 (e.g., within a pre-defined timeout duration), migration module 306 logs the absence of the acknowledgement and commences the migration process.
  • load balancing module 308 continues to distribute data requests to VMs 235 other than VM 235 to be migrated while listening for, or otherwise being configured to receive, an updated migration notification from migration module 306 .
  • the updated migration notification indicates that migration of VM 235 has completed.
  • the updated migration notification may take any form.
  • the contents of the updated migration notification may appear similar to the migration notification that previously indicated an upcoming migration, with the exception that a flag or bit in the updated migration notification is set to indicate that migration has completed.
  • the updated migration notification bears little or no similarity to the migration notification.
  • the updated migration notification may represent a short message indicating that the migrated VM 235 is available to process an increased quantity of data requests from clients 310 .
  • load balancing module 308 Upon receipt of the updated migration notification at 410 , load balancing module 308 increases the quantity of data requests distributed to the migrated VM 235 at 412 .
  • Still other embodiments contemplate no updated migration notification or other communication being sent from migration module 306 to load balancing module 308 .
  • load balancing module 308 sets a timer or alarm that activates when the migration is expected to be complete. Upon activation of the alarm, load balancing module 308 automatically increases the quantity of data requests distributed to migrated VM 235 .
  • Migration module 306 or load balancing module 308 may inflate the estimated duration, or include some form of grace period, to account for unexpected delays occurring during migration.
  • migration module 306 may send updated duration estimates to load balancing module 308 to enable load balancing module 308 to reset or otherwise adjust the timer or alarm (e.g., if migration is occurring slower or faster than expected).
  • FIG. 5 is a flowchart of an exemplary method 500 performed by migration module 306 to notify registered load balancing modules 308 of an upcoming migration of one of VMs 235 to a new host. While method 500 is described with reference to execution by migration module 306 (shown in FIG. 3 ), it is contemplated that method 500 may be performed by any component or module. Further, the operations illustrated and described with reference to FIG. 5 may be implemented as instructions that, when executed by processor 102 , cause processor 102 to improve load balancing performance during migration of VMs 235 .
  • migration module 306 managing one migration by sending migration notifications.
  • Migration module 306 may handle multiple concurrent migrations.
  • migration module 306 may represent a multi-threaded application in which each thread manages at least one migration.
  • Migration module 306 is configured to detect or be notified of upcoming migrations of VMs 235 from the first host to another host (e.g., the second host). For example, migration module 306 receives a message from an administrator, receives a message from one or more of VMs 235 , and/or accesses a migration schedule or other data indicating when migrations will occur. In this example, the migration schedule identifies upcoming migrations, VMs 235 affected, estimated migration durations, and other data.
  • migration module 306 When migration module 306 detects an upcoming migration affecting VM 235 accessible to the first host at 502 , migration module 306 identifies one or more of load balancing modules 308 affected by the migration at 504 . For example, migration module 306 searches or scans a set of registered load balancing modules 308 to identify affected load balancing modules 308 (e.g., load balancing modules 308 that are distributing data requests to VM 235 to be migrated).
  • load balancing modules 308 e.g., load balancing modules 308 that are distributing data requests to VM 235 to be migrated.
  • migration module 306 sends the migration notification to each of the identified load balancing modules 308 before migration commences.
  • the identified load balancing modules 308 respond to the migration notification by reducing a quantity of data requests sent to VM 235 to be migrated.
  • Migration module 306 sends the migration notification at some time prior to commencement of migration to allow load balancing modules 308 time to react, although the exact amount of time prior may vary and may be dependent on the expected response time of load balancing modules 308 .
  • the migration notification is sent at least a tenth of a second prior to the migration occurring.
  • migration module 306 When migration module 306 detects completion of migration at 508 , migration module 306 sends an updated migration notification to the affected load balancing modules 308 at 510 to indicate completion of the migration. Upon receipt of the updated migration notification, the load balancing modules 308 respond to the updated migration notification by increasing a quantity of data requests sent to the migrated VM 235 .
  • the updated migration notification may further include a description of the resources available to, and/or shared by, the first host and the second host, along with any other information relevant to a load balancing policy applied by load balancing modules 308 .
  • FIG. 6 is a sequence diagram illustrating interaction among migration module 306 , load balancing module 308 , and one or more of VMs 235 .
  • migration module 306 , load balancing modules 308 , and VMs 235 are contained with, or otherwise accessible by, a host such as host computing device 100 .
  • Migration module 306 detects or is notified of an upcoming migration of at least one of VMs 235 .
  • Migration module 306 identifies the registered load balancing modules 308 (e.g., load balancing modules 308 possibly affected by the upcoming migration) and sends a migration notification to each of the identified load balancing modules 308 before the migration.
  • load balancing modules 308 Upon receipt of the migration notification or otherwise responsive to the migration notification, load balancing modules 308 reduce a load on VM 235 to be migrated, such as described herein. In some embodiments, load balancing modules 308 reduce a quantity of the data requests distributed to VM 235 to be migrated by, for example, reducing establishment of new connections to VM 235 to be migrated while maintaining existing connections to VM 235 to be migrated.
  • migration module 306 Upon completion of the migration, migration module 306 sends an updated migration notification or otherwise notifies load balancing modules 308 of completion of the migration.
  • load balancing modules 308 increase a load on the migrated VM 235 , such as described herein. In some embodiments, load balancing modules 308 gradually increase a quantity of the data requests distributed to the migrated VM 235 until the migrated VM 235 handles a load similar to other VMs 235 .
  • FIG. 7 is a block diagram of Host # 1 , such as host computing device 100 shown in FIG. 1 , having a plurality of servers 702 managing data requests from a plurality of clients 310 prior to migration.
  • the plurality of clients 310 include client # 1 and client # 2 through client #M.
  • Clients 310 communicate with Host # 1 via a network.
  • Network represents any means for communication between clients 310 and Host # 1 .
  • Aspects of the disclosure are operable with any network type or configuration. For example, aspects of the disclosure are operable with local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), the Internet, or any combination thereof.
  • LANs local area networks
  • MANs metropolitan area networks
  • WANs wide area networks
  • the Internet or any combination thereof.
  • Host # 1 includes migration module 306 and load balancing modules 308 .
  • Load balancing modules 308 distribute data requests received from clients 310 to the plurality of servers 702 .
  • the plurality of servers 702 includes server # 1 and server # 2 through server #P.
  • migration module 306 determines or is informed that server # 2 is scheduled to be migrated to Host # 2 .
  • Migration module 306 notifies load balancing modules 308 before the migration occurs.
  • FIG. 8 is a block diagram of Host # 1 shown in FIG. 7 during migration of one of servers 702 to Host # 2 .
  • server # 2 is under migration from Host # 1 to Host # 2 .
  • Load balancing modules 308 continue to distribute data requests from clients 310 to servers 702 . However, load balancing modules 308 reduce, or completely eliminate, a quantity of the data requests sent to server # 2 during the migration.
  • FIG. 9 is a block diagram of Host # 1 and Host # 2 shown in FIG. 8 after migration of server # 2 .
  • the migration of server # 2 from Host # 1 to Host # 2 has completed, and server # 2 is now located on Host # 2 .
  • Migration module 306 has informed load balancing modules 308 of completion of the migration, and Host # 1 can access server # 2 same as before the migration.
  • load balancing modules 308 increase a quantity of the data requests distributed to server # 2 until server # 2 is treated as it was prior to the migration.
  • migration module 306 notifies load balancing modules 308 of the resource capabilities. Load balancing modules 308 use the resource capabilities as input to load balancing algorithms implemented by load balancing modules 308 .
  • Host # 1 and Host # 2 use the same Internet Protocol (IP) address, so there are no changes to connections managed by load balancing modules 308 .
  • IP Internet Protocol
  • aspects of the disclosure respond to failures such as failure of the migration process and failure of one or more of load balancing modules 308 .
  • the hypervisor detects failure of the migration process (e.g., after receiving an error code or after a pre-defined timeout duration elapses)
  • migration module 306 sends notification of the failure to the affected load balancing modules 308 .
  • load balancing modules 308 put the affected VM 235 back in a queue for dispatching.
  • load balancing module 308 If one of load balancing modules 308 reboots, load balancing module 308 re-registers with migration module 306 after coming online again. Load balancing module 308 also flushes old migration state information from prior to the failure and obtains new migration state information.
  • An exemplary, non-limiting migration notification may have the following format: Version (one octet for a version number) and VM-uuid (sixteen octets for a UUID of the VM 235 generating the event).
  • Version one octet for a version number
  • VM-uuid sixteen octets for a UUID of the VM 235 generating the event.
  • TLV type-length-value
  • Each of the TLV elements may have the following exemplary format: Type (one octet for an integer value identifying the type of information), Length (one octet for a length of the value field to follow, in octets), and Value (one or more octets for a variable-length octet-string containing specific TLV information).
  • Type one octet for an integer value identifying the type of information
  • Length one octet for a length of the value field to follow, in octets
  • Value one or more octets for a variable-length octet-string containing specific TLV information.
  • An exemplary start event may be represented as Type: 0, Length: 5, and Value: “start”.
  • An exemplary finish event may be represented as Type: 0, Length: 6, and Value: “finish”.
  • An exemplary migration notification format may also support vendor-specific extensions. For example, type 255 may be reserved for such extensions.
  • An exemplary extension format may be defined as: Type (one octet of 255 ), Length (one octet), and Value (four octets for Extension-ID, one or more octets for Extension-value).
  • the operations described herein may be performed by a computer or computing device.
  • the computing devices communicate with each other through an exchange of messages and/or stored data. Communication may occur using any protocol or mechanism over any wired or wireless connection.
  • a computing device may transmit a message as a broadcast message (e.g., to an entire network and/or data bus), a multicast message (e.g., addressed to a plurality of other computing devices), and/or as a plurality of unicast messages, each of which is addressed to an individual computing device.
  • messages are transmitted using a network protocol that does not guarantee delivery, such as User Datagram Protocol (UDP). Accordingly, when transmitting a message, a computing device may transmit multiple copies of the message, enabling the computing device to reduce the risk of non-delivery.
  • UDP User Datagram Protocol
  • Exemplary computer readable media include flash memory drives, digital versatile discs (DVDs), compact discs (CDs), floppy disks, and tape cassettes.
  • Computer readable media comprise computer storage media and communication media.
  • Computer storage media include volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data.
  • Computer storage media are tangible, exclude propagated data signals, and are mutually exclusive to communication media.
  • Exemplary computer storage media include hard disks, flash drives, and other solid-state memory.
  • communication media typically embody computer readable instructions, data structures, program modules, or other data in a modulated data signal such as a carrier wave or other transport mechanism and include any information delivery media.
  • embodiments of the disclosure are operative with numerous other general purpose or special purpose computing system environments or configurations.
  • Examples of well-known computing systems, environments, and/or configurations that may be suitable for use with aspects of the disclosure include, but are not limited to, mobile computing devices, personal computers, server computers, hand-held or laptop devices, multiprocessor systems, gaming consoles, microprocessor-based systems, set top boxes, programmable consumer electronics, mobile telephones, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
  • Embodiments of the disclosure may be described in the general context of computer-executable instructions, such as program modules, executed by one or more computers or other devices.
  • the computer-executable instructions may be organized into one or more computer-executable components or modules.
  • program modules include, but are not limited to, routines, programs, objects, components, and data structures that perform particular tasks or implement particular abstract data types.
  • aspects of the disclosure may be implemented with any number and organization of such components or modules. For example, aspects of the disclosure are not limited to the specific computer-executable instructions or the specific components or modules illustrated in the figures and described herein.
  • Other embodiments of the disclosure may include different computer-executable instructions or components having more or less functionality than illustrated and described herein.
  • aspects of the disclosure transform a general-purpose computer into a special-purpose computing device when programmed to execute the instructions described herein.
  • the operations illustrated in the figures may be implemented as software instructions encoded on a computer readable medium, in hardware programmed or designed to perform the operations, or both.
  • aspects of the disclosure may be implemented as a system on a chip or other circuitry including a plurality of interconnected, electrically conductive elements.

Abstract

Embodiments perform migration-aware load balancing in virtual data centers. One or more load balancing modules in a host distribute data requests from clients to one or more servers implemented as virtual machines (VMs). The load balancing modules are notified of VM migration (e.g., live migration) prior to the VM migration and reduce the load on the VM to be migrated. After being notified of completion of VM migration, the load balancing modules increase the load on the migrated VM. Such migration notifications enable the load balancing modules to prevent or reduce performance degradation and migration duration, among other aspects.

Description

    BACKGROUND
  • Some existing systems deploy web servers as virtual machines (VMs) running on a single physical host. The host may have one, or a few, front-end virtual load balancers that operate to distribute traffic among the web servers so that no single server becomes a performance bottleneck. Operation of the load balancers is affected by surges in traffic loads and changing conditions of the web servers. For example, in a virtual data center, the VMs implementing the web servers are frequently migrated across physical hosts (e.g., due to address failures, congestion, or load rebalancing).
  • Live migration of VMs is a form of migration that allows high availability, transparent mobility, and consolidation. With live migration, running VMs are moved between hosts without disconnecting services executing inside the VMs. With existing systems, however, the load balancers are unaware of the underlying migration states of the VMs. For example, the load balancers treat the VMs undergoing migration no differently from the VMs that are not being migrated. As a result, the load balancers continuously dispatch new connections to the VMs being migrated introducing performance challenges into the migration. Exemplary performance challenges include, but are not limited to, an increase in memory to copy during a pre-copy phase of migration, memory-related bookkeeping, and additional downtime for saving and restoring non-memory states.
  • Some of the existing load balancing algorithms track web server status (e.g., server load, connection count, response time, etc.) by, for example, passively probing the web servers. This technique, however, only detects performance degradation after the performance degradation has occurred. As such, it is difficult for existing load balancers to respond (e.g., redirect traffic elsewhere) to short resource spike usage scenarios introduced by migration of VMs.
  • SUMMARY
  • One or more embodiments described herein reduce performance degradation during a migration or other operation affecting virtual machines (VMs). A migration notification is sent, before migration of one of the VMs, to one or more load balancing modules distributing data requests to the VMs. In response to the migration notification, the load balancing modules reduce the load on the VM to be migrated. In some embodiments, the load balancing modules reduce the load by reducing a quantity of new connections established to the VM while maintaining the existing connections. After migration completes, the load balancing modules increase the load on the newly migrated VM.
  • This summary introduces a selection of concepts that are described in more detail below. This summary is not intended to identify essential features or to limit in any way the scope of the claimed subject matter.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a block diagram of an exemplary host computing device.
  • FIG. 2 is a block diagram of virtual machines (VMs) that are instantiated on a computing device, such as the host computing device shown in FIG. 1.
  • FIG. 3 is a block diagram of an exemplary computing device, such as the host computing device shown in FIG. 1, for implementing the migration module and one or more load balancing modules.
  • FIG. 4 is a flowchart of an exemplary method performed by the load balancing modules to adjust distribution of data requests responsive to a migration notification.
  • FIG. 5 is a flowchart of an exemplary method performed by the migration module to notify registered load balancing modules of an upcoming migration of a VM to a new host.
  • FIG. 6 is a sequence diagram illustrating interaction among the migration module, load balancing module, and one or more VMs.
  • FIG. 7 is a block diagram of a host, such as the host computing device shown in FIG. 1, having a plurality of servers managing data requests from a plurality of clients prior to migration.
  • FIG. 8 is a block diagram of the host shown in FIG. 7 during migration of one of the servers to a new host.
  • FIG. 9 is a block diagram of hosts shown in FIG. 8 after migration of one of the servers.
  • Corresponding reference characters indicate corresponding parts throughout the drawings.
  • DETAILED DESCRIPTION
  • Embodiments described herein provide a notification mechanism to inform applications and/or services of a status of backend servers (e.g., servers 702). For example, embodiments operate to reduce, prevent, or avoid performance degradation introduced by servers 702 undergoing migration. In some embodiments, servers 702 are implemented as virtual machines (VMs 235) processing data requests distributed by one or more virtual networking load balancers (e.g., load balancing modules 308) on a host computing device 100.
  • Prior to migration of at least one of servers 702, VM migration information is proactively fed to one or more load balancing modules 308 to enable load balancing modules 308 to adjust distribution of the data requests to servers 702 immediately before the migration process commences. For example, load balancing modules 308 reduce a load on the VM 235 to be migrated thereby reducing a duration of the migration. During migration, load balancing modules 308 re-distribute loads among the other servers 702 to ensure sufficient resources are allocated to the data requests. Such elastic redirection of the data requests results in better resource provisioning, less service unavailability, reduced migration time, reduced or avoided performance degradation, and few or no aborted connections. Further, migration downtime may also be reduced as the remaining states to be checkpointed during migration are also reduced.
  • Upon completion of the migration, load balancing modules 308 are notified of the completion and re-adjust distribution of the data requests. For example, load balancing modules 308 increase the load on the migrated VM 235.
  • Aspects of the disclosure are not limited to any particular load balancing technique. Rather, embodiments are operable with any load balancing technique such as dynamic weight-based algorithms that additionally factor in other information such as the loads on the remaining available servers 702 and system service level agreements (SLAs). This helps to prevent situations where the remaining available servers 702 become overloaded.
  • Further, embodiments described herein may be integrated with other dynamic application delivery control methodologies to obtain accurate status information regarding backend servers 702. Additionally, while described with reference to load balancing, aspects of the disclosure are operable, and may be integrated, with any data-intensive, distributed systems that dispatch data requests to a cluster of backend servers 702. Such distributed systems may include cloud-based products and services for mission-critical and latency-sensitive workloads. For example, embodiments are operable with Hadoop or other distributed computing systems, memcached or other distributed memory object caching systems, fault tolerant systems, and high availability systems that deploy multiple servers 702 for redundancy. Such systems benefit from the accurate knowledge of migration (e.g., live migration) in virtual data centers provided by aspects of this disclosure.
  • FIG. 1 is a block diagram of exemplary host computing device 100. Host computing device 100 includes a processor 102 for executing instructions. In some embodiments, executable instructions are stored in a memory 104. Memory 104 is any device allowing information, such as executable instructions and/or other data, to be stored and retrieved. For example, memory 104 may include one or more random access memory (RAM) modules, flash memory modules, hard disks, solid state disks, and/or optical disks.
  • Host computing device 100 may include a user interface device 110 for receiving data from a user 108 and/or for presenting data to user 108. User 108 may interact indirectly with host computing device 100 via another computing device such as VMware's vCenter Server or other management device. In some embodiments, user interface device 110 operates to receive data from user 108, while another device (e.g., a presentation device) operates to present data to user 108. In other embodiments, user interface device 110 has a single component, such as a touch screen, that functions to both output data to user 108 and receive data from user 108. In such embodiments, user interface device 110 operates as the presentation device for presenting information to user 108.
  • Host computing device 100 also includes a network communication interface 112, which enables host computing device 100 to communicate with a remote device (e.g., another computing device) via a communication medium, such as a wired or wireless packet network. For example, host computing device 100 may transmit and/or receive data via network communication interface 112. User interface device 110 and/or network communication interface 112 may be referred to collectively as an input interface and may be configured to receive information from user 108. Aspects of the disclosure are operable with any quantity of general purpose or dedicated network communication interfaces 112. For example, there may be a plurality of network communication interfaces 112 for handling management traffic, high-throughput converged network/storage traffic, and live migration.
  • Host computing device 100 further includes a storage interface 116 that enables host computing device 100 to communicate with one or more datastores, which store virtual disk images, software applications, and/or any other data suitable for use with the methods described herein. In exemplary embodiments, storage interface 116 couples host computing device 100 to a storage area network (SAN) (e.g., a Fibre Channel network) and/or to a network-attached storage (NAS) system (e.g., via a packet network). The storage interface 116 may be integrated with network communication interface 112. Aspects of the disclosure are operable with any quantity of storage interfaces 116.
  • FIG. 2 depicts a block diagram of virtual machines 235 1, 235 2 . . . 235 N that are instantiated on host computing device 100, which may be referred to as a host 314. Host computing device 100 includes a hardware platform 205, such as an x86 architecture platform. Hardware platform 205 may include processor 102, memory 104, network communication interface 112, user interface device 110, and other input/output (I/O) devices, such as a presentation device 106 (shown in FIG. 1). A virtualization software layer, also referred to hereinafter as a hypervisor 210, is installed on top of hardware platform 205.
  • The virtualization software layer supports a virtual machine execution space 230 within which multiple virtual machines (VMs 235 1-235 N) may be concurrently instantiated and executed. Hypervisor 210 includes a device driver layer 215, and maps physical resources of hardware platform 205 (e.g., processor 102, memory 104, network communication interface 112, and/or user interface device 110) to “virtual” resources of each of VMs 235 1-235 N such that each of VMs 235 1-235 N has its own virtual hardware platform (e.g., a corresponding one of virtual hardware platforms 240 1-240 N), each virtual hardware platform having its own emulated hardware (such as a processor 245, a memory 250, a network communication interface 255, a user interface device 260 and other emulated I/O devices in VM 235 1). Hypervisor 210 may manage (e.g., monitor, initiate, and/or terminate) execution of VMs 235 1-235 N according to policies associated with hypervisor 210, such as a policy specifying that VMs 235 1-235 N are to be automatically restarted upon unexpected termination and/or upon initialization of hypervisor 210. In addition, or alternatively, hypervisor 210 may manage execution VMs 235 1-235 N based on requests received from a device other than host computing device 100. For example, hypervisor 210 may receive an execution instruction specifying the initiation of execution of first VM 235 1 from a management device via network communication interface 112 and execute the execution instruction to initiate execution of first VM 235 1.
  • In some embodiments, memory 250 in first virtual hardware platform 240 1 includes a virtual disk that is associated with or “mapped to” one or more virtual disk images stored in memory 104 (e.g., a hard disk or solid state disk) of host computing device 100. The virtual disk image represents a file system (e.g., a hierarchy of directories and files) used by first virtual machine 235 1 in a single file or in a plurality of files, each of which includes a portion of the file system. In addition, or alternatively, virtual disk images may be stored in memory 104 of one or more remote computing devices 100, such as in a storage area network (SAN) configuration. In such embodiments, any quantity of virtual disk images may be stored by the remote computing devices 100.
  • Device driver layer 215 includes, for example, a communication interface driver 220 that interacts with network communication interface 112 to receive and transmit data from, for example, a local area network (LAN) connected to host computing device 100. Communication interface driver 220 also includes a virtual bridge 225 that simulates the broadcasting of data packets in a physical network received from one communication interface (e.g., network communication interface 112) to other communication interfaces (e.g., the virtual communication interfaces of VMs 235 1-235 N). Each virtual communication interface for each VM 235 1-235 N, such as network communication interface 255 for first VM 235 1, may be assigned a unique virtual Media Access Control (MAC) address that enables virtual bridge 225 to simulate the forwarding of incoming data packets from network communication interface 112. In an embodiment, network communication interface 112 is an Ethernet adapter that is configured in “promiscuous mode” such that all Ethernet packets that it receives (rather than just Ethernet packets addressed to its own physical MAC address) are passed to virtual bridge 225, which, in turn, is able to further forward the Ethernet packets to VMs 235 1-235 N. This configuration enables an Ethernet packet that has a virtual MAC address as its destination address to properly reach the VM 235 in host computing device 100 with a virtual communication interface that corresponds to such virtual MAC address.
  • Virtual hardware platform 240 1 may function as an equivalent of a standard x86 hardware architecture such that any x86-compatible desktop operating system (e.g., Microsoft WINDOWS brand operating system, LINUX brand operating system, SOLARIS brand operating system, NETWARE, or FREEBSD) may be installed as guest operating system (OS) 265 in order to execute applications 270 for an instantiated VM, such as first VM 235 1. Virtual hardware platforms 240 1-240 N may be considered to be part of virtual machine monitors (VMM) 275 1-275 N that implement virtual system support to coordinate operations between hypervisor 210 and corresponding VMs 235 1-235 N. Those with ordinary skill in the art will recognize that the various terms, layers, and categorizations used to describe the virtualization components in FIG. 2 may be referred to differently without departing from their functionality or the spirit or scope of the disclosure. For example, virtual hardware platforms 240 1-240 N may also be considered to be separate from VMMs 275 1-275 N, VMMs 275 1-275 N may be considered to be separate from hypervisor 210. One example of hypervisor 210 that may be used in an embodiment of the disclosure is included as a component in VMware's ESX brand software, which is commercially available from VMware, Inc.
  • FIG. 3 is a block diagram of an exemplary computing device, such as host computing device 100 shown in FIG. 1, for implementing a migration module 306 and one or more load balancing modules 308.
  • Host computing device 100 represents any device executing instructions (e.g., as application programs, operating system functionality, or both) to implement the operations and functionality described herein. For example, host computing device 100 executes instructions to implement the operations illustrated and described with reference to FIG. 4 and FIG. 5. Host computing device 100 may include any computing device or processing unit. For example, host computing device 100 may represent a group of processing units or other computing devices, such as in a cloud computing configuration.
  • Host computing device 100 has at least one processor such as processor 102 and a memory area 304 such as memory 104. Processor 102 includes any quantity of processing units. In some embodiments, multiple processors 102 provide opportunities for parallelism, such as enabling tens or hundreds of VMs to execute behind one or more load balancers. Processor 102 is programmed to execute computer-executable instructions for implementing aspects of the disclosure. The instructions may be performed by processor 102 or by multiple processors executing within host computing device 100, or performed by a processor external to host computing device 100. In some embodiments, processor 102 is programmed to execute instructions such as those illustrated in the figures to reduce performance degradation of VMs 235 during migration. The instructions may be embodied on one or more computer-readable storage media such as memory 104.
  • Memory area 304 includes any quantity of computer-readable media associated with or accessible by host computing device 100. Memory area 304, or portions thereof, may be internal to host computing device 100, external to host computing device 100, or both.
  • In the example of FIG. 3, memory area 304 stores migration module 306 and one or more load balancing modules 308. While each host computing device 100 is described in some embodiments herein as containing one migration module 306, each host computing device 100 in other embodiments may include multiple migration modules 306. Migration module 306 operates to detect, monitor, or otherwise manage migration of one or more VMs 235 accessible to host computing device 100. For example, migration module 306 detects, or is notified of, an upcoming migration of one of VMs 235 from host computing device 100 (e.g., a first host) to another computing device (e.g., a second host). Migration module 306 communicates with load balancing modules 308, as described herein, to mitigate any performance issues that may arise during the migration. While migration module 306 may be local to a host such as host computing device 100 in some embodiments, load balancing modules 308 may communicate with multiple hosts. For example, one of load balancing modules 308 in a first host (e.g., host computing device 100) may communicate with one of VMs 235 that has migrated from the first host to a second host using layer 3 connections (see FIGS. 7, 8, and 9 below).
  • Load balancing modules 308 operate to distribute data requests received from one or more clients 310 to one or more of VMs 235. Clients 310 represent any entity requesting data and/or providing data via the data requests. For example, clients 310 may represent web browsers executing on client computing devices. In this example, VMs 235 represent servers 702 such as web servers for responding to the data requests (e.g., requests for content) from clients 310. While VMs 235 are illustrated in FIG. 3 as being contained within host computing device 100, aspects of the disclosure are operable with one of more of VMs 235 being located in other hosts. An exemplary load balancing module 308 includes the vShield traffic load balancer by VMware, Inc.
  • Aspects of the disclosure are operable with load balancing modules 308 implementing any load balancing algorithms for distributing the data requests to VMs 235. For example, load balancing modules 308 may attempt to evenly distribute the data requests across VMs 235, or may weight distribution of the data requests based on characteristics of each VM 235 such as resource availability, resource capability, load, hardware version, compatibility, etc.
  • FIG. 4 is a flowchart of an exemplary method 400 performed by load balancing modules 308 to adjust distribution of data requests responsive to a migration notification. While method 400 is described with reference to execution by one or more of load balancing modules 308 (shown in FIG. 3), it is contemplated that method 400 may be performed by any component or module. Further, while FIG. 4 is described with reference to one load balancing module 308, the operations in FIG. 4 are operable with a plurality of load balancing modules 308.
  • At 402, load balancing module 308 executes on a first host (e.g., host computing device 100) to distribute data requests received from one or more of clients 310 or other computing devices to VMs 235 accessible to the first host. While distributing the data requests, load balancing module 308 listens for or is otherwise configured to receive a migration notification from migration module 306. For example, load balancing module 308 registers with migration module 306 to receive the migration notifications. In some embodiments, registration includes load balancing module 308 identifying migration module 306, and providing migration module 306 with identifiers of load balancing module 308 and VMs 235 accessible to load balancing module 308. In this manner, load balancing module 308 receives migration notifications relating only to VMs 235 accessible to load balancing module 308.
  • The migration notification indicates that at least one of VMs 235 will migrate from the first host to another host (e.g., second host). An exemplary migration notification identifies VM 235 to be migrated, a scheduled time for the migration to commence (e.g., described absolutely or relatively), and other details about the migration such as expected duration, identifier of the second host, etc. Load balancing module 308 receives the migration notification before the actual migration occurs or commences to enable load balancing module 308 to prepare for the migration. In some embodiments, the migration notifications take the form of interrupts or event notifications, and may be received by connection controller algorithms associated with load balancing modules 308. In some embodiments (e.g., those that contemplate message exchange in protocol layers), the migration notification may be in a form that uses protocols like hypertext transfer protocol (HTTP) or other application layer message exchange protocols.
  • For example, in response to receiving the migration notification at 404, load balancing modules 308 performs operations to reduce the load on VM 235 to be migrated. Aspects of the disclosure are operable with any operations performed that result in a decreased current and/or future load on VM 235 to be migrated. In some embodiments, load balancing module 308 reduces the quantity of data requests distributed to VM 235 to be migrated at 406. For example, load balancing module 308 reduces, or entirely prohibits, establishment of new connections to VM 235 to be migrated. In this example, VM 235 to be migrated continues to service existing connections. In this manner, the load on VM 235 to be migrated is at least contained, or reduced in some embodiments. The load, and load reduction, on VM 235 to be migrated may be measured absolutely, or relative to the loads (e.g., new connections established) on other VMs 235 accessible to the first host.
  • Reducing the load on the VM 235 to be migrated enables the migration to proceed faster and/or with fewer errors. For example, some embodiments of the disclosure are operable with two-phase, pre-copy-based, live migration. Pre-copy-based live migration includes a pre-copy phase in which the virtual memory of a source VM 235 (e.g., on a first host) is copied to a destination VM 235 (e.g., on a second host), and a stun phase in which non-memory state is similarly transferred and restored. The pre-copy phase may take several iterations as memory may change during the pre-copy phase (e.g., because the source VM 235 remains live), thus prompting another copy attempt. Reducing the load on the VM 235 reduces the likelihood the memory changes during the pre-copy phase. As such, the live migration completes faster when the virtual memory (and non-memory state) remains static (and smaller).
  • While described with reference to live migration in some embodiments, aspects of the disclosure are operable, however, with any form or type of migration.
  • In some embodiments, load balancing module 308 acknowledges receipt of the migration notification from migration module 306. In such embodiments, migration module 306 may then commence the migration process, or signal another module to commence the migration process. If, however, migration module 306 does not receive the acknowledgement from load balancing module 308 (e.g., within a pre-defined timeout duration), migration module 306 logs the absence of the acknowledgement and commences the migration process.
  • At 408, load balancing module 308 continues to distribute data requests to VMs 235 other than VM 235 to be migrated while listening for, or otherwise being configured to receive, an updated migration notification from migration module 306. The updated migration notification indicates that migration of VM 235 has completed. The updated migration notification may take any form. For example, the contents of the updated migration notification may appear similar to the migration notification that previously indicated an upcoming migration, with the exception that a flag or bit in the updated migration notification is set to indicate that migration has completed. In other embodiments, the updated migration notification bears little or no similarity to the migration notification. For example, the updated migration notification may represent a short message indicating that the migrated VM 235 is available to process an increased quantity of data requests from clients 310.
  • Upon receipt of the updated migration notification at 410, load balancing module 308 increases the quantity of data requests distributed to the migrated VM 235 at 412.
  • Still other embodiments contemplate no updated migration notification or other communication being sent from migration module 306 to load balancing module 308. For example, if the migration notification indicating an upcoming migration included an estimated duration for the migration, load balancing module 308 sets a timer or alarm that activates when the migration is expected to be complete. Upon activation of the alarm, load balancing module 308 automatically increases the quantity of data requests distributed to migrated VM 235. Migration module 306 or load balancing module 308 may inflate the estimated duration, or include some form of grace period, to account for unexpected delays occurring during migration. Alternatively or in addition, migration module 306 may send updated duration estimates to load balancing module 308 to enable load balancing module 308 to reset or otherwise adjust the timer or alarm (e.g., if migration is occurring slower or faster than expected).
  • FIG. 5 is a flowchart of an exemplary method 500 performed by migration module 306 to notify registered load balancing modules 308 of an upcoming migration of one of VMs 235 to a new host. While method 500 is described with reference to execution by migration module 306 (shown in FIG. 3), it is contemplated that method 500 may be performed by any component or module. Further, the operations illustrated and described with reference to FIG. 5 may be implemented as instructions that, when executed by processor 102, cause processor 102 to improve load balancing performance during migration of VMs 235.
  • Additionally, the flow illustrated in FIG. 5 corresponds to migration module 306 managing one migration by sending migration notifications. Migration module 306, however, may handle multiple concurrent migrations. For example, migration module 306 may represent a multi-threaded application in which each thread manages at least one migration.
  • Migration module 306 is configured to detect or be notified of upcoming migrations of VMs 235 from the first host to another host (e.g., the second host). For example, migration module 306 receives a message from an administrator, receives a message from one or more of VMs 235, and/or accesses a migration schedule or other data indicating when migrations will occur. In this example, the migration schedule identifies upcoming migrations, VMs 235 affected, estimated migration durations, and other data.
  • When migration module 306 detects an upcoming migration affecting VM 235 accessible to the first host at 502, migration module 306 identifies one or more of load balancing modules 308 affected by the migration at 504. For example, migration module 306 searches or scans a set of registered load balancing modules 308 to identify affected load balancing modules 308 (e.g., load balancing modules 308 that are distributing data requests to VM 235 to be migrated).
  • At 506, migration module 306 sends the migration notification to each of the identified load balancing modules 308 before migration commences. Upon receipt of the migration notification, the identified load balancing modules 308 respond to the migration notification by reducing a quantity of data requests sent to VM 235 to be migrated. Migration module 306 sends the migration notification at some time prior to commencement of migration to allow load balancing modules 308 time to react, although the exact amount of time prior may vary and may be dependent on the expected response time of load balancing modules 308. In some embodiments, the migration notification is sent at least a tenth of a second prior to the migration occurring.
  • When migration module 306 detects completion of migration at 508, migration module 306 sends an updated migration notification to the affected load balancing modules 308 at 510 to indicate completion of the migration. Upon receipt of the updated migration notification, the load balancing modules 308 respond to the updated migration notification by increasing a quantity of data requests sent to the migrated VM 235. The updated migration notification may further include a description of the resources available to, and/or shared by, the first host and the second host, along with any other information relevant to a load balancing policy applied by load balancing modules 308.
  • FIG. 6 is a sequence diagram illustrating interaction among migration module 306, load balancing module 308, and one or more of VMs 235. In some embodiments, migration module 306, load balancing modules 308, and VMs 235 are contained with, or otherwise accessible by, a host such as host computing device 100.
  • Migration module 306 detects or is notified of an upcoming migration of at least one of VMs 235. Migration module 306 identifies the registered load balancing modules 308 (e.g., load balancing modules 308 possibly affected by the upcoming migration) and sends a migration notification to each of the identified load balancing modules 308 before the migration.
  • Upon receipt of the migration notification or otherwise responsive to the migration notification, load balancing modules 308 reduce a load on VM 235 to be migrated, such as described herein. In some embodiments, load balancing modules 308 reduce a quantity of the data requests distributed to VM 235 to be migrated by, for example, reducing establishment of new connections to VM 235 to be migrated while maintaining existing connections to VM 235 to be migrated.
  • Upon completion of the migration, migration module 306 sends an updated migration notification or otherwise notifies load balancing modules 308 of completion of the migration. Upon receipt of the updated migration notification or otherwise responsive to the updated migration notification, load balancing modules 308 increase a load on the migrated VM 235, such as described herein. In some embodiments, load balancing modules 308 gradually increase a quantity of the data requests distributed to the migrated VM 235 until the migrated VM 235 handles a load similar to other VMs 235.
  • FIG. 7 is a block diagram of Host # 1, such as host computing device 100 shown in FIG. 1, having a plurality of servers 702 managing data requests from a plurality of clients 310 prior to migration. In the example of FIG. 7, the plurality of clients 310 include client # 1 and client # 2 through client #M. Clients 310 communicate with Host # 1 via a network. Network represents any means for communication between clients 310 and Host # 1. Aspects of the disclosure are operable with any network type or configuration. For example, aspects of the disclosure are operable with local area networks (LANs), metropolitan area networks (MANs), wide area networks (WANs), the Internet, or any combination thereof.
  • Host # 1 includes migration module 306 and load balancing modules 308. Load balancing modules 308 distribute data requests received from clients 310 to the plurality of servers 702. The plurality of servers 702 includes server # 1 and server # 2 through server #P.
  • In this example, migration module 306 determines or is informed that server # 2 is scheduled to be migrated to Host #2. Migration module 306 notifies load balancing modules 308 before the migration occurs.
  • FIG. 8 is a block diagram of Host # 1 shown in FIG. 7 during migration of one of servers 702 to Host #2. In this example, server # 2 is under migration from Host # 1 to Host #2. Load balancing modules 308 continue to distribute data requests from clients 310 to servers 702. However, load balancing modules 308 reduce, or completely eliminate, a quantity of the data requests sent to server # 2 during the migration.
  • FIG. 9 is a block diagram of Host # 1 and Host # 2 shown in FIG. 8 after migration of server # 2. In this example, the migration of server # 2 from Host # 1 to Host #2 has completed, and server # 2 is now located on Host # 2. Migration module 306 has informed load balancing modules 308 of completion of the migration, and Host # 1 can access server # 2 same as before the migration. In response, load balancing modules 308 increase a quantity of the data requests distributed to server # 2 until server # 2 is treated as it was prior to the migration. In some embodiments, if Host # 2 has differing resource capabilities, migration module 306 notifies load balancing modules 308 of the resource capabilities. Load balancing modules 308 use the resource capabilities as input to load balancing algorithms implemented by load balancing modules 308.
  • In the example of FIG. 9, Host # 1 and Host # 2 use the same Internet Protocol (IP) address, so there are no changes to connections managed by load balancing modules 308.
  • Additional Examples
  • The following scenarios are merely exemplary and not intended to be limiting in any way.
  • Aspects of the disclosure respond to failures such as failure of the migration process and failure of one or more of load balancing modules 308. For example, if the hypervisor detects failure of the migration process (e.g., after receiving an error code or after a pre-defined timeout duration elapses), migration module 306 sends notification of the failure to the affected load balancing modules 308. In response, load balancing modules 308 put the affected VM 235 back in a queue for dispatching.
  • If one of load balancing modules 308 reboots, load balancing module 308 re-registers with migration module 306 after coming online again. Load balancing module 308 also flushes old migration state information from prior to the failure and obtains new migration state information.
  • Aspects of the disclosure are not limited to any particular format of the migration notification. An exemplary, non-limiting migration notification may have the following format: Version (one octet for a version number) and VM-uuid (sixteen octets for a UUID of the VM 235 generating the event). One or more type-length-value (TLV) elements may follow these fields. Each of the TLV elements may have the following exemplary format: Type (one octet for an integer value identifying the type of information), Length (one octet for a length of the value field to follow, in octets), and Value (one or more octets for a variable-length octet-string containing specific TLV information). Some embodiments contemplate standard types. An exemplary start event may be represented as Type: 0, Length: 5, and Value: “start”. An exemplary finish event may be represented as Type: 0, Length: 6, and Value: “finish”.
  • An exemplary migration notification format may also support vendor-specific extensions. For example, type 255 may be reserved for such extensions. An exemplary extension format may be defined as: Type (one octet of 255), Length (one octet), and Value (four octets for Extension-ID, one or more octets for Extension-value).
  • Exemplary Operating Environment
  • The operations described herein may be performed by a computer or computing device. The computing devices communicate with each other through an exchange of messages and/or stored data. Communication may occur using any protocol or mechanism over any wired or wireless connection. A computing device may transmit a message as a broadcast message (e.g., to an entire network and/or data bus), a multicast message (e.g., addressed to a plurality of other computing devices), and/or as a plurality of unicast messages, each of which is addressed to an individual computing device. Further, in some embodiments, messages are transmitted using a network protocol that does not guarantee delivery, such as User Datagram Protocol (UDP). Accordingly, when transmitting a message, a computing device may transmit multiple copies of the message, enabling the computing device to reduce the risk of non-delivery.
  • Exemplary computer readable media include flash memory drives, digital versatile discs (DVDs), compact discs (CDs), floppy disks, and tape cassettes. By way of example and not limitation, computer readable media comprise computer storage media and communication media. Computer storage media include volatile and nonvolatile, removable and non-removable media implemented in any method or technology for storage of information such as computer readable instructions, data structures, program modules or other data. Computer storage media are tangible, exclude propagated data signals, and are mutually exclusive to communication media. In some embodiments, computer storage media are implemented in hardware. Exemplary computer storage media include hard disks, flash drives, and other solid-state memory. In contrast, communication media typically embody computer readable instructions, data structures, program modules, or other data in a modulated data signal such as a carrier wave or other transport mechanism and include any information delivery media.
  • Although described in connection with an exemplary computing system environment, embodiments of the disclosure are operative with numerous other general purpose or special purpose computing system environments or configurations. Examples of well-known computing systems, environments, and/or configurations that may be suitable for use with aspects of the disclosure (e.g., as clients) include, but are not limited to, mobile computing devices, personal computers, server computers, hand-held or laptop devices, multiprocessor systems, gaming consoles, microprocessor-based systems, set top boxes, programmable consumer electronics, mobile telephones, network PCs, minicomputers, mainframe computers, distributed computing environments that include any of the above systems or devices, and the like.
  • Embodiments of the disclosure may be described in the general context of computer-executable instructions, such as program modules, executed by one or more computers or other devices. The computer-executable instructions may be organized into one or more computer-executable components or modules. Generally, program modules include, but are not limited to, routines, programs, objects, components, and data structures that perform particular tasks or implement particular abstract data types. Aspects of the disclosure may be implemented with any number and organization of such components or modules. For example, aspects of the disclosure are not limited to the specific computer-executable instructions or the specific components or modules illustrated in the figures and described herein. Other embodiments of the disclosure may include different computer-executable instructions or components having more or less functionality than illustrated and described herein.
  • Aspects of the disclosure transform a general-purpose computer into a special-purpose computing device when programmed to execute the instructions described herein.
  • The embodiments illustrated and described herein as well as embodiments not specifically described herein but within the scope of aspects of the invention constitute exemplary means for migration-aware load balancing in virtual data centers, and exemplary means for reducing performance degradation during live migration of at least one of VMs 235.
  • At least a portion of the functionality of the various elements illustrated in the figures may be performed by other elements in the figures, or an entity (e.g., processor, web service, server, application program, computing device, etc.) not shown in the figures.
  • In some embodiments, the operations illustrated in the figures may be implemented as software instructions encoded on a computer readable medium, in hardware programmed or designed to perform the operations, or both. For example, aspects of the disclosure may be implemented as a system on a chip or other circuitry including a plurality of interconnected, electrically conductive elements.
  • The order of execution or performance of the operations in embodiments of the disclosure illustrated and described herein is not essential, unless otherwise specified. That is, the operations may be performed in any order, unless otherwise specified, and embodiments of the disclosure may include additional or fewer operations than those disclosed herein. For example, it is contemplated that executing or performing a particular operation before, contemporaneously with, or after another operation is within the scope of aspects of the disclosure.
  • When introducing elements of aspects of the disclosure or the embodiments thereof, the articles “a,” “an,” “the,” and “said” are intended to mean that there are one or more of the elements. The terms “comprising,” “including,” and “having” are intended to be inclusive and mean that there may be additional elements other than the listed elements.
  • Having described aspects of the disclosure in detail, it will be apparent that modifications and variations are possible without departing from the scope of aspects of the disclosure as defined in the appended claims. As various changes could be made in the above constructions, products, and methods without departing from the scope of aspects of the disclosure, it is intended that all matter contained in the above description and shown in the accompanying drawings shall be interpreted as illustrative and not in a limiting sense.

Claims (20)

We claim:
1. A system comprising:
a memory area associated with a first host, said memory area storing a migration module and one or more load balancing modules, the load balancing modules distributing data requests to a plurality of virtual machines (VMs); and
a processor programmed to:
send a migration notification from the migration module to each of the identified load balancing modules before a migration of at least one of the plurality of VMs to a second host begins;
reduce, by the load balancing modules responsive to the migration notification, a quantity of the data requests distributed to the at least one of the plurality of VMs by reducing establishment of new connections to the at least one of the plurality of VMs while maintaining existing connections to the at least one of the plurality of VMs;
send an updated migration notification from the migration module to each of the identified load balancing modules upon completion of the migration; and
increase, by the load balancing modules responsive to the updated migration notification, a quantity of the data requests distributed to the at least one of the plurality of VMs.
2. The system of claim 1, wherein the processor is further programmed to detect completion of the migration.
3. The system of claim 1, wherein the plurality of VMs correspond to web servers, and wherein the data requests comprise requests by client devices for content from the web servers.
4. The system of claim 1, wherein the migration corresponds to a live migration.
5. The system of claim 1, wherein the processor is programmed to send the migration notification by sending an interrupt or event notification to each of the identified load balancing modules.
6. The system of claim 1, further comprising means for migration-aware load balancing in virtual data centers.
7. The system of claim 1, further comprising means for reducing performance degradation during live migration of the at least one of the plurality of VMs.
8. A method comprising:
distributing, by a load balancing module, data requests to a plurality of virtual machines (VMs) accessible to a first host;
receiving a migration notification from a migration module before a migration of at least one of the plurality of VMs to a second host begins; and
in response to the received migration notification, reducing a quantity of the data requests distributed by the load balancing module to the at least one of the plurality of VMs on the first host to reduce a load on the at least one of the plurality of VMs.
9. The method of claim 8, further comprising registering with the migration module to receive the migration notification from the migration module.
10. The method of claim 8, further comprising receiving the data requests from a plurality of computing devices.
11. The method of claim 8, wherein reducing the quantity comprises reducing a quantity of new connections established to the at least one of the plurality of VMs.
12. The method of claim 8, wherein reducing the quantity comprises reducing a quantity of the data requests distributed to the at least one of the plurality of VMs relative to a quantity of the data requests distributed to other VMs.
13. The method of claim 8, wherein receiving the migration notification comprises receiving a migration notification of a live migration during which virtual memory and non-memory state are copied from the first host to the second host.
14. The method of claim 8, wherein receiving the migration notification comprises receiving a migration notification indicating when the migration is scheduled to commence.
15. The method of claim 8, further comprising:
receiving an updated migration notification from the migration module, the updated migration notification indicating completion of the migration; and
in response to the received, updated migration notification, increasing the quantity of the data requests distributed by the load balancing module to the at least one of the plurality of VMs on the second host.
16. One or more computer-readable storage media including computer-executable instructions that, when executed, cause at least one processor to improve load balancing performance during migration by:
identifying one or more load balancing modules associated with a first host, the load balancing modules distributing data requests to a plurality of virtual machines (VMs);
sending a migration notification to each of the identified load balancing modules before a migration of at least one of the plurality of VMs to a second host begins, the identified load balancing modules responding to the migration notification by reducing a quantity of data requests distributed to the at least one of the plurality of VMs; and
sending an updated migration notification to each of the identified load balancing modules upon completion of the migration, the identified load balancing modules responding to the updated migration notification by increasing a quantity of data requests distributed to the at least one of the plurality of VMs.
17. The computer storage media of claim 16, wherein the computer-executable instructions cause the processor to send the migration notification by sending the migration notification to each of the identified load balancing modules at least a tenth of a second before the migration.
18. The computer storage media of claim 16, wherein the computer-executable instructions cause the processor to identify the one or more load balancing modules by identifying one or more load balancing modules that have registered with the first host.
19. The computer storage media of claim 16, wherein the computer-executable instructions further cause the processor to send the migration notification by sending the migration notification from a migration module associated with the first host.
20. The computer storage media of claim 16, wherein the computer-executable instructions cause the processor to send the migration notification by sending a migration notification including a description of resources shared by the first host and by the second host.
US13/469,276 2012-05-11 2012-05-11 Performance of load balancing modules with migration awareness Active 2033-10-26 US9152448B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/469,276 US9152448B2 (en) 2012-05-11 2012-05-11 Performance of load balancing modules with migration awareness

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US13/469,276 US9152448B2 (en) 2012-05-11 2012-05-11 Performance of load balancing modules with migration awareness

Publications (2)

Publication Number Publication Date
US20130305242A1 true US20130305242A1 (en) 2013-11-14
US9152448B2 US9152448B2 (en) 2015-10-06

Family

ID=49549655

Family Applications (1)

Application Number Title Priority Date Filing Date
US13/469,276 Active 2033-10-26 US9152448B2 (en) 2012-05-11 2012-05-11 Performance of load balancing modules with migration awareness

Country Status (1)

Country Link
US (1) US9152448B2 (en)

Cited By (39)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20140019977A1 (en) * 2012-07-10 2014-01-16 Sears Brands, Llc System and method for economical migration of legacy applications from mainframe and distributed platforms
US20140181810A1 (en) * 2012-12-21 2014-06-26 Red Hat Israel, Ltd. Automatic discovery of externally added devices
US20150032893A1 (en) * 2013-07-26 2015-01-29 International Business Machines Corporation Visualization of workload distribution on server resources
CN104468521A (en) * 2014-11-13 2015-03-25 华为技术有限公司 Online migration method, device and system
US9069782B2 (en) 2012-10-01 2015-06-30 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US20150256586A1 (en) * 2014-03-06 2015-09-10 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US20150301869A1 (en) * 2014-04-22 2015-10-22 International Business Machines Corporation Load balancing with granularly redistributable workloads
US20150309809A1 (en) * 2014-04-28 2015-10-29 Samsung Electronics Co., Ltd. Electronic device and method of linking a task thereof
US20150370596A1 (en) * 2014-06-20 2015-12-24 Google Inc. System and method for live migration of a virtualized networking stack
CN106133693A (en) * 2015-02-28 2016-11-16 华为技术有限公司 The moving method of virtual machine, device and equipment
US20160359953A1 (en) * 2015-06-04 2016-12-08 Dell Software Inc. Migration enhanced by presence, instant messaging, and last log-on time
US20170017512A1 (en) * 2014-03-10 2017-01-19 Nokia Solutions And Networks Oy Notification about virtual machine live migration to vnf manager
US9575789B1 (en) * 2013-06-26 2017-02-21 Veritas Technologies Systems and methods for enabling migratory virtual machines to expedite access to resources
US20170052866A1 (en) * 2015-08-21 2017-02-23 International Business Machines Corporation Managing a shared pool of configurable computing resources which uses a set of dynamically-assigned resources
US9767284B2 (en) 2012-09-14 2017-09-19 The Research Foundation For The State University Of New York Continuous run-time validation of program execution: a practical approach
US9767271B2 (en) 2010-07-15 2017-09-19 The Research Foundation For The State University Of New York System and method for validating program execution at run-time
US9774600B1 (en) * 2014-04-25 2017-09-26 VCE IP Holding Company LLC Methods, systems, and computer readable mediums for managing infrastructure elements in a network system
US9792150B1 (en) * 2013-06-28 2017-10-17 Veritas Technologies Llc Detecting site change for migrated virtual machines
US10015266B1 (en) * 2014-09-22 2018-07-03 Symantec Corporation Live migration of massive numbers of network connections, including long lived connections
US10042656B2 (en) 2011-08-01 2018-08-07 Avocent Corporation System and method for providing migrateable virtual serial port services
US20180232252A1 (en) * 2015-04-23 2018-08-16 International Business Machines Corporation Virtual machine (vm)-to-vm flow control for overlay networks
CN108696902A (en) * 2017-04-10 2018-10-23 中国移动通信集团公司 A kind of method and device of load of network equipment equilibrium
US20190065229A1 (en) * 2017-08-28 2019-02-28 Red Hat Israel, Ltd. Network notification loss detection for virtual machine migration
CN109426547A (en) * 2017-09-04 2019-03-05 华为技术有限公司 A kind of thermomigration process of virtual machine, device and system
US10228969B1 (en) * 2015-06-25 2019-03-12 Amazon Technologies, Inc. Optimistic locking in virtual machine instance migration
US20190095232A1 (en) * 2017-09-22 2019-03-28 Fujitsu Limited Non-transitory computer-readable recording medium, adjustment device, and adjustment method
CN109937401A (en) * 2016-11-15 2019-06-25 微软技术许可有限责任公司 Via the real-time migration for the load balancing virtual machine that business bypass carries out
US10528376B2 (en) * 2017-04-20 2020-01-07 International Business Machines Corporation Virtual machine management
US10628198B2 (en) 2017-08-30 2020-04-21 Red Hat Israel Ltd. Hypervisor management of migration notification and response messages for virtual machines
US10652327B2 (en) 2016-04-29 2020-05-12 Hewlett Packard Enterprise Development Lp Migration of virtual machines
US10693801B2 (en) 2018-02-20 2020-06-23 Red Hat, Inc. Packet drop reduction in virtual machine migration
CN111414129A (en) * 2019-01-07 2020-07-14 阿里巴巴集团控股有限公司 System and method for configuring FPGA control data based on cloud and electronic equipment
WO2020158444A1 (en) * 2019-02-01 2020-08-06 日本電信電話株式会社 Processing device and moving method
EP3792760A1 (en) * 2019-09-13 2021-03-17 Google LLC Live migration of clusters in containerized environments
US10965641B2 (en) 2017-12-07 2021-03-30 Red Hat, Inc. Live virtual machine migration utilizing network address pools
US10970110B1 (en) 2015-06-25 2021-04-06 Amazon Technologies, Inc. Managed orchestration of virtual machine instance migration
US10977064B2 (en) 2017-08-23 2021-04-13 Red Hat, Inc. Live virtual machine migration
US11070629B2 (en) 2017-08-30 2021-07-20 Red Hat Israel, Ltd Migration notification and response messages for virtual machines
US11409619B2 (en) 2020-04-29 2022-08-09 The Research Foundation For The State University Of New York Recovering a virtual machine after failure of post-copy live migration

Families Citing this family (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9930116B2 (en) 2015-06-01 2018-03-27 Oracle International Corporation Method and system for selecting a transport mechanism and a storage process
US9836327B1 (en) * 2015-06-12 2017-12-05 Amazon Technologies, Inc. Network-based storage access control for migrating live storage clients
CN110046510B (en) * 2019-03-13 2021-10-01 北京深演智能科技股份有限公司 Cross-cloud data migration method, device and system
US11144226B2 (en) 2019-04-11 2021-10-12 Samsung Electronics Co., Ltd. Intelligent path selection and load balancing
US11216190B2 (en) 2019-06-10 2022-01-04 Samsung Electronics Co., Ltd. Systems and methods for I/O transmissions in queue pair-based NVMeoF initiator-target system
US11240294B2 (en) 2019-08-23 2022-02-01 Samsung Electronics Co., Ltd. Systems and methods for spike detection and load balancing resource management

Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20080104608A1 (en) * 2006-10-27 2008-05-01 Hyser Chris D Starting up at least one virtual machine in a physical machine by a load balancer
US20100332657A1 (en) * 2009-06-29 2010-12-30 Red Hat Israel, Ltd. Selecting a host from a host cluster for live migration of a virtual machine
US20110119670A1 (en) * 2006-12-29 2011-05-19 Intel, Inc. Method for dynamic load balancing on partitioned systems
US20110194563A1 (en) * 2010-02-11 2011-08-11 Vmware, Inc. Hypervisor Level Distributed Load-Balancing
US20110231839A1 (en) * 2010-03-18 2011-09-22 Microsoft Corporation Virtual machine homogenization to enable migration across heterogeneous computers
US20110307889A1 (en) * 2010-06-11 2011-12-15 Hitachi, Ltd. Virtual machine system, networking device and monitoring method of virtual machine system
US20110321041A1 (en) * 2010-06-29 2011-12-29 Bhat Santhosh R Method and system for migrating a virtual machine
US20120017031A1 (en) * 2010-07-13 2012-01-19 Vmware, Inc. Robust live migration using shared filesystem
US8190769B1 (en) * 2008-12-30 2012-05-29 Juniper Networks, Inc. Methods and apparatus for provisioning at a network device in response to a virtual resource migration notification
US20130054813A1 (en) * 2011-08-24 2013-02-28 Radware, Ltd. Method for live migration of virtual machines
US20130081013A1 (en) * 2011-09-23 2013-03-28 Qualcomm Incorporated Memory Coherency Acceleration Via Virtual Machine Migration
US8442955B2 (en) * 2011-03-30 2013-05-14 International Business Machines Corporation Virtual machine image co-migration
US20130275979A1 (en) * 2010-07-28 2013-10-17 Red Hat Israel, Ltd. Delayed hardware upgrades in virtualization systems

Patent Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20080104608A1 (en) * 2006-10-27 2008-05-01 Hyser Chris D Starting up at least one virtual machine in a physical machine by a load balancer
US20110119670A1 (en) * 2006-12-29 2011-05-19 Intel, Inc. Method for dynamic load balancing on partitioned systems
US8190769B1 (en) * 2008-12-30 2012-05-29 Juniper Networks, Inc. Methods and apparatus for provisioning at a network device in response to a virtual resource migration notification
US20100332657A1 (en) * 2009-06-29 2010-12-30 Red Hat Israel, Ltd. Selecting a host from a host cluster for live migration of a virtual machine
US20110194563A1 (en) * 2010-02-11 2011-08-11 Vmware, Inc. Hypervisor Level Distributed Load-Balancing
US20110231839A1 (en) * 2010-03-18 2011-09-22 Microsoft Corporation Virtual machine homogenization to enable migration across heterogeneous computers
US20110307889A1 (en) * 2010-06-11 2011-12-15 Hitachi, Ltd. Virtual machine system, networking device and monitoring method of virtual machine system
US20110321041A1 (en) * 2010-06-29 2011-12-29 Bhat Santhosh R Method and system for migrating a virtual machine
US20120017031A1 (en) * 2010-07-13 2012-01-19 Vmware, Inc. Robust live migration using shared filesystem
US20130275979A1 (en) * 2010-07-28 2013-10-17 Red Hat Israel, Ltd. Delayed hardware upgrades in virtualization systems
US8442955B2 (en) * 2011-03-30 2013-05-14 International Business Machines Corporation Virtual machine image co-migration
US20130054813A1 (en) * 2011-08-24 2013-02-28 Radware, Ltd. Method for live migration of virtual machines
US20130081013A1 (en) * 2011-09-23 2013-03-28 Qualcomm Incorporated Memory Coherency Acceleration Via Virtual Machine Migration

Cited By (68)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9767271B2 (en) 2010-07-15 2017-09-19 The Research Foundation For The State University Of New York System and method for validating program execution at run-time
US10042656B2 (en) 2011-08-01 2018-08-07 Avocent Corporation System and method for providing migrateable virtual serial port services
US20140019977A1 (en) * 2012-07-10 2014-01-16 Sears Brands, Llc System and method for economical migration of legacy applications from mainframe and distributed platforms
US9256472B2 (en) * 2012-07-10 2016-02-09 Sears Brands, Llc System and method for economical migration of legacy applications from mainframe and distributed platforms
US9767284B2 (en) 2012-09-14 2017-09-19 The Research Foundation For The State University Of New York Continuous run-time validation of program execution: a practical approach
US9069782B2 (en) 2012-10-01 2015-06-30 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US10324795B2 (en) 2012-10-01 2019-06-18 The Research Foundation for the State University o System and method for security and privacy aware virtual machine checkpointing
US9552495B2 (en) 2012-10-01 2017-01-24 The Research Foundation For The State University Of New York System and method for security and privacy aware virtual machine checkpointing
US9081604B2 (en) * 2012-12-21 2015-07-14 Red Hat Israel, Ltd. Automatic discovery of externally added devices
US20140181810A1 (en) * 2012-12-21 2014-06-26 Red Hat Israel, Ltd. Automatic discovery of externally added devices
US9575789B1 (en) * 2013-06-26 2017-02-21 Veritas Technologies Systems and methods for enabling migratory virtual machines to expedite access to resources
US9792150B1 (en) * 2013-06-28 2017-10-17 Veritas Technologies Llc Detecting site change for migrated virtual machines
US20150032893A1 (en) * 2013-07-26 2015-01-29 International Business Machines Corporation Visualization of workload distribution on server resources
US20150032897A1 (en) * 2013-07-26 2015-01-29 International Business Machines Corporation Visualization of workload distribution on server resources
US10411977B2 (en) * 2013-07-26 2019-09-10 International Business Machines Corporation Visualization of workload distribution on server resources
US10419305B2 (en) * 2013-07-26 2019-09-17 International Business Machines Corporation Visualization of workload distribution on server resources
US9680729B2 (en) * 2014-03-06 2017-06-13 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US10075515B2 (en) * 2014-03-06 2018-09-11 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US20150256439A1 (en) * 2014-03-06 2015-09-10 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US20150256586A1 (en) * 2014-03-06 2015-09-10 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US9705778B2 (en) * 2014-03-06 2017-07-11 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
US20170187796A1 (en) * 2014-03-06 2017-06-29 International Business Machines Corporation Deploying operators of a streaming application based on physical location attributes of a virtual machine
CN106462450A (en) * 2014-03-10 2017-02-22 诺基亚通信公司 Notification about virtual machine live migration to VNF manager
US20170017512A1 (en) * 2014-03-10 2017-01-19 Nokia Solutions And Networks Oy Notification about virtual machine live migration to vnf manager
US11294698B2 (en) * 2014-03-10 2022-04-05 Nokia Solutions And Networks Oy Waiting a host determined specific amount of time before performing virtual network function migration
US9632840B2 (en) * 2014-04-22 2017-04-25 International Business Machines Corporation Load balancing with granularly redistributable workloads
US20150301869A1 (en) * 2014-04-22 2015-10-22 International Business Machines Corporation Load balancing with granularly redistributable workloads
US9774600B1 (en) * 2014-04-25 2017-09-26 VCE IP Holding Company LLC Methods, systems, and computer readable mediums for managing infrastructure elements in a network system
US9606957B2 (en) * 2014-04-28 2017-03-28 Samsung Electronics Co., Ltd. Electronic device and method of linking a task thereof
US20150309809A1 (en) * 2014-04-28 2015-10-29 Samsung Electronics Co., Ltd. Electronic device and method of linking a task thereof
US20150370596A1 (en) * 2014-06-20 2015-12-24 Google Inc. System and method for live migration of a virtualized networking stack
US10013276B2 (en) * 2014-06-20 2018-07-03 Google Llc System and method for live migration of a virtualized networking stack
US10592273B2 (en) 2014-06-20 2020-03-17 Google Llc System and method for live migration of a virtualized networking stack
US10015266B1 (en) * 2014-09-22 2018-07-03 Symantec Corporation Live migration of massive numbers of network connections, including long lived connections
CN104468521A (en) * 2014-11-13 2015-03-25 华为技术有限公司 Online migration method, device and system
CN106133693A (en) * 2015-02-28 2016-11-16 华为技术有限公司 The moving method of virtual machine, device and equipment
US20180232252A1 (en) * 2015-04-23 2018-08-16 International Business Machines Corporation Virtual machine (vm)-to-vm flow control for overlay networks
US10698718B2 (en) * 2015-04-23 2020-06-30 International Business Machines Corporation Virtual machine (VM)-to-VM flow control using congestion status messages for overlay networks
US20160359953A1 (en) * 2015-06-04 2016-12-08 Dell Software Inc. Migration enhanced by presence, instant messaging, and last log-on time
US10228969B1 (en) * 2015-06-25 2019-03-12 Amazon Technologies, Inc. Optimistic locking in virtual machine instance migration
US10970110B1 (en) 2015-06-25 2021-04-06 Amazon Technologies, Inc. Managed orchestration of virtual machine instance migration
US20170054617A1 (en) * 2015-08-21 2017-02-23 International Business Machines Corporation Managing a shared pool of configurable computing resources which uses a set of dynamically-assigned resources
US20170052866A1 (en) * 2015-08-21 2017-02-23 International Business Machines Corporation Managing a shared pool of configurable computing resources which uses a set of dynamically-assigned resources
US10652327B2 (en) 2016-04-29 2020-05-12 Hewlett Packard Enterprise Development Lp Migration of virtual machines
CN109937401A (en) * 2016-11-15 2019-06-25 微软技术许可有限责任公司 Via the real-time migration for the load balancing virtual machine that business bypass carries out
CN108696902A (en) * 2017-04-10 2018-10-23 中国移动通信集团公司 A kind of method and device of load of network equipment equilibrium
US10528376B2 (en) * 2017-04-20 2020-01-07 International Business Machines Corporation Virtual machine management
US10936356B2 (en) 2017-04-20 2021-03-02 International Business Machines Corporation Virtual machine management
US10977064B2 (en) 2017-08-23 2021-04-13 Red Hat, Inc. Live virtual machine migration
US10838752B2 (en) * 2017-08-28 2020-11-17 Red Hat Israel, Ltd. Network notification loss detection for virtual machine migration
US20190065229A1 (en) * 2017-08-28 2019-02-28 Red Hat Israel, Ltd. Network notification loss detection for virtual machine migration
US10628198B2 (en) 2017-08-30 2020-04-21 Red Hat Israel Ltd. Hypervisor management of migration notification and response messages for virtual machines
US11070629B2 (en) 2017-08-30 2021-07-20 Red Hat Israel, Ltd Migration notification and response messages for virtual machines
US11604670B2 (en) 2017-09-04 2023-03-14 Huawei Technologies Co., Ltd. Virtual machine live migration method, apparatus, and system
CN109426547A (en) * 2017-09-04 2019-03-05 华为技术有限公司 A kind of thermomigration process of virtual machine, device and system
US20190095232A1 (en) * 2017-09-22 2019-03-28 Fujitsu Limited Non-transitory computer-readable recording medium, adjustment device, and adjustment method
US11010186B2 (en) * 2017-09-22 2021-05-18 Fujitsu Limited Non-transitory computer-readable recording medium, adjustment device, and adjustment method
US10965641B2 (en) 2017-12-07 2021-03-30 Red Hat, Inc. Live virtual machine migration utilizing network address pools
US10693801B2 (en) 2018-02-20 2020-06-23 Red Hat, Inc. Packet drop reduction in virtual machine migration
CN111414129A (en) * 2019-01-07 2020-07-14 阿里巴巴集团控股有限公司 System and method for configuring FPGA control data based on cloud and electronic equipment
JP2020127097A (en) * 2019-02-01 2020-08-20 日本電信電話株式会社 Processor and move method
WO2020158444A1 (en) * 2019-02-01 2020-08-06 日本電信電話株式会社 Processing device and moving method
JP7198102B2 (en) 2019-02-01 2022-12-28 日本電信電話株式会社 Processing equipment and moving method
US11632319B2 (en) * 2019-02-01 2023-04-18 Nippon Telegraph And Telephone Corporation Processing device and moving method
US10965752B1 (en) 2019-09-13 2021-03-30 Google Llc Live migration of clusters in containerized environments
EP3792760A1 (en) * 2019-09-13 2021-03-17 Google LLC Live migration of clusters in containerized environments
US11563809B2 (en) 2019-09-13 2023-01-24 Google Llc Live migration of clusters in containerized environments
US11409619B2 (en) 2020-04-29 2022-08-09 The Research Foundation For The State University Of New York Recovering a virtual machine after failure of post-copy live migration

Also Published As

Publication number Publication date
US9152448B2 (en) 2015-10-06

Similar Documents

Publication Publication Date Title
US9152448B2 (en) Performance of load balancing modules with migration awareness
US10120711B2 (en) Rapid suspend/resume for virtual machines via resource sharing
US10540197B2 (en) Software application placement using computing resource containers
US10579409B2 (en) Live migration of virtual machines with memory state sharing
US9110728B2 (en) Elastic allocation of computing resources to software applications
US11895016B2 (en) Methods and apparatus to configure and manage network resources for use in network-based computing
US10120770B2 (en) Grouping failure events with adaptive polling and sliding window buffering
US9477507B2 (en) State customization of forked virtual machines
US8880930B2 (en) Software application placement based on failure correlation
US10642635B2 (en) Decentralized demand-based virtual machine migration management
US10977063B2 (en) Elastic compute fabric using virtual machine templates
US9081750B2 (en) Recovery escalation of cloud deployments
US8910160B1 (en) Handling of virtual machine migration while performing clustering operations
US20110314470A1 (en) Virtual Machine Infrastructure Capable Of Automatically Resuming Paused Virtual Machines
Kadav et al. Live migration of direct-access devices
US10764115B1 (en) EMS handling of faults in virtual network function components
US10616313B2 (en) Scalable monitoring of long running multi-step data intensive workloads
Qiu Evaluating and improving LXC container migration between cloudlets using multipath TCP

Legal Events

Date Code Title Description
AS Assignment

Owner name: VMWARE, INC., CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:WANG, YONG;WU, WEIQING;REEL/FRAME:028194/0275

Effective date: 20120510

STCF Information on status: patent grant

Free format text: PATENTED CASE

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 4TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1551); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 4

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 8