mirror of
https://github.com/minio/minio.git
synced 2025-04-21 19:14:39 -04:00
fix: update default values for listing, replication workers
This commit is contained in:
parent
f9886bea2a
commit
b251ae5f3d
@ -83,7 +83,7 @@ var (
|
|||||||
},
|
},
|
||||||
config.KV{
|
config.KV{
|
||||||
Key: apiListQuorum,
|
Key: apiListQuorum,
|
||||||
Value: "strict",
|
Value: "optimal",
|
||||||
},
|
},
|
||||||
config.KV{
|
config.KV{
|
||||||
Key: apiExtendListCacheLife,
|
Key: apiExtendListCacheLife,
|
||||||
@ -91,11 +91,11 @@ var (
|
|||||||
},
|
},
|
||||||
config.KV{
|
config.KV{
|
||||||
Key: apiReplicationWorkers,
|
Key: apiReplicationWorkers,
|
||||||
Value: "500",
|
Value: "250",
|
||||||
},
|
},
|
||||||
config.KV{
|
config.KV{
|
||||||
Key: apiReplicationFailedWorkers,
|
Key: apiReplicationFailedWorkers,
|
||||||
Value: "4",
|
Value: "8",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@ -107,7 +107,7 @@ type Config struct {
|
|||||||
ClusterDeadline time.Duration `json:"cluster_deadline"`
|
ClusterDeadline time.Duration `json:"cluster_deadline"`
|
||||||
CorsAllowOrigin []string `json:"cors_allow_origin"`
|
CorsAllowOrigin []string `json:"cors_allow_origin"`
|
||||||
RemoteTransportDeadline time.Duration `json:"remote_transport_deadline"`
|
RemoteTransportDeadline time.Duration `json:"remote_transport_deadline"`
|
||||||
ListQuorum string `json:"list_strict_quorum"`
|
ListQuorum string `json:"list_quorum"`
|
||||||
ExtendListLife time.Duration `json:"extend_list_cache_life"`
|
ExtendListLife time.Duration `json:"extend_list_cache_life"`
|
||||||
ReplicationWorkers int `json:"replication_workers"`
|
ReplicationWorkers int `json:"replication_workers"`
|
||||||
ReplicationFailedWorkers int `json:"replication_failed_workers"`
|
ReplicationFailedWorkers int `json:"replication_failed_workers"`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user