milvus/scripts/start.sh
zhenshan.cao b0b8f58192
Fix bug: search timeout (#5557)
* 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>
2021-06-03 14:58:34 +08:00

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 &