mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
* [skip ci] Add flush checker in monitor thread Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com> * [skip ci] update chaos parser Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com> * [skip ci] Update chaos tests Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com> * [skip ci] Move chaos to python_client folder Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com> * [skip ci] Remove useless code and comments Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com> * [skip ci] Use delayed assert for always assert everything Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
123 lines
3.3 KiB
Python
123 lines
3.3 KiB
Python
from enum import Enum
|
|
|
|
from time import sleep
|
|
from base.collection_wrapper import ApiCollectionWrapper
|
|
from common import common_func as cf
|
|
from common import common_type as ct
|
|
import constants
|
|
|
|
|
|
class Op(Enum):
|
|
create = 'create'
|
|
insert = 'insert'
|
|
flush = 'flush'
|
|
index = 'index'
|
|
search = 'search'
|
|
query = 'query'
|
|
|
|
unknown = 'unknown'
|
|
|
|
|
|
class Checker:
|
|
def __init__(self):
|
|
self._succ = 0
|
|
self._fail = 0
|
|
self._running = True
|
|
|
|
def total(self):
|
|
return self._succ + self._fail
|
|
|
|
def succ_rate(self):
|
|
return self._succ / self.total() if self.total() != 0 else 0
|
|
|
|
def terminate(self):
|
|
self._running = False
|
|
|
|
def reset(self):
|
|
self._succ = 0
|
|
self._fail = 0
|
|
|
|
|
|
class SearchChecker(Checker):
|
|
def __init__(self, collection_wrap):
|
|
super().__init__()
|
|
self.c_wrap = collection_wrap
|
|
|
|
def keep_running(self):
|
|
while self._running is True:
|
|
search_vec = cf.gen_vectors(5, ct.default_dim)
|
|
_, result = self.c_wrap.search(
|
|
data=search_vec,
|
|
params={"nprobe": 32},
|
|
limit=1,
|
|
check_task="nothing"
|
|
)
|
|
if result is True:
|
|
self._succ += 1
|
|
else:
|
|
self._fail += 1
|
|
|
|
|
|
class InsertFlushChecker(Checker):
|
|
def __init__(self, connection, collection_wrap, do_flush=False):
|
|
super().__init__()
|
|
self.conn = connection
|
|
self.c_wrap = collection_wrap
|
|
self._do_flush = do_flush
|
|
|
|
def keep_running(self):
|
|
while self._running is True:
|
|
_, insert_result = self.c_wrap.insert(
|
|
data=cf.gen_default_dataframe_data(nb=constants.DELTA_PER_INS)
|
|
)
|
|
if self._do_flush is False:
|
|
if insert_result is True:
|
|
self._succ += 1
|
|
else:
|
|
self._fail += 1
|
|
else:
|
|
entities_1 = self.c_wrap.num_entities
|
|
self.conn.flush([self.c_wrap.name])
|
|
entities_2 = self.c_wrap.num_entities
|
|
if entities_2 == (entities_1 + constants.DELTA_PER_INS):
|
|
self._succ += 1
|
|
else:
|
|
self._fail += 1
|
|
|
|
|
|
class CreateChecker(Checker):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.c_wrapper = ApiCollectionWrapper()
|
|
|
|
def keep_running(self):
|
|
while self._running is True:
|
|
sleep(2)
|
|
collection, result = self.c_wrapper.init_collection(
|
|
name=cf.gen_unique_str("CreateChecker_"),
|
|
schema=cf.gen_default_collection_schema(),
|
|
check_task="check_nothing"
|
|
)
|
|
if result is True:
|
|
self._succ += 1
|
|
self.c_wrapper.drop(check_task="check_nothing")
|
|
else:
|
|
self._fail += 1
|
|
|
|
|
|
class IndexChecker(Checker):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def keep_running(self):
|
|
pass
|
|
|
|
|
|
class QueryChecker(Checker):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def keep_running(self):
|
|
pass
|
|
|