-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[skip ci] Update README.md and DEVELOPMENT.md
Signed-off-by: quicksilver <zhifeng.zhang@zilliz.com>
- Loading branch information
1 parent
c468ff3
commit d877892
Showing
7 changed files
with
72 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
cd .. | ||
|
||
echo "starting rootcoord" | ||
nohup ./bin/milvus run rootcoord > /tmp/rootcoord.log 2>&1 & | ||
|
||
echo "starting datacoord" | ||
nohup ./bin/milvus run datacoord > /tmp/datacoord.log 2>&1 & | ||
|
||
echo "starting datanode" | ||
nohup ./bin/milvus run datanode > /tmp/datanode.log 2>&1 & | ||
|
||
echo "starting proxy" | ||
nohup ./bin/milvus run proxy > /tmp/proxy.log 2>&1 & | ||
|
||
echo "starting querycoord" | ||
nohup ./bin/milvus run querycoord > /tmp/querycoord.log 2>&1 & | ||
|
||
echo "starting querynode" | ||
nohup ./bin/milvus run querynode > /tmp/querynode.log 2>&1 & | ||
|
||
echo "starting indexcoord" | ||
nohup ./bin/milvus run indexcoord > /tmp/indexcoord.log 2>&1 & | ||
|
||
echo "starting indexnode" | ||
nohup ./bin/milvus run indexnode > /tmp/indexnode.log 2>&1 & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cd .. | ||
|
||
echo "starting standalone" | ||
nohup ./bin/milvus run standalone > /tmp/standalone.log 2>&1 & |