2021-10-15 09:48:42 +00:00
|
|
|
from benedict import benedict
|
|
|
|
from utils.util_log import test_log as log
|
2021-10-18 12:28:50 +00:00
|
|
|
from common.cus_resource_opts import CustomResourceOperations as CusResource
|
2021-10-20 08:24:35 +00:00
|
|
|
import time
|
2021-10-15 09:48:42 +00:00
|
|
|
|
2021-10-18 12:28:50 +00:00
|
|
|
template_yaml = 'template/default.yaml'
|
|
|
|
MILVUS_GRP = 'milvus.io'
|
|
|
|
MILVUS_VER = 'v1alpha1'
|
2021-10-19 09:02:49 +00:00
|
|
|
MILVUS_PLURAL = 'milvusclusters'
|
2021-10-15 09:48:42 +00:00
|
|
|
|
2021-10-18 12:28:50 +00:00
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
def update_configs(configs, template=template_yaml):
|
2021-10-20 08:24:35 +00:00
|
|
|
if not isinstance(configs, dict):
|
2021-10-15 09:48:42 +00:00
|
|
|
log.error("customize configurations must be in dict type")
|
|
|
|
return None
|
|
|
|
|
2021-10-19 09:02:49 +00:00
|
|
|
d_configs = benedict.from_yaml(template)
|
2021-10-15 09:48:42 +00:00
|
|
|
|
2021-10-20 08:24:35 +00:00
|
|
|
for key in configs.keys():
|
|
|
|
d_configs[key] = configs[key]
|
2021-10-15 09:48:42 +00:00
|
|
|
|
2021-10-19 09:02:49 +00:00
|
|
|
# return a python dict for common use
|
|
|
|
log.info(f"customized configs: {d_configs._dict}")
|
|
|
|
return d_configs._dict
|
2021-10-18 12:28:50 +00:00
|
|
|
|
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
def install_milvus(configs, template):
|
2021-10-18 12:28:50 +00:00
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
new_configs = update_configs(configs, template)
|
|
|
|
namespace = new_configs['metadata'].get('namespace', 'default')
|
2021-10-18 12:28:50 +00:00
|
|
|
# apply custom resource object to deploy milvus
|
2021-10-20 08:24:35 +00:00
|
|
|
cus_res = CusResource(kind=MILVUS_PLURAL, group=MILVUS_GRP,
|
|
|
|
version=MILVUS_VER, namespace=namespace)
|
|
|
|
return cus_res.create(new_configs)
|
2021-10-18 12:28:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
def uninstall_milvus(release_name, namespace='default'):
|
|
|
|
|
|
|
|
# delete custom resource object to uninstall milvus
|
2021-10-20 08:24:35 +00:00
|
|
|
cus_res = CusResource(kind=MILVUS_PLURAL, group=MILVUS_GRP,
|
|
|
|
version=MILVUS_VER, namespace=namespace)
|
2021-10-18 12:28:50 +00:00
|
|
|
cus_res.delete(release_name)
|
2021-10-15 09:48:42 +00:00
|
|
|
|
|
|
|
|
2021-10-20 08:24:35 +00:00
|
|
|
def upgrade_milvus(release_name, configs, namespace='default'):
|
|
|
|
if not isinstance(configs, dict):
|
|
|
|
log.error("customize configurations must be in dict type")
|
|
|
|
return None
|
|
|
|
|
|
|
|
d_configs = benedict()
|
|
|
|
|
|
|
|
for key in configs.keys():
|
|
|
|
d_configs[key] = configs[key]
|
|
|
|
|
|
|
|
cus_res = CusResource(kind=MILVUS_PLURAL, group=MILVUS_GRP,
|
|
|
|
version=MILVUS_VER, namespace=namespace)
|
|
|
|
log.debug(f"upgrade milvus with configs: {d_configs}")
|
|
|
|
cus_res.patch(release_name, d_configs)
|
|
|
|
|
|
|
|
|
|
|
|
def wait_for_milvus_healthy(release_name, namespace='default', timeout=600):
|
|
|
|
|
|
|
|
cus_res = CusResource(kind=MILVUS_PLURAL, group=MILVUS_GRP,
|
|
|
|
version=MILVUS_VER, namespace=namespace)
|
|
|
|
starttime = time.time()
|
|
|
|
log.info(f"start to check healthy: {starttime}")
|
|
|
|
while time.time() < starttime + timeout:
|
|
|
|
time.sleep(10)
|
|
|
|
res_object = cus_res.get(release_name)
|
|
|
|
if res_object.get('status', None) is not None:
|
|
|
|
if 'Healthy' == res_object['status']['status']:
|
|
|
|
log.info(f"milvus healthy in {time.time()-starttime} seconds")
|
|
|
|
return True
|
|
|
|
log.info(f"end to check healthy until timeout {timeout}")
|
|
|
|
return False
|
2021-10-19 09:02:49 +00:00
|
|
|
|
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
def get_milvus_endpoint(release_name, namespace='default'):
|
|
|
|
|
|
|
|
endpoint = None
|
|
|
|
cus_res = CusResource(kind=MILVUS_PLURAL, group=MILVUS_GRP,
|
|
|
|
version=MILVUS_VER, namespace=namespace)
|
|
|
|
res_object = cus_res.get(release_name)
|
|
|
|
if res_object.get('status', None) is not None:
|
|
|
|
endpoint = res_object['status']['endpoint']
|
|
|
|
|
|
|
|
return endpoint
|
|
|
|
|
|
|
|
|
2021-10-15 09:48:42 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
namespace = 'chaos-testing'
|
|
|
|
name = 'milvus-513b'
|
|
|
|
cus_configs = {'spec.components.image': 'milvusdb/milvus-dev:master-20211020-b40513b',
|
|
|
|
'metadata.namespace': namespace,
|
|
|
|
'metadata.name': name,
|
2021-10-15 09:48:42 +00:00
|
|
|
'spec.components.queryNode.replicas': 2,
|
|
|
|
'spec.components.queryNode.resources.limits.memory': '2048Mi'
|
|
|
|
}
|
2021-10-20 08:24:35 +00:00
|
|
|
|
2021-10-20 12:38:35 +00:00
|
|
|
milvus_instance = install_milvus(cus_configs, template_yaml)
|
2021-10-20 08:24:35 +00:00
|
|
|
result = wait_for_milvus_healthy(name, namespace=namespace)
|
2021-10-20 12:38:35 +00:00
|
|
|
endpoint = get_milvus_endpoint(name, namespace=namespace)
|
|
|
|
print(endpoint)
|
2021-10-20 08:24:35 +00:00
|
|
|
log.info(f"install milvus healthy: {result}")
|
2021-10-20 12:38:35 +00:00
|
|
|
|
2021-10-20 08:24:35 +00:00
|
|
|
n_configs = {'spec.components.queryNode.replicas': 1,
|
2021-10-20 12:38:35 +00:00
|
|
|
'spec.components.proxy.serviceType': 'LoadBalancer',
|
2021-10-20 08:24:35 +00:00
|
|
|
'spec.components.dataNode.resources.limits.memory': '2048Mi'
|
|
|
|
}
|
|
|
|
upgrade_milvus(name, n_configs, namespace=namespace)
|
|
|
|
result = wait_for_milvus_healthy(name, namespace=namespace)
|
|
|
|
log.info(f"upgrade milvus healthy: {result}")
|
2021-10-20 12:38:35 +00:00
|
|
|
endpoint = get_milvus_endpoint(name, namespace=namespace)
|
|
|
|
print(endpoint)
|
2021-10-20 08:24:35 +00:00
|
|
|
|
|
|
|
# uninstall_milvus(name, namespace=namespace)
|
|
|
|
|