mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
* [skip ci] Remove ProxyService Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Change helm branch Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fix bug: paramstable crashed Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
28 lines
731 B
Bash
Executable File
28 lines
731 B
Bash
Executable File
cd ..
|
|
|
|
echo "starting master"
|
|
nohup ./bin/milvus run master > ~/masterservice.out 2>&1 &
|
|
|
|
echo "starting dataservice"
|
|
nohup ./bin/milvus run dataservice > ~/dataservice.out 2>&1 &
|
|
|
|
echo "starting datanode"
|
|
nohup ./bin/milvus run datanode > ~/datanode.out 2>&1 &
|
|
|
|
echo "starting proxynode"
|
|
nohup ./bin/milvus run proxynode > ~/proxynode.out 2>&1 &
|
|
|
|
echo "starting queryservice"
|
|
nohup ./bin/milvus run queryservice > ~/queryservice.out 2>&1 &
|
|
|
|
echo "starting querynode1"
|
|
export QUERY_NODE_ID=1
|
|
nohup ./bin/milvus run querynode > ~/querynode1.out 2>&1 &
|
|
|
|
|
|
echo "starting indexservice"
|
|
nohup ./bin/milvus run indexservice > ~/indexservice.out 2>&1 &
|
|
|
|
echo "starting indexnode"
|
|
nohup ./bin/milvus run indexnode > ~/indexnode.out 2>&1 &
|