gitextract_0fobvlb0/ ├── .clang-format ├── .gitignore ├── .gitmodules ├── .pylintrc ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ci/ │ ├── e2e.groovy │ ├── entrypoint.sh │ ├── get_author_email.sh │ ├── nightly.groovy │ ├── rte-build.yaml │ ├── set_docker_mirror.sh │ └── test.sh ├── cmake/ │ ├── Findantlr4-runtime.cmake │ └── milvus-storage.cmake ├── conanfile.py ├── examples/ │ ├── bfloat16_example.py │ ├── binary_example.py │ ├── bm25.py │ ├── customize_schema.py │ ├── customize_schema_auto_id.py │ ├── dynamic_field.py │ ├── example_group_by.py │ ├── float16_example.py │ ├── fuzzy_match.py │ ├── hello_hybrid_bm25.py │ ├── hello_milvus.py │ ├── hello_milvus_array.py │ ├── hello_milvus_delete.py │ ├── index.py │ ├── non_ascii_encode.py │ ├── simple.py │ ├── simple_auto_id.py │ └── sparse.py ├── python/ │ ├── pyproject.toml │ ├── requirements.txt │ ├── setup.py │ └── src/ │ └── milvus_lite/ │ ├── __init__.py │ ├── cmdline.py │ ├── server.py │ └── server_manager.py ├── scripts/ │ ├── Dockerfile.manylinux.aarch64 │ ├── Dockerfile.manylinux.x86_64 │ ├── README.md │ ├── build.sh │ └── build_milvus_lite.sh ├── src/ │ ├── CMakeLists.txt │ ├── common.h │ ├── create_collection_task.cpp │ ├── create_collection_task.h │ ├── create_index_task.cpp │ ├── create_index_task.h │ ├── delete_task.cpp │ ├── delete_task.h │ ├── function/ │ │ ├── bm25_function.cpp │ │ ├── bm25_function.h │ │ ├── function.h │ │ ├── function_executor.cpp │ │ ├── function_executor.h │ │ └── function_util.h │ ├── hybrid_search_task.cpp │ ├── hybrid_search_task.h │ ├── index.cpp │ ├── index.h │ ├── insert_task.cpp │ ├── insert_task.h │ ├── milvus_id.hpp │ ├── milvus_local.cpp │ ├── milvus_local.h │ ├── milvus_proxy.cpp │ ├── milvus_proxy.h │ ├── milvus_service_impl.cpp │ ├── milvus_service_impl.h │ ├── parser/ │ │ ├── Plan.g4 │ │ ├── antlr/ │ │ │ ├── PlanBaseVisitor.cpp │ │ │ ├── PlanBaseVisitor.h │ │ │ ├── PlanLexer.cpp │ │ │ ├── PlanLexer.h │ │ │ ├── PlanParser.cpp │ │ │ ├── PlanParser.h │ │ │ ├── PlanVisitor.cpp │ │ │ └── PlanVisitor.h │ │ ├── parser.cc │ │ ├── parser.h │ │ └── utils.h │ ├── query_task.cpp │ ├── query_task.h │ ├── re_scorer.cpp │ ├── re_scorer.h │ ├── retrieve_result.h │ ├── schema_util.cpp │ ├── schema_util.h │ ├── search_result.h │ ├── search_task.cpp │ ├── search_task.h │ ├── segcore_wrapper.cpp │ ├── segcore_wrapper.h │ ├── server.cpp │ ├── status.h │ ├── storage/ │ │ ├── bm25_stats.cpp │ │ ├── bm25_stats.h │ │ ├── collection_data.cpp │ │ ├── collection_data.h │ │ ├── collection_meta.cpp │ │ ├── collection_meta.h │ │ ├── storage.cpp │ │ └── storage.h │ ├── string_util.hpp │ ├── timer.cpp │ ├── timer.h │ ├── type.h │ ├── unittest/ │ │ ├── CMakeLists.txt │ │ ├── bm25_function_test.cpp │ │ ├── grpc_server_test.cpp │ │ ├── milvus_local_test.cpp │ │ ├── milvus_proxy_test.cpp │ │ ├── run_examples.py │ │ ├── storage_test.cpp │ │ ├── test_util.cpp │ │ └── test_util.h │ ├── upsert_task.cpp │ └── upsert_task.h ├── tests/ │ ├── base/ │ │ ├── client_base.py │ │ ├── collection_wrapper.py │ │ ├── connections_wrapper.py │ │ ├── database_wrapper.py │ │ ├── high_level_api_wrapper.py │ │ ├── index_wrapper.py │ │ ├── partition_wrapper.py │ │ ├── schema_wrapper.py │ │ └── utility_wrapper.py │ ├── check/ │ │ ├── func_check.py │ │ └── param_check.py │ ├── common/ │ │ ├── bulk_insert_data.py │ │ ├── code_mapping.py │ │ ├── common_func.py │ │ ├── common_type.py │ │ ├── constants.py │ │ ├── cus_resource_opts.py │ │ ├── milvus_sys.py │ │ └── minio_comm.py │ ├── config/ │ │ └── log_config.py │ ├── conftest.py │ ├── customize/ │ │ ├── README.md │ │ ├── milvus_operator.py │ │ ├── template/ │ │ │ ├── default.yaml │ │ │ └── minimum.yaml │ │ ├── test_customize_segment_size.py │ │ └── test_simd_compat.py │ ├── data/ │ │ └── train_embeddings.csv │ ├── milvus_lite/ │ │ ├── test_milvus_lite_close.py │ │ ├── test_milvus_lite_collection.py │ │ ├── test_milvus_lite_delete.py │ │ ├── test_milvus_lite_index.py │ │ ├── test_milvus_lite_init.py │ │ ├── test_milvus_lite_insert.py │ │ ├── test_milvus_lite_migrate.py │ │ ├── test_milvus_lite_query.py │ │ ├── test_milvus_lite_search.py │ │ ├── test_milvus_lite_sparse.py │ │ └── test_milvus_lite_stability.py │ ├── pytest.ini │ ├── requirements.txt │ ├── run.sh │ ├── test_bm25.py │ ├── test_delete.py │ ├── test_dump_tool.py │ ├── test_hybrid_search.py │ ├── test_query.py │ ├── test_schema.py │ ├── test_search.py │ ├── test_sparse.py │ ├── testcases/ │ │ └── test_collection.py │ └── utils/ │ ├── api_request.py │ ├── thread_util.py │ ├── util_common.py │ ├── util_k8s.py │ ├── util_log.py │ ├── util_pymilvus.py │ └── wrapper.py └── thirdparty/ ├── knowhere-android.patch ├── knowhere.patch └── milvus.patch