mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package milvus
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
var (
|
|
usageLine = fmt.Sprintf("Usage:\n"+
|
|
"%s\n%s\n%s\n%s\n", runLine, stopLine, mckLine, serverTypeLine)
|
|
|
|
serverTypeLine = `
|
|
[server type]
|
|
` + strings.Join(typeutil.ServerTypeList(), "\n\t") + `
|
|
mixture
|
|
`
|
|
runLine = `
|
|
milvus run [server type] [flags]
|
|
Start a Milvus Server.
|
|
Tips: Only the server type is 'mixture', flags about starting server can be used.
|
|
[flags]
|
|
-rootcoord 'true'
|
|
Start the rootcoord server.
|
|
-querycoord 'true'
|
|
Start the querycoord server.
|
|
-indexcoord 'true'
|
|
Start the indexcoord server.
|
|
-datacoord 'true'
|
|
Start the datacoord server.
|
|
-alias ''
|
|
Set alias
|
|
`
|
|
stopLine = `
|
|
milvus stop [server type] [flags]
|
|
Stop a Milvus Server.
|
|
[flags]
|
|
-alias ''
|
|
Set alias
|
|
`
|
|
mckLine = `
|
|
milvus mck run [flags]
|
|
Milvus data consistency check.
|
|
Tips: The flags are optional.
|
|
[flags]
|
|
-etcdIp ''
|
|
Ip to connect the ectd server.
|
|
-etcdRootPath ''
|
|
The root path of operating the etcd data.
|
|
-minioAddress ''
|
|
Address to connect the minio server.
|
|
-minioUsername ''
|
|
The username to login the minio server.
|
|
-minioPassword ''
|
|
The password to login the minio server.
|
|
-minioUseSSL 'false'
|
|
Whether to use the ssl to connect the minio server.
|
|
-minioBucketName ''
|
|
The bucket to operate the data in it
|
|
|
|
milvus mck cleanTrash [flags]
|
|
Clean the back inconsistent data
|
|
Tips: The flags is the same as its of the 'milvus mck [flags]'
|
|
`
|
|
)
|