From a42b576382a4113c252720e19f6ada87a85e9dec Mon Sep 17 00:00:00 2001 From: Minio Trusted Date: Wed, 23 Mar 2022 16:54:24 -0700 Subject: [PATCH] keep maximum concurrent operations to 512 (to sustain upto 1024 open fds) --- cmd/xl-storage-disk-id-check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/xl-storage-disk-id-check.go b/cmd/xl-storage-disk-id-check.go index ab9e9c1a5..26f2fa345 100644 --- a/cmd/xl-storage-disk-id-check.go +++ b/cmd/xl-storage-disk-id-check.go @@ -519,7 +519,7 @@ const ( // diskMaxConcurrent is the maximum number of running concurrent operations // for local and (incoming) remote disk ops respectively. -var diskMaxConcurrent = 50 +var diskMaxConcurrent = 512 func init() { if s, ok := os.LookupEnv("_MINIO_DISK_MAX_CONCURRENT"); ok && s != "" {