├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── documentation_improvement.yaml │ ├── enhancement.yaml │ └── feature_request.yaml └── workflows │ ├── CI_es_milvus2x_main.yaml │ ├── CI_faiss_milvus2x_main.yaml │ ├── CI_milvus1x_milvus2x_main.yaml │ ├── CI_milvus1x_milvus2x_specify_config_main.yaml │ └── release.yml ├── .gitignore ├── .golangci.yaml ├── .goreleaser.yaml ├── Contributing.md ├── Dockerfile ├── Makefile ├── OWNERS ├── README.md ├── README_1X.md ├── README_2X.md ├── README_Deprecated.md ├── README_ES.md ├── README_FAISS.md ├── README_old.md ├── asap └── init.go ├── cmd ├── dump.go ├── export.go ├── load.go ├── root.go ├── server.go ├── start.go └── version.go ├── core ├── check │ ├── common_check.go │ ├── data_check.go │ ├── data_check_test.go │ ├── es_check.go │ └── milvus2x_check.go ├── cleaner │ ├── base_cleaner.go │ ├── file_cleaner.go │ ├── none_cleaner.go │ └── remote_cleaner.go ├── common │ ├── constant.go │ ├── head.go │ └── param.go ├── config │ ├── assert.go │ ├── config.go │ ├── resolve.go │ ├── resolve_es.go │ ├── resolve_meta.go │ └── resolve_milvus2x.go ├── data │ ├── config_file.go │ ├── job_info.go │ ├── process_info.go │ └── sub_task_info.go ├── dataqueue │ └── io_queue.go ├── dbclient │ ├── cus_field_milvus2x.go │ └── milvus2x.go ├── dbmodel │ └── milvus1xdb.go ├── dumper │ ├── dumper.go │ ├── mode_es.go │ ├── mode_faiss.go │ ├── mode_milvus1x.go │ ├── mode_starter_es.go │ └── mode_starter_milvus2x.go ├── factory │ ├── es_factory │ │ └── es_factory.go │ ├── factory.go │ └── milvus2x_factory │ │ └── milvus2x_factory.go ├── gstore │ ├── global_store.go │ ├── global_store_test.go │ ├── gstore_config_helper.go │ ├── gstore_job_file_task_helper.go │ ├── gstore_job_helper.go │ └── gstore_job_proc_helper.go ├── loader │ ├── cus_milvus2x_loader.go │ ├── milvus2x_loader.go │ ├── mode_es.go │ ├── mode_faiss.go │ ├── mode_milvus1x.go │ └── mode_milvus2x.go ├── meta │ ├── meta_es_helper.go │ ├── meta_helper.go │ ├── meta_milvus2x_helper.go │ ├── meta_writer.go │ ├── mysql_meta_reader.go │ ├── remote_meta_reader.go │ └── sqlite_meta_reader.go ├── reader │ ├── base_reader.go │ ├── deleted_docs_reader.go │ ├── es_reader.go │ ├── faiss_data_reader.go │ ├── faiss_id_reader.go │ ├── rv_reader.go │ ├── source │ │ ├── channel_source.go │ │ ├── es_source.go │ │ ├── local_file.go │ │ ├── milvus2x_source.go │ │ └── remote_source.go │ └── uid_reader.go ├── task │ ├── es_init_task.go │ ├── load_base_task.go │ ├── milvus2x_init_task.go │ ├── submitter.go │ └── tasker.go ├── transform │ ├── common │ │ └── common_convert.go │ ├── es │ │ ├── convert │ │ │ └── es_convert.go │ │ └── parser │ │ │ └── data_parser.go │ ├── milvus2x │ │ └── convert │ │ │ └── milvus2x_convert.go │ └── numpy │ │ └── convert.go ├── type │ ├── estype │ │ └── es_type.go │ ├── milvus2xtype │ │ └── mlv2x_type.go │ └── milvustype │ │ └── type.go ├── util │ ├── array_util.go │ ├── array_util_test.go │ ├── id_util.go │ ├── id_util_test.go │ ├── json_util.go │ ├── path_util.go │ └── path_util_test.go ├── worker │ ├── dumper_reader.go │ ├── dumper_worker.go │ └── dumper_writer.go └── writer │ ├── base_writer.go │ ├── file_writer.go │ └── remote_writer.go ├── deployment ├── cluster │ ├── docker-compose.yml │ └── values.yaml └── standalone │ ├── docker-compose.yml │ └── values.yaml ├── docs ├── docs.go ├── swagger.json └── swagger.yaml ├── go.mod ├── go.sum ├── internal ├── common │ ├── common.go │ ├── error.go │ └── tuple.go ├── log │ ├── config.go │ ├── context.go │ ├── global.go │ ├── log.go │ ├── trace.go │ ├── zap_test_logger.go │ ├── zap_text_core.go │ └── zap_text_encoder.go └── util │ ├── errorutil │ ├── util.go │ └── util_test.go │ ├── funcutil │ ├── func.go │ └── random.go │ ├── logutil │ └── logutil.go │ ├── retry │ ├── options.go │ ├── retry.go │ └── retry_test.go │ └── typeutil │ ├── convension.go │ ├── set.go │ ├── string_util.go │ ├── time.go │ └── type.go ├── main.go ├── pics ├── structure.png └── structure2.png ├── scripts └── check_healthy.sh ├── server ├── function.go ├── option.go ├── server.go └── server_test.go ├── starter ├── migration │ ├── es_starter.go │ ├── milvus2x_starter.go │ └── starter.go ├── param │ ├── param.go │ └── response.go ├── starter.go └── starter_helper.go ├── storage ├── aliyun.go ├── aws.go ├── azure.go ├── client.go ├── copier.go ├── es │ ├── base.go │ ├── es7_srv.go │ └── es8_srv.go ├── gcp.go ├── milvus2x │ ├── base.go │ └── milvus2_3_ver.go ├── minio.go ├── tencent.go ├── workerpool.go └── workerpool_test.go ├── test └── insert.go └── testfiles ├── config └── migration.yaml ├── es ├── config │ └── migration.yaml └── prepare_data_es.py ├── faiss ├── config │ └── migration.yaml └── faiss_ivf_flat.index ├── milvus1x └── test1w │ ├── meta.json │ └── tables │ └── test1w │ └── 1678354366132931000 │ ├── 1678354366132931000.rv │ ├── 1678354366132931000.uid │ ├── bloom_filter │ └── deleted_docs ├── milvus2x └── batch_collection_migration.sh ├── requirements.txt └── testcases ├── verify_data_es.py ├── verify_data_faiss.py └── verify_data_milvus1x.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | logs 3 | tests 4 | deployment -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_improvement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/ISSUE_TEMPLATE/documentation_improvement.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/ISSUE_TEMPLATE/enhancement.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/CI_es_milvus2x_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/workflows/CI_es_milvus2x_main.yaml -------------------------------------------------------------------------------- /.github/workflows/CI_faiss_milvus2x_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/workflows/CI_faiss_milvus2x_main.yaml -------------------------------------------------------------------------------- /.github/workflows/CI_milvus1x_milvus2x_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/workflows/CI_milvus1x_milvus2x_main.yaml -------------------------------------------------------------------------------- /.github/workflows/CI_milvus1x_milvus2x_specify_config_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/workflows/CI_milvus1x_milvus2x_specify_config_main.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/Contributing.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README.md -------------------------------------------------------------------------------- /README_1X.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_1X.md -------------------------------------------------------------------------------- /README_2X.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_2X.md -------------------------------------------------------------------------------- /README_Deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_Deprecated.md -------------------------------------------------------------------------------- /README_ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_ES.md -------------------------------------------------------------------------------- /README_FAISS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_FAISS.md -------------------------------------------------------------------------------- /README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/README_old.md -------------------------------------------------------------------------------- /asap/init.go: -------------------------------------------------------------------------------- 1 | package asap 2 | 3 | import "os" 4 | 5 | func init() { 6 | os.Setenv("GOLANG_PROTOBUF_REGISTRATION_CONFLICT", "ignore") 7 | } 8 | -------------------------------------------------------------------------------- /cmd/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/dump.go -------------------------------------------------------------------------------- /cmd/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/export.go -------------------------------------------------------------------------------- /cmd/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/load.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/server.go -------------------------------------------------------------------------------- /cmd/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/start.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/cmd/version.go -------------------------------------------------------------------------------- /core/check/common_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/check/common_check.go -------------------------------------------------------------------------------- /core/check/data_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/check/data_check.go -------------------------------------------------------------------------------- /core/check/data_check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/check/data_check_test.go -------------------------------------------------------------------------------- /core/check/es_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/check/es_check.go -------------------------------------------------------------------------------- /core/check/milvus2x_check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/check/milvus2x_check.go -------------------------------------------------------------------------------- /core/cleaner/base_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/cleaner/base_cleaner.go -------------------------------------------------------------------------------- /core/cleaner/file_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/cleaner/file_cleaner.go -------------------------------------------------------------------------------- /core/cleaner/none_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/cleaner/none_cleaner.go -------------------------------------------------------------------------------- /core/cleaner/remote_cleaner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/cleaner/remote_cleaner.go -------------------------------------------------------------------------------- /core/common/constant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/common/constant.go -------------------------------------------------------------------------------- /core/common/head.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/common/head.go -------------------------------------------------------------------------------- /core/common/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/common/param.go -------------------------------------------------------------------------------- /core/config/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/assert.go -------------------------------------------------------------------------------- /core/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/config.go -------------------------------------------------------------------------------- /core/config/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/resolve.go -------------------------------------------------------------------------------- /core/config/resolve_es.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/resolve_es.go -------------------------------------------------------------------------------- /core/config/resolve_meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/resolve_meta.go -------------------------------------------------------------------------------- /core/config/resolve_milvus2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/config/resolve_milvus2x.go -------------------------------------------------------------------------------- /core/data/config_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/data/config_file.go -------------------------------------------------------------------------------- /core/data/job_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/data/job_info.go -------------------------------------------------------------------------------- /core/data/process_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/data/process_info.go -------------------------------------------------------------------------------- /core/data/sub_task_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/data/sub_task_info.go -------------------------------------------------------------------------------- /core/dataqueue/io_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dataqueue/io_queue.go -------------------------------------------------------------------------------- /core/dbclient/cus_field_milvus2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dbclient/cus_field_milvus2x.go -------------------------------------------------------------------------------- /core/dbclient/milvus2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dbclient/milvus2x.go -------------------------------------------------------------------------------- /core/dbmodel/milvus1xdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dbmodel/milvus1xdb.go -------------------------------------------------------------------------------- /core/dumper/dumper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/dumper.go -------------------------------------------------------------------------------- /core/dumper/mode_es.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/mode_es.go -------------------------------------------------------------------------------- /core/dumper/mode_faiss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/mode_faiss.go -------------------------------------------------------------------------------- /core/dumper/mode_milvus1x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/mode_milvus1x.go -------------------------------------------------------------------------------- /core/dumper/mode_starter_es.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/mode_starter_es.go -------------------------------------------------------------------------------- /core/dumper/mode_starter_milvus2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/dumper/mode_starter_milvus2x.go -------------------------------------------------------------------------------- /core/factory/es_factory/es_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/factory/es_factory/es_factory.go -------------------------------------------------------------------------------- /core/factory/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/factory/factory.go -------------------------------------------------------------------------------- /core/factory/milvus2x_factory/milvus2x_factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/factory/milvus2x_factory/milvus2x_factory.go -------------------------------------------------------------------------------- /core/gstore/global_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/global_store.go -------------------------------------------------------------------------------- /core/gstore/global_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/global_store_test.go -------------------------------------------------------------------------------- /core/gstore/gstore_config_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/gstore_config_helper.go -------------------------------------------------------------------------------- /core/gstore/gstore_job_file_task_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/gstore_job_file_task_helper.go -------------------------------------------------------------------------------- /core/gstore/gstore_job_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/gstore_job_helper.go -------------------------------------------------------------------------------- /core/gstore/gstore_job_proc_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/gstore/gstore_job_proc_helper.go -------------------------------------------------------------------------------- /core/loader/cus_milvus2x_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/cus_milvus2x_loader.go -------------------------------------------------------------------------------- /core/loader/milvus2x_loader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/milvus2x_loader.go -------------------------------------------------------------------------------- /core/loader/mode_es.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/mode_es.go -------------------------------------------------------------------------------- /core/loader/mode_faiss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/mode_faiss.go -------------------------------------------------------------------------------- /core/loader/mode_milvus1x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/mode_milvus1x.go -------------------------------------------------------------------------------- /core/loader/mode_milvus2x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/loader/mode_milvus2x.go -------------------------------------------------------------------------------- /core/meta/meta_es_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/meta_es_helper.go -------------------------------------------------------------------------------- /core/meta/meta_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/meta_helper.go -------------------------------------------------------------------------------- /core/meta/meta_milvus2x_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/meta_milvus2x_helper.go -------------------------------------------------------------------------------- /core/meta/meta_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/meta_writer.go -------------------------------------------------------------------------------- /core/meta/mysql_meta_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/mysql_meta_reader.go -------------------------------------------------------------------------------- /core/meta/remote_meta_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/remote_meta_reader.go -------------------------------------------------------------------------------- /core/meta/sqlite_meta_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/meta/sqlite_meta_reader.go -------------------------------------------------------------------------------- /core/reader/base_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/base_reader.go -------------------------------------------------------------------------------- /core/reader/deleted_docs_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/deleted_docs_reader.go -------------------------------------------------------------------------------- /core/reader/es_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/es_reader.go -------------------------------------------------------------------------------- /core/reader/faiss_data_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/faiss_data_reader.go -------------------------------------------------------------------------------- /core/reader/faiss_id_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/faiss_id_reader.go -------------------------------------------------------------------------------- /core/reader/rv_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/rv_reader.go -------------------------------------------------------------------------------- /core/reader/source/channel_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/source/channel_source.go -------------------------------------------------------------------------------- /core/reader/source/es_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/source/es_source.go -------------------------------------------------------------------------------- /core/reader/source/local_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/source/local_file.go -------------------------------------------------------------------------------- /core/reader/source/milvus2x_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/source/milvus2x_source.go -------------------------------------------------------------------------------- /core/reader/source/remote_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/source/remote_source.go -------------------------------------------------------------------------------- /core/reader/uid_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/reader/uid_reader.go -------------------------------------------------------------------------------- /core/task/es_init_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/task/es_init_task.go -------------------------------------------------------------------------------- /core/task/load_base_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/task/load_base_task.go -------------------------------------------------------------------------------- /core/task/milvus2x_init_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/task/milvus2x_init_task.go -------------------------------------------------------------------------------- /core/task/submitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/task/submitter.go -------------------------------------------------------------------------------- /core/task/tasker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/task/tasker.go -------------------------------------------------------------------------------- /core/transform/common/common_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/transform/common/common_convert.go -------------------------------------------------------------------------------- /core/transform/es/convert/es_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/transform/es/convert/es_convert.go -------------------------------------------------------------------------------- /core/transform/es/parser/data_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/transform/es/parser/data_parser.go -------------------------------------------------------------------------------- /core/transform/milvus2x/convert/milvus2x_convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/transform/milvus2x/convert/milvus2x_convert.go -------------------------------------------------------------------------------- /core/transform/numpy/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/transform/numpy/convert.go -------------------------------------------------------------------------------- /core/type/estype/es_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/type/estype/es_type.go -------------------------------------------------------------------------------- /core/type/milvus2xtype/mlv2x_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/type/milvus2xtype/mlv2x_type.go -------------------------------------------------------------------------------- /core/type/milvustype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/type/milvustype/type.go -------------------------------------------------------------------------------- /core/util/array_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/array_util.go -------------------------------------------------------------------------------- /core/util/array_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/array_util_test.go -------------------------------------------------------------------------------- /core/util/id_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/id_util.go -------------------------------------------------------------------------------- /core/util/id_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/id_util_test.go -------------------------------------------------------------------------------- /core/util/json_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/json_util.go -------------------------------------------------------------------------------- /core/util/path_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/path_util.go -------------------------------------------------------------------------------- /core/util/path_util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/util/path_util_test.go -------------------------------------------------------------------------------- /core/worker/dumper_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/worker/dumper_reader.go -------------------------------------------------------------------------------- /core/worker/dumper_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/worker/dumper_worker.go -------------------------------------------------------------------------------- /core/worker/dumper_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/worker/dumper_writer.go -------------------------------------------------------------------------------- /core/writer/base_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/writer/base_writer.go -------------------------------------------------------------------------------- /core/writer/file_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/writer/file_writer.go -------------------------------------------------------------------------------- /core/writer/remote_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/core/writer/remote_writer.go -------------------------------------------------------------------------------- /deployment/cluster/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/deployment/cluster/docker-compose.yml -------------------------------------------------------------------------------- /deployment/cluster/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/deployment/cluster/values.yaml -------------------------------------------------------------------------------- /deployment/standalone/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/deployment/standalone/docker-compose.yml -------------------------------------------------------------------------------- /deployment/standalone/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/deployment/standalone/values.yaml -------------------------------------------------------------------------------- /docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/docs/docs.go -------------------------------------------------------------------------------- /docs/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/docs/swagger.json -------------------------------------------------------------------------------- /docs/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/docs/swagger.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/go.sum -------------------------------------------------------------------------------- /internal/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/common/common.go -------------------------------------------------------------------------------- /internal/common/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/common/error.go -------------------------------------------------------------------------------- /internal/common/tuple.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | type Tuple[T any] struct { 4 | Key, Value T 5 | } 6 | -------------------------------------------------------------------------------- /internal/log/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/config.go -------------------------------------------------------------------------------- /internal/log/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/context.go -------------------------------------------------------------------------------- /internal/log/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/global.go -------------------------------------------------------------------------------- /internal/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/log.go -------------------------------------------------------------------------------- /internal/log/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/trace.go -------------------------------------------------------------------------------- /internal/log/zap_test_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/zap_test_logger.go -------------------------------------------------------------------------------- /internal/log/zap_text_core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/zap_text_core.go -------------------------------------------------------------------------------- /internal/log/zap_text_encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/log/zap_text_encoder.go -------------------------------------------------------------------------------- /internal/util/errorutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/errorutil/util.go -------------------------------------------------------------------------------- /internal/util/errorutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/errorutil/util_test.go -------------------------------------------------------------------------------- /internal/util/funcutil/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/funcutil/func.go -------------------------------------------------------------------------------- /internal/util/funcutil/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/funcutil/random.go -------------------------------------------------------------------------------- /internal/util/logutil/logutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/logutil/logutil.go -------------------------------------------------------------------------------- /internal/util/retry/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/retry/options.go -------------------------------------------------------------------------------- /internal/util/retry/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/retry/retry.go -------------------------------------------------------------------------------- /internal/util/retry/retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/retry/retry_test.go -------------------------------------------------------------------------------- /internal/util/typeutil/convension.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/typeutil/convension.go -------------------------------------------------------------------------------- /internal/util/typeutil/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/typeutil/set.go -------------------------------------------------------------------------------- /internal/util/typeutil/string_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/typeutil/string_util.go -------------------------------------------------------------------------------- /internal/util/typeutil/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/typeutil/time.go -------------------------------------------------------------------------------- /internal/util/typeutil/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/internal/util/typeutil/type.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/main.go -------------------------------------------------------------------------------- /pics/structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/pics/structure.png -------------------------------------------------------------------------------- /pics/structure2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/pics/structure2.png -------------------------------------------------------------------------------- /scripts/check_healthy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/scripts/check_healthy.sh -------------------------------------------------------------------------------- /server/function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/server/function.go -------------------------------------------------------------------------------- /server/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/server/option.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/server/server_test.go -------------------------------------------------------------------------------- /starter/migration/es_starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/migration/es_starter.go -------------------------------------------------------------------------------- /starter/migration/milvus2x_starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/migration/milvus2x_starter.go -------------------------------------------------------------------------------- /starter/migration/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/migration/starter.go -------------------------------------------------------------------------------- /starter/param/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/param/param.go -------------------------------------------------------------------------------- /starter/param/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/param/response.go -------------------------------------------------------------------------------- /starter/starter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/starter.go -------------------------------------------------------------------------------- /starter/starter_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/starter/starter_helper.go -------------------------------------------------------------------------------- /storage/aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/aliyun.go -------------------------------------------------------------------------------- /storage/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/aws.go -------------------------------------------------------------------------------- /storage/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/azure.go -------------------------------------------------------------------------------- /storage/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/client.go -------------------------------------------------------------------------------- /storage/copier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/copier.go -------------------------------------------------------------------------------- /storage/es/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/es/base.go -------------------------------------------------------------------------------- /storage/es/es7_srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/es/es7_srv.go -------------------------------------------------------------------------------- /storage/es/es8_srv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/es/es8_srv.go -------------------------------------------------------------------------------- /storage/gcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/gcp.go -------------------------------------------------------------------------------- /storage/milvus2x/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/milvus2x/base.go -------------------------------------------------------------------------------- /storage/milvus2x/milvus2_3_ver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/milvus2x/milvus2_3_ver.go -------------------------------------------------------------------------------- /storage/minio.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/minio.go -------------------------------------------------------------------------------- /storage/tencent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/tencent.go -------------------------------------------------------------------------------- /storage/workerpool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/workerpool.go -------------------------------------------------------------------------------- /storage/workerpool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/storage/workerpool_test.go -------------------------------------------------------------------------------- /test/insert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/test/insert.go -------------------------------------------------------------------------------- /testfiles/config/migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/config/migration.yaml -------------------------------------------------------------------------------- /testfiles/es/config/migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/es/config/migration.yaml -------------------------------------------------------------------------------- /testfiles/es/prepare_data_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/es/prepare_data_es.py -------------------------------------------------------------------------------- /testfiles/faiss/config/migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/faiss/config/migration.yaml -------------------------------------------------------------------------------- /testfiles/faiss/faiss_ivf_flat.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/faiss/faiss_ivf_flat.index -------------------------------------------------------------------------------- /testfiles/milvus1x/test1w/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus1x/test1w/meta.json -------------------------------------------------------------------------------- /testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/1678354366132931000.rv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/1678354366132931000.rv -------------------------------------------------------------------------------- /testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/1678354366132931000.uid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/1678354366132931000.uid -------------------------------------------------------------------------------- /testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/bloom_filter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/bloom_filter -------------------------------------------------------------------------------- /testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/deleted_docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus1x/test1w/tables/test1w/1678354366132931000/deleted_docs -------------------------------------------------------------------------------- /testfiles/milvus2x/batch_collection_migration.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/milvus2x/batch_collection_migration.sh -------------------------------------------------------------------------------- /testfiles/requirements.txt: -------------------------------------------------------------------------------- 1 | pymilvus 2 | elasticsearch -------------------------------------------------------------------------------- /testfiles/testcases/verify_data_es.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/testcases/verify_data_es.py -------------------------------------------------------------------------------- /testfiles/testcases/verify_data_faiss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/testcases/verify_data_faiss.py -------------------------------------------------------------------------------- /testfiles/testcases/verify_data_milvus1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zilliztech/milvus-migration/HEAD/testfiles/testcases/verify_data_milvus1x.py --------------------------------------------------------------------------------