keep maximum concurrent operations to 512 (to sustain upto 1024 open fds)

This commit is contained in:
Minio Trusted 2022-03-23 16:54:24 -07:00
parent fb9b53026d
commit a42b576382

View File

@ -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 != "" {