diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-02-13 15:47:08 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-02-13 15:47:08 -0800 |
| commit | ef76365ec211e1af5b8085a2496c8d9941316e9e (patch) | |
| tree | 4f7c2e759b46ca0938b1093dc66959ffed5ae5be /weed/command/benchmark.go | |
| parent | 7ce647f27e756b8f09c0dc0c7ca687e243d91ae0 (diff) | |
| download | seaweedfs-ef76365ec211e1af5b8085a2496c8d9941316e9e.tar.xz seaweedfs-ef76365ec211e1af5b8085a2496c8d9941316e9e.zip | |
adjust help message
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 c3ca6370a..0c8c3b1c0 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] choose between hard drive or solid state drive") + b.diskType = cmdBenchmark.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") 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") |
