diff options
| author | Chris Lu <chris.lu@uber.com> | 2021-03-30 00:18:15 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@uber.com> | 2021-03-30 00:18:15 -0700 |
| commit | 6e072681f4673eb7404959fe97bc080571a4e623 (patch) | |
| tree | 04c46eb137b0be32061cf83519dc662e06bc7ab2 | |
| parent | 23abb01600428795a2c73d7f95a7c4430ba7ba39 (diff) | |
| download | seaweedfs-csi-driver-6e072681f4673eb7404959fe97bc080571a4e623.tar.xz seaweedfs-csi-driver-6e072681f4673eb7404959fe97bc080571a4e623.zip | |
reduce default concurrentWriters to 32
| -rw-r--r-- | cmd/seaweedfs-csi-driver/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/seaweedfs-csi-driver/main.go b/cmd/seaweedfs-csi-driver/main.go index d6d9e28..58af0aa 100644 --- a/cmd/seaweedfs-csi-driver/main.go +++ b/cmd/seaweedfs-csi-driver/main.go @@ -15,7 +15,7 @@ var ( endpoint = flag.String("endpoint", "unix://tmp/seaweedfs-csi.sock", "CSI endpoint to accept gRPC calls") nodeID = flag.String("nodeid", "", "node id") version = flag.Bool("version", false, "Print the version and exit.") - concurrentWriters = flag.Int("concurrentWriters", 128, "limit concurrent goroutine writers if not 0") + concurrentWriters = flag.Int("concurrentWriters", 32, "limit concurrent goroutine writers if not 0") ) func main() { |
