milvus/scripts
zhenshan.cao 691a8df953
feat: Add RESTful api for rolling upgrade support (#44381)
issue: https://github.com/milvus-io/milvus/issues/43968

Co-authored-by: chyezh <ye.zhen@zilliz.com>
2025-09-16 20:08:00 +08:00
..
sql
3rdparty_build.sh enhance: update rust version (#44322) 2025-09-12 10:53:57 +08:00
OWNERS
README.md enhance: use docker compose instead of docker-compose (#35208) 2024-08-02 19:32:32 +08:00
antlr-4.13.2-complete.jar enhance: Update antlr version and refine parsing not in (#36745) 2024-10-11 14:03:21 +08:00
check_cpp_fmt.sh fix: Use correct regex for cppcheck (#44077) 2025-08-27 20:57:50 +08:00
check_proto_product.sh
collect_arrow_dep.sh
core_build.sh enhance: clean up vcpkg build (#44386) 2025-09-16 10:21:59 +08:00
devcontainer.sh enhance: use docker compose instead of docker-compose (#35208) 2024-08-02 19:32:32 +08:00
docker_image_find_tag.sh
download_milvus_proto.sh feat: Major compaction (#33620) 2024-06-10 21:34:08 +08:00
generate_proto.sh enhance: clean up legacy storage v2 (#39987) 2025-02-19 15:42:52 +08:00
gofmt.sh
install_deps.sh enhance: update rust version (#44322) 2025-09-12 10:53:57 +08:00
install_deps_embd.sh
install_deps_msys.sh enhance: upgrade conan version (#35215) 2024-08-02 19:22:15 +08:00
install_milvus.sh enhance: enable asan for cpp unittest (#37041) 2024-10-23 17:21:27 +08:00
package_windows.sh
run_cargo_format.sh fix: rustcheck not work in CI (#43302) 2025-07-16 14:32:50 +08:00
run_cpp_codecov.sh enhance: enable asan for cpp unittest (#37041) 2024-10-23 17:21:27 +08:00
run_cpp_unittest.sh enhance: support json stats with shredding design (#42534) 2025-09-01 10:49:52 +08:00
run_docker.sh enhance: Merge IndexNode and DataNode (#40272) 2025-03-13 14:26:11 +08:00
run_go_codecov.sh enhance: Optimize FlushAll performance for multi-table scenarios (#43339) 2025-07-30 15:37:37 +08:00
run_go_unittest.sh feat: Add CDC support (#44124) 2025-09-16 16:32:01 +08:00
run_intergration_test.sh enhance: use multi-process framework in integration test (#42976) 2025-06-30 14:22:43 +08:00
setenv.sh enhance: support json stats with shredding design (#42534) 2025-09-01 10:49:52 +08:00
standalone_embed.bat [automated] Bump milvus version to v2.6.1 (#44141) 2025-09-01 08:57:53 +08:00
standalone_embed.sh [automated] Bump milvus version to v2.6.1 (#44141) 2025-09-01 08:57:53 +08:00
start_cluster.sh feat: Add RESTful api for rolling upgrade support (#44381) 2025-09-16 20:08:00 +08:00
start_standalone.sh feat: Add CDC support (#44124) 2025-09-16 16:32:01 +08:00
stop.sh
stop_graceful.sh
update-api-version.sh enhance: [skip e2e] Improve update-milvus-api command for version consistency (#42074) 2025-05-26 17:08:47 +08:00

README.md

Compile and install milvus cluster

Environment

OS: Ubuntu 20.04
go1.21
cmake: >=3.18
gcc 7.5

Install dependencies

Install compile dependencies

$ sudo apt install -y g++ gcc make libssl-dev zlib1g-dev libboost-regex-dev \
    libboost-program-options-dev libboost-system-dev libboost-filesystem-dev \
    libboost-serialization-dev python3-dev libboost-python-dev libcurl4-openssl-dev gfortran libtbb-dev
$ export GO111MODULE=on
$ go get github.com/golang/protobuf/protoc-gen-go@v1.3.2

Install OpenBlas library

install using apt

sudo apt install -y libopenblas-dev

or build from source code

$ wget https://github.com/xianyi/OpenBLAS/archive/v0.3.9.tar.gz && \
$ tar zxvf v0.3.9.tar.gz && cd OpenBLAS-0.3.9 && \
$ make TARGET=CORE2 DYNAMIC_ARCH=1 DYNAMIC_OLDER=1 USE_THREAD=0 USE_OPENMP=0 FC=gfortran CC=gcc COMMON_OPT="-O3 -g -fPIC" FCOMMON_OPT="-O3 -g -fPIC -frecursive" NMAX="NUM_THREADS=128" LIBPREFIX="libopenblas" INTERFACE64=0 NO_STATIC=1 && \
$ make PREFIX=/usr install

Compile

Generate the go files from proto file

$ make check-proto-product

Check code specifications

$ make verifiers

Compile milvus

$ make milvus

Install docker-compose

refer: https://docs.docker.com/compose/install/

$ sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
$ sudo chmod +x /usr/local/bin/docker-compose
$ sudo ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose
$ docker-compose --version
$ docker compose --version

Start service

Start third-party service:

$ cd [milvus project path]/deployments/docker/cluster
$ docker-compose up -d
$ docker compose up -d

Start milvus cluster:

$ cd [milvus project path]
$ ./scripts/start_cluster.sh

Run unittest

Run all unittest including go and cpp cases:

$ make unittest

You also can run go unittest only:

$ make test-go

Run cpp unittest only:

$ make test-cpp

Run code coverage

Run code coverage including go and cpp:

$ make codecov

You also can run go code coverage only:

$ make codecov-go

Run cpp code coverage only:

$ make codecov-cpp