milvus/scripts
quicksilver 9322cf7484
[skip ci] Update DEVELOPMENT.md for compile on CentOS (#6407)
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
2021-07-09 16:24:39 +08:00
..
check_proto_product.sh Add the check of C++ code in the CI progress 2020-11-18 10:07:05 +08:00
core_build.sh Reopen segment test assertion 2020-11-25 16:24:57 +08:00
cwrapper_build.sh Add cache for thirdparty files cache 2020-12-08 18:51:07 +08:00
cwrapper_dablooms_build.sh Add dablooms (#5440) 2021-05-28 10:23:30 +08:00
cwrapper_rocksdb_build.sh Fix compile error on CentOS (#6359) 2021-07-08 15:43:45 +08:00
devcontainer.sh Update main.yaml for Github Action (#6381) 2021-07-09 11:59:09 +08:00
gofmt.sh Fix go format bug 2021-01-05 14:20:45 +08:00
install_deps.sh [skip ci] Update DEVELOPMENT.md for compile on CentOS (#6407) 2021-07-09 16:24:39 +08:00
OWNERS Update OWNERS 2021-05-30 18:58:47 +08:00
proto_gen_go.sh Update component names in config files (#5989) 2021-06-22 19:08:03 +08:00
README.md Add cpplint and optimize the check of c++ code 2020-11-23 19:57:05 +08:00
run_cpp_unittest.sh Update main.yaml for Github Action (#6381) 2021-07-09 11:59:09 +08:00
run_docker.sh rename service to coord (#6020) 2021-06-23 16:14:08 +08:00
run_go_codecov.sh [skip ci]Add go code coverage (#5024) 2021-04-24 15:10:24 +08:00
run_go_unittest.sh Update component names in config files (#5989) 2021-06-22 19:08:03 +08:00
start_cluster.sh [skip ci] Update README.md and DEVELOPMENT.md (#6173) 2021-06-28 16:30:17 +08:00
start_standalone.sh [skip ci] Update README.md and DEVELOPMENT.md (#6173) 2021-06-28 16:30:17 +08:00
stop.sh Fix bug: search timeout (#5557) 2021-06-03 14:58:34 +08:00

Compile and install milvus-dustributed

Environment

    OS: Ubuntu 18.04
    go1.15
    cmake: >=3.16
    gcc 7.5

Install 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

    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" LAPACKE="NO_LAPACKE=1" 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

    make all

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

Start service

    cd deployments
    docker-compose up -d

Run unittest

    make unittest