milvus/scripts
sre-ci-robot 930112e55e
[automated] Bump milvus version to v2.5.0-beta (#37961)
Bump milvus version to v2.5.0-beta
Signed-off-by: sre-ci-robot sre-ci-robot@users.noreply.github.com

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2024-11-23 21:48:32 +08:00
..
sql Replace segment index file path with index file id within segment index meta (#19866) 2022-10-19 16:55:27 +08:00
3rdparty_build.sh enhance: refine the pipeline (#37412) 2024-11-06 10:24:30 +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
azure_build.sh fix: link with install path's libblob-chunk-manager (#29496) 2023-12-31 20:02:48 +08:00
check_cpp_fmt.sh fix: cpp format check not work (#30767) 2024-02-22 19:40:53 +08:00
check_proto_product.sh OTEL integration in cpp (#22175) 2023-03-21 16:31:57 +08:00
collect_arrow_dep.sh
core_build.sh enhance: enable asan for cpp unittest (#37041) 2024-10-23 17:21:27 +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 feat: Support stats task to sort segment by PK (#35054) 2024-09-02 14:19:03 +08:00
gofmt.sh Add amazonlinux image, prepare to remove Centos7 image, remove openblas image (#26368) 2023-08-18 18:32:19 +08:00
install_deps_embd.sh Remove Ubuntu18.04 support (#24666) 2023-06-06 14:06:36 +08:00
install_deps_msys.sh enhance: upgrade conan version (#35215) 2024-08-02 19:22:15 +08:00
install_deps.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
OWNERS
package_windows.sh
README.md enhance: use docker compose instead of docker-compose (#35208) 2024-08-02 19:32:32 +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: [skip e2e] add make run-test-cpp with support for filter gtest (#35829) 2024-08-29 20:03:02 +08:00
run_docker.sh enhance: use docker compose instead of docker-compose (#35208) 2024-08-02 19:32:32 +08:00
run_go_codecov.sh enhance: [GoSDK] Remove example in main pkg to make ut script work (#37472) 2024-11-07 10:50:25 +08:00
run_go_unittest.sh enhance: streaming service client (#34656) 2024-08-05 21:38:15 +08:00
run_intergration_test.sh test: support segment release in integration test (#31190) 2024-04-09 11:39:17 +08:00
setenv.sh enhance: enable asan for cpp unittest (#37041) 2024-10-23 17:21:27 +08:00
standalone_embed.sh [automated] Bump milvus version to v2.5.0-beta (#37961) 2024-11-23 21:48:32 +08:00
start_cluster.sh fix: Add LD_LIBRARY_PATH when local start milvus (#29287) 2023-12-19 10:08:41 +08:00
start_standalone.sh fix: Add LD_LIBRARY_PATH when local start milvus (#29287) 2023-12-19 10:08:41 +08:00
stop_graceful.sh refine stop order (#28016) 2023-11-01 11:40:15 +08:00
stop.sh Fix sript stop unable to find milvus process (#27957) 2023-10-26 20:44:14 +08:00
update-api-version.sh Fix update-api-version.sh for master branch (#24773) 2023-06-09 13:10:35 +08:00

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