milvus/tests/python_client/chaos
zhuwenxing d2c286c536
test: skip building index when field already has index (#30820)
skip building index when field already has index

Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
2024-02-28 14:08:58 +08:00
..
chaos_objects [skip e2e]Add mixcoord component for chaos test (#18712) 2022-08-18 16:24:51 +08:00
config
scripts Update milvs helm repo for ci (#28042) 2023-11-01 18:54:16 +08:00
testcases test: skip building index when field already has index (#30820) 2024-02-28 14:08:58 +08:00
chaos_commons.py [test]Refine health checker in test (#26920) 2023-09-08 10:09:16 +08:00
chaos_test.sh
checker.py test: add hybrid search in checker for test (#30341) 2024-02-23 10:46:52 +08:00
cluster-values.yaml [skip e2e]Update resource for chaos test (#27337) 2023-09-25 11:31:26 +08:00
conftest.py test: add multi-tenancy checker (#29635) 2024-01-03 15:20:49 +08:00
constants.py test: add hybrid search in checker for test (#30341) 2024-02-23 10:46:52 +08:00
nats-standalone-values.yaml [skip e2e]Disable debug mode in etcd image (#27212) 2023-09-19 15:29:24 +08:00
one-pod-standalone-values.yaml test: [skip e2e]add values yaml file for one pod standalone chaos test (#30311) 2024-01-29 13:35:01 +08:00
README.md
requirements.txt test: update pyarrow version (#29992) 2024-01-18 17:56:54 +08:00
run.sh
standalone-values.yaml [skip e2e]Disable debug mode in etcd image (#27212) 2023-09-19 15:29:24 +08:00
test_chaos_apply_to_coord.py [test]Add standby test and adapt to different schemas (#24781) 2023-06-09 15:20:36 +08:00
test_chaos_apply_to_determined_pod.py [skip e2e]Fix get latest image with wrong arch and etcd followers chaos apply (#27144) 2023-09-15 22:27:20 +08:00
test_chaos_apply.py [test]Fix apply chaos condition (#27625) 2023-10-11 14:11:33 +08:00
test_chaos_bulk_insert.py [test]Fix bulk insert chaos test (#20341) 2022-11-08 16:37:05 +08:00
test_chaos_data_consist.py
test_chaos_memory_stress.py test: add more request type checker for test (#29210) 2023-12-14 19:38:45 +08:00
test_chaos_multi_replicas.py [skip e2e]Get the number of replicas needed to load via get_replicas (#17872) 2022-06-28 20:02:22 +08:00
test_chaos.py test: add more request type checker for test (#29210) 2023-12-14 19:38:45 +08:00
test_load_with_checker.py test: add more request type checker for test (#29210) 2023-12-14 19:38:45 +08:00

Chaos Tests

Goal

Chaos tests are designed to check the reliability of Milvus.

For instance, if one pod is killed:

  • verify that it restarts automatically
  • verify that the related operation fails, while the other operations keep working successfully during the absence of the pod
  • verify that all the operations work successfully after the pod back to running state
  • verify that no data lost

Prerequisite

Chaos tests run in pytest framework, same as e2e tests.

Please refer to Run E2E Tests

Flow Chart

Chaos Test Flow Chart

Test Scenarios

Milvus in cluster mode

pod kill

Kill pod every 5s

pod network partition

Two direction(to and from) network isolation between a pod and the rest of the pods

pod failure

Set the podquerynode, indexnode and datanodeas multiple replicas, make one of them failure, and test milvus's functionality

pod memory stress

Limit the memory resource of pod and generate plenty of stresses over a group of pods

Milvus in standalone mode

  1. standalone pod is killed

  2. minio pod is killed

How it works

  • Test scenarios are designed by different chaos objects
  • Every chaos object is defined in one yaml file locates in folder chaos_objects
  • Every chaos yaml file specified by ALL_CHAOS_YAMLS in constants.py would be parsed as a parameter and be passed into test_chaos.py
  • All expectations of every scenario are defined in testcases.yaml locates in folder chaos_objects
  • Chaos Mesh is used to inject chaos into Milvus in test_chaos.py

Run

Manually

Run a single test scenario manually(take query node pod is killed as instance):

  1. update ALL_CHAOS_YAMLS = 'chaos_querynode_podkill.yaml' in constants.py

  2. run the commands below:

    cd /milvus/tests/python_client/chaos
    
    pytest test_chaos.py --host ${Milvus_IP} -v
    

Run multiple test scenario in a category manually(take network partition chaos for all pods as instance):

  1. update ALL_CHAOS_YAMLS = 'chaos_*_network_partition.yaml' in constants.py

  2. run the commands below:

    cd /milvus/tests/python_client/chaos
    
    pytest test_chaos.py --host ${Milvus_IP} -v
    

Automation Scripts

Run test scenario automatically:

  1. update chaos type and pod in chaos_test.sh
  2. run the commands below:
    cd /milvus/tests/python_client/chaos
    # in this step, script will install milvus with replicas_num and run testcase
    bash chaos_test.sh ${pod} ${chaos_type} ${chaos_task} ${replicas_num}
    # example: bash chaos_test.sh querynode pod_kill chaos-test 2
    

Github Action

Nightly

still in planning

Todo

  • network attack
  • clock skew
  • IO injection

How to contribute

  • Get familiar with chaos engineering and Chaos Mesh
  • Design chaos scenarios, preferring to pick from todo list
  • Generate yaml file for your chaos scenarios. You can create a chaos experiment in chaos-dashboard, then download the yaml file of it.
  • Add yaml file to chaos_objects dir and rename it as chaos_${component_name}_${chaos_type}.yaml. Make sure kubectl apply -f ${your_chaos_yaml_file} can take effect
  • Add testcase in testcases.yaml. You should figure out the expectation of milvus during the chaos
  • Run your added testcase according to Manually above and check whether it as your expectation