mirror of
https://github.com/minio/minio.git
synced 2025-11-07 21:02:58 -05:00
keep maximum concurrent operations to 512 (to sustain upto 1024 open fds)
This commit is contained in:
@@ -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 != "" {
|
||||
|
||||
Reference in New Issue
Block a user