diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-14 11:38:32 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-14 11:38:43 -0800 |
| commit | 0bc3a1f9e88baca5f592d50ca028d169c86f0dc8 (patch) | |
| tree | 3616f3195458db82b987cc8d29a0898b1a72c7eb /weed/command/filer_copy.go | |
| parent | 4f4c52a6c7071bb4cdf3e5bc77096878bffa119c (diff) | |
| download | seaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.tar.xz seaweedfs-0bc3a1f9e88baca5f592d50ca028d169c86f0dc8.zip | |
disk type only supports hdd and ssd, not ready for random tags yet
Diffstat (limited to 'weed/command/filer_copy.go')
| -rw-r--r-- | weed/command/filer_copy.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/filer_copy.go b/weed/command/filer_copy.go index 8be1b09ba..20f00a3eb 100644 --- a/weed/command/filer_copy.go +++ b/weed/command/filer_copy.go @@ -55,7 +55,7 @@ func init() { copy.replication = cmdCopy.Flag.String("replication", "", "replication type") copy.collection = cmdCopy.Flag.String("collection", "", "optional collection name") copy.ttl = cmdCopy.Flag.String("ttl", "", "time to live, e.g.: 1m, 1h, 1d, 1M, 1y") - copy.diskType = cmdCopy.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") + copy.diskType = cmdCopy.Flag.String("disk", "", "[hdd|ssd] hard drive or solid state drive") copy.maxMB = cmdCopy.Flag.Int("maxMB", 32, "split files larger than the limit") copy.concurrenctFiles = cmdCopy.Flag.Int("c", 8, "concurrent file copy goroutines") copy.concurrenctChunks = cmdCopy.Flag.Int("concurrentChunks", 8, "concurrent chunk copy goroutines for each file") |
