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/benchmark.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/benchmark.go')
| -rw-r--r-- | weed/command/benchmark.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/benchmark.go b/weed/command/benchmark.go index 0c8c3b1c0..370ec9eaf 100644 --- a/weed/command/benchmark.go +++ b/weed/command/benchmark.go @@ -63,7 +63,7 @@ func init() { b.sequentialRead = cmdBenchmark.Flag.Bool("readSequentially", false, "randomly read by ids from \"-list\" specified file") b.collection = cmdBenchmark.Flag.String("collection", "benchmark", "write data to this collection") b.replication = cmdBenchmark.Flag.String("replication", "000", "replication type") - b.diskType = cmdBenchmark.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") + b.diskType = cmdBenchmark.Flag.String("disk", "", "[hdd|ssd] hard drive or solid state drive") b.cpuprofile = cmdBenchmark.Flag.String("cpuprofile", "", "cpu profile output file") b.maxCpu = cmdBenchmark.Flag.Int("maxCpu", 0, "maximum number of CPUs. 0 means all available CPUs") b.fsync = cmdBenchmark.Flag.Bool("fsync", false, "flush data to disk after write") |
