mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 15:05:31 +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>
36 lines
829 B
Python
36 lines
829 B
Python
# MONGO_SERVER = 'mongodb://192.168.1.234:27017/'
|
|
MONGO_SERVER = 'mongodb://mongodb.test:27017/'
|
|
|
|
SCHEDULER_DB = "scheduler"
|
|
JOB_COLLECTION = "jobs"
|
|
|
|
REGISTRY_URL = "registry.zilliz.com/milvus/milvus"
|
|
IDC_NAS_URL = "//172.16.70.249/test"
|
|
|
|
SERVER_HOST_DEFAULT = "127.0.0.1"
|
|
SERVER_PORT_DEFAULT = 19530
|
|
SERVER_VERSION = "2.0"
|
|
|
|
HELM_NAMESPACE = "milvus"
|
|
BRANCH = "master"
|
|
|
|
DEFAULT_CPUS = 48
|
|
|
|
RAW_DATA_DIR = "/test/milvus/raw_data/"
|
|
|
|
# nars log
|
|
LOG_PATH = "/test/milvus/benchmark/logs/{}/".format(BRANCH)
|
|
|
|
DEFAULT_DEPLOY_MODE = "single"
|
|
|
|
NAMESPACE = "default"
|
|
DEFAULT_API_VERSION = 'chaos-mesh.org/v1alpha1'
|
|
DEFAULT_GROUP = 'chaos-mesh.org'
|
|
DEFAULT_VERSION = 'v1alpha1'
|
|
SUCC = 'succ'
|
|
FAIL = 'fail'
|
|
DELTA_PER_INS = 10
|
|
|
|
CHAOS_CONFIG_ENV = 'CHAOS_CONFIG_PATH' # env variables for chao path
|
|
TESTS_CONFIG_LOCATION = 'chaos_objects/'
|