2019-10-25 06:42:40 +00:00
|
|
|
import argparse
|
2019-11-02 15:42:24 +00:00
|
|
|
import multiprocessing as mp
|
2019-11-18 17:39:57 +00:00
|
|
|
import time
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-11-18 17:39:57 +00:00
|
|
|
from etcd3_wrapper import Etcd3Wrapper
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-12-03 10:40:41 +00:00
|
|
|
from ucloud.common.request import RequestEntry, RequestType
|
|
|
|
from ucloud.config import (vm_pool, request_pool,
|
2019-11-18 17:39:57 +00:00
|
|
|
etcd_client, running_vms,
|
2019-11-02 15:42:24 +00:00
|
|
|
etcd_wrapper_args, etcd_wrapper_kwargs,
|
2019-11-18 17:39:57 +00:00
|
|
|
HostPool, env_vars)
|
2019-11-25 06:52:36 +00:00
|
|
|
|
|
|
|
from .helper import find_free_port
|
2019-11-18 17:39:57 +00:00
|
|
|
from . import virtualmachine
|
|
|
|
from host import logger
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-11-25 06:52:36 +00:00
|
|
|
|
|
|
|
def update_heartbeat(hostname):
|
|
|
|
"""Update Last HeartBeat Time for :param hostname: in etcd"""
|
2019-11-02 15:42:24 +00:00
|
|
|
client = Etcd3Wrapper(*etcd_wrapper_args, **etcd_wrapper_kwargs)
|
2019-11-18 17:39:57 +00:00
|
|
|
host_pool = HostPool(client, env_vars.get('HOST_PREFIX'))
|
2019-11-25 06:52:36 +00:00
|
|
|
this_host = next(filter(lambda h: h.hostname == hostname, host_pool.hosts), None)
|
2019-11-18 17:39:57 +00:00
|
|
|
|
2019-10-25 06:42:40 +00:00
|
|
|
while True:
|
2019-11-02 15:42:24 +00:00
|
|
|
this_host.update_heartbeat()
|
|
|
|
host_pool.put(this_host)
|
2019-10-25 06:42:40 +00:00
|
|
|
time.sleep(10)
|
|
|
|
|
2019-11-18 17:39:57 +00:00
|
|
|
|
2019-10-25 06:42:40 +00:00
|
|
|
def maintenance(host):
|
|
|
|
# To capture vm running according to running_vms list
|
|
|
|
|
|
|
|
# This is to capture successful migration of a VM.
|
|
|
|
# Suppose, this host is running "vm1" and user initiated
|
|
|
|
# request to migrate this "vm1" to some other host. On,
|
|
|
|
# successful migration the destination host would set
|
|
|
|
# the vm hostname to itself. Thus, we are checking
|
|
|
|
# whether this host vm is successfully migrated. If yes
|
|
|
|
# then we shutdown "vm1" on this host.
|
|
|
|
|
2019-11-25 06:52:36 +00:00
|
|
|
to_be_removed = []
|
2019-10-25 06:42:40 +00:00
|
|
|
for running_vm in running_vms:
|
|
|
|
with vm_pool.get_put(running_vm.key) as vm_entry:
|
|
|
|
if vm_entry.hostname != host.key and not vm_entry.in_migration:
|
|
|
|
running_vm.handle.shutdown()
|
2019-11-25 06:52:36 +00:00
|
|
|
logger.info("VM migration not completed successfully.")
|
|
|
|
to_be_removed.append(running_vm)
|
|
|
|
|
|
|
|
for r in to_be_removed:
|
|
|
|
running_vms.remove(r)
|
|
|
|
|
2019-10-25 06:42:40 +00:00
|
|
|
# To check vm running according to etcd entries
|
|
|
|
alleged_running_vms = vm_pool.by_status("RUNNING", vm_pool.by_host(host.key))
|
|
|
|
|
|
|
|
for vm_entry in alleged_running_vms:
|
|
|
|
_vm = virtualmachine.get_vm(running_vms, vm_entry.key)
|
|
|
|
# Whether, the allegedly running vm is in our
|
|
|
|
# running_vms list or not if it is said to be
|
|
|
|
# running on this host but it is not then we
|
|
|
|
# need to shut it down
|
|
|
|
|
|
|
|
# This is to capture poweroff/shutdown of a VM
|
|
|
|
# initiated by user inside VM. OR crash of VM by some
|
|
|
|
# user running process
|
|
|
|
if (_vm and not _vm.handle.is_running()) or not _vm:
|
2019-11-28 08:04:53 +00:00
|
|
|
logger.debug("_vm = %s, is_running() = %s" % (_vm, _vm.handle.is_running()))
|
2019-10-25 06:42:40 +00:00
|
|
|
vm_entry.add_log("""{} is not running but is said to be running.
|
|
|
|
So, shutting it down and declare it killed""".format(vm_entry.key))
|
|
|
|
vm_entry.declare_killed()
|
|
|
|
vm_pool.put(vm_entry)
|
|
|
|
if _vm:
|
|
|
|
running_vms.remove(_vm)
|
|
|
|
|
|
|
|
|
2019-11-18 17:39:57 +00:00
|
|
|
def main(hostname):
|
|
|
|
heartbeat_updating_process = mp.Process(target=update_heartbeat, args=(hostname,))
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-11-18 17:39:57 +00:00
|
|
|
host_pool = HostPool(etcd_client, env_vars.get('HOST_PREFIX'))
|
|
|
|
host = next(filter(lambda h: h.hostname == hostname, host_pool.hosts), None)
|
2019-11-27 14:19:57 +00:00
|
|
|
assert host is not None, "No such host with name = {}".format(hostname)
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-11-02 15:42:24 +00:00
|
|
|
try:
|
|
|
|
heartbeat_updating_process.start()
|
|
|
|
except Exception as e:
|
2019-11-18 17:39:57 +00:00
|
|
|
logger.info("No Need To Go Further. Our heartbeat updating mechanism is not working")
|
|
|
|
logger.exception(e)
|
2019-11-02 15:42:24 +00:00
|
|
|
exit(-1)
|
2019-10-25 06:42:40 +00:00
|
|
|
|
2019-11-18 17:39:57 +00:00
|
|
|
logger.info("%s Session Started %s", '*' * 5, '*' * 5)
|
2019-10-25 06:42:40 +00:00
|
|
|
|
|
|
|
# It is seen that under heavy load, timeout event doesn't come
|
|
|
|
# in a predictive manner (which is intentional because we give
|
|
|
|
# higher priority to customer's requests) which delays heart
|
|
|
|
# beat update which in turn misunderstood by scheduler that the
|
|
|
|
# host is dead when it is actually alive. So, to ensure that we
|
|
|
|
# update the heart beat in a predictive manner we start Heart
|
|
|
|
# beat updating mechanism in separated thread
|
|
|
|
|
|
|
|
for events_iterator in [
|
2019-11-18 17:39:57 +00:00
|
|
|
etcd_client.get_prefix(env_vars.get('REQUEST_PREFIX'), value_in_json=True),
|
|
|
|
etcd_client.watch_prefix(env_vars.get('REQUEST_PREFIX'), timeout=10, value_in_json=True),
|
2019-10-25 06:42:40 +00:00
|
|
|
]:
|
|
|
|
for request_event in events_iterator:
|
|
|
|
request_event = RequestEntry(request_event)
|
|
|
|
|
|
|
|
if request_event.type == "TIMEOUT":
|
|
|
|
maintenance(host)
|
|
|
|
continue
|
|
|
|
|
|
|
|
# If the event is directed toward me OR I am destination of a InitVMMigration
|
2019-11-18 17:39:57 +00:00
|
|
|
if request_event.hostname == host.key or request_event.destination == host.key:
|
2019-11-27 07:12:29 +00:00
|
|
|
logger.debug("VM Request: %s", request_event)
|
2019-10-25 06:42:40 +00:00
|
|
|
|
|
|
|
request_pool.client.client.delete(request_event.key)
|
|
|
|
vm_entry = vm_pool.get(request_event.uuid)
|
|
|
|
|
|
|
|
if vm_entry:
|
|
|
|
if request_event.type == RequestType.StartVM:
|
|
|
|
virtualmachine.start(vm_entry)
|
|
|
|
|
|
|
|
elif request_event.type == RequestType.StopVM:
|
|
|
|
virtualmachine.stop(vm_entry)
|
|
|
|
|
|
|
|
elif request_event.type == RequestType.DeleteVM:
|
|
|
|
virtualmachine.delete(vm_entry)
|
|
|
|
|
|
|
|
elif request_event.type == RequestType.InitVMMigration:
|
2019-11-25 06:52:36 +00:00
|
|
|
virtualmachine.start(vm_entry, host.key, find_free_port())
|
2019-10-25 06:42:40 +00:00
|
|
|
|
|
|
|
elif request_event.type == RequestType.TransferVM:
|
|
|
|
virtualmachine.transfer(request_event)
|
|
|
|
else:
|
2019-11-18 17:39:57 +00:00
|
|
|
logger.info("VM Entry missing")
|
|
|
|
|
|
|
|
logger.info("Running VMs %s", running_vms)
|
2019-10-25 06:42:40 +00:00
|
|
|
|
|
|
|
|
2019-11-02 15:42:24 +00:00
|
|
|
if __name__ == "__main__":
|
2019-11-18 17:39:57 +00:00
|
|
|
argparser = argparse.ArgumentParser()
|
|
|
|
argparser.add_argument("hostname", help="Name of this host. e.g /v1/host/1")
|
|
|
|
args = argparser.parse_args()
|
|
|
|
mp.set_start_method('spawn')
|
|
|
|
main(args.hostname)
|