2021-12-13 21:29:24 +08:00
|
|
|
import multiprocessing
|
2021-12-17 08:53:26 +08:00
|
|
|
|
2021-07-28 17:01:22 +08:00
|
|
|
import pytest
|
2021-12-13 21:29:24 +08:00
|
|
|
from customize.milvus_operator import MilvusOperator
|
2021-07-28 17:01:22 +08:00
|
|
|
from common import common_func as cf
|
|
|
|
from common.common_type import CaseLabel
|
2021-12-13 21:29:24 +08:00
|
|
|
from scale import scale_common as sc, constants
|
|
|
|
from utils.util_log import test_log as log
|
2022-01-20 09:11:41 +08:00
|
|
|
from utils.util_k8s import wait_pods_ready, read_pod_log
|
2022-01-13 14:57:33 +08:00
|
|
|
from utils.util_pymilvus import get_latest_tag
|
2021-07-28 17:01:22 +08:00
|
|
|
|
|
|
|
prefix = "proxy_scale"
|
|
|
|
|
|
|
|
|
|
|
|
class TestProxyScale:
|
|
|
|
|
2021-12-17 08:53:26 +08:00
|
|
|
def e2e_milvus_parallel(self, process_num, host, c_name):
|
|
|
|
process_list = []
|
|
|
|
for i in range(process_num):
|
|
|
|
p = multiprocessing.Process(target=sc.e2e_milvus, args=(host, c_name))
|
|
|
|
p.start()
|
|
|
|
process_list.append(p)
|
|
|
|
|
|
|
|
for p in process_list:
|
|
|
|
p.join()
|
|
|
|
|
2021-07-28 17:01:22 +08:00
|
|
|
@pytest.mark.tags(CaseLabel.L3)
|
2021-12-17 08:53:26 +08:00
|
|
|
def test_scale_proxy(self):
|
2021-07-28 17:01:22 +08:00
|
|
|
"""
|
|
|
|
target: test milvus operation after proxy expand
|
2021-12-17 08:53:26 +08:00
|
|
|
method: 1.deploy 1 proxy replicas
|
|
|
|
2.milvus e2e test in parallel
|
|
|
|
3.expand proxy pod from 1 to 5
|
2021-07-28 17:01:22 +08:00
|
|
|
4.milvus e2e test
|
2021-12-17 08:53:26 +08:00
|
|
|
5.shrink proxy from 5 to 2
|
2021-07-28 17:01:22 +08:00
|
|
|
expected: 1.verify data consistent and func work
|
|
|
|
"""
|
2021-12-17 08:53:26 +08:00
|
|
|
# deploy milvus cluster with one proxy
|
2022-01-24 19:51:39 +08:00
|
|
|
fail_count = 0
|
2021-07-28 17:01:22 +08:00
|
|
|
release_name = "scale-proxy"
|
2022-01-13 14:57:33 +08:00
|
|
|
image_tag = get_latest_tag()
|
|
|
|
image = f'{constants.IMAGE_REPOSITORY}:{image_tag}'
|
2021-12-13 21:29:24 +08:00
|
|
|
data_config = {
|
|
|
|
'metadata.namespace': constants.NAMESPACE,
|
|
|
|
'metadata.name': release_name,
|
|
|
|
'spec.components.image': image,
|
|
|
|
'spec.components.proxy.serviceType': 'LoadBalancer',
|
|
|
|
'spec.components.proxy.replicas': 1,
|
|
|
|
'spec.components.dataNode.replicas': 2,
|
|
|
|
'spec.config.dataCoord.enableCompaction': True,
|
|
|
|
'spec.config.dataCoord.enableGarbageCollection': True
|
|
|
|
}
|
|
|
|
mic = MilvusOperator()
|
|
|
|
mic.install(data_config)
|
|
|
|
healthy = mic.wait_for_healthy(release_name, constants.NAMESPACE, timeout=1200)
|
|
|
|
log.info(f"milvus healthy: {healthy}")
|
|
|
|
host = mic.endpoint(release_name, constants.NAMESPACE).split(':')[0]
|
|
|
|
# host = "10.98.0.7"
|
2021-07-28 17:01:22 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
try:
|
|
|
|
c_name = cf.gen_unique_str(prefix)
|
|
|
|
self.e2e_milvus_parallel(5, host, c_name)
|
|
|
|
log.info('Milvus test before expand')
|
2021-12-13 21:29:24 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
# expand proxy replicas from 1 to 5
|
|
|
|
mic.upgrade(release_name, {'spec.components.proxy.replicas': 5}, constants.NAMESPACE)
|
|
|
|
wait_pods_ready(constants.NAMESPACE, f"app.kubernetes.io/instance={release_name}")
|
2021-12-13 21:29:24 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
self.e2e_milvus_parallel(5, host, c_name)
|
|
|
|
log.info('Milvus test after expand')
|
2021-07-28 17:01:22 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
# expand proxy replicas from 5 to 2
|
|
|
|
mic.upgrade(release_name, {'spec.components.proxy.replicas': 2}, constants.NAMESPACE)
|
|
|
|
wait_pods_ready(constants.NAMESPACE, f"app.kubernetes.io/instance={release_name}")
|
2021-07-28 17:01:22 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
self.e2e_milvus_parallel(2, host, c_name)
|
|
|
|
log.info('Milvus test after shrink')
|
2021-07-28 17:01:22 +08:00
|
|
|
|
2022-01-18 09:21:36 +08:00
|
|
|
except Exception as e:
|
2022-01-24 19:51:39 +08:00
|
|
|
log.error(str(e))
|
|
|
|
fail_count += 1
|
|
|
|
# raise Exception(str(e))
|
2022-01-18 09:21:36 +08:00
|
|
|
|
|
|
|
finally:
|
2022-01-24 19:51:39 +08:00
|
|
|
log.info(f'Test finished with {fail_count} fail request')
|
|
|
|
assert fail_count <= 1
|
2022-01-18 09:21:36 +08:00
|
|
|
label = f"app.kubernetes.io/instance={release_name}"
|
|
|
|
log.info('Start to export milvus pod logs')
|
2022-01-20 09:11:41 +08:00
|
|
|
read_pod_log(namespace=constants.NAMESPACE, label_selector=label, release_name=release_name)
|
2022-01-18 09:21:36 +08:00
|
|
|
mic.uninstall(release_name, namespace=constants.NAMESPACE)
|