mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
* Fix bug: search timeout Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Add log and fix unittest bug Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
31 lines
825 B
Bash
Executable File
31 lines
825 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 proxyservice"
|
|
nohup ./bin/milvus run proxyservice > ~/proxyservice.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 &
|