mirror of
https://github.com/minio/minio.git
synced 2025-01-11 15:03:22 -05:00
Increase max idle connections from 100 to 4096 (#6244)
This is to be inline with our benchmarking results
This commit is contained in:
parent
5f69f04909
commit
bd2b22572f
@ -116,11 +116,13 @@ func NewClient(serviceURL *xnet.URL, tlsConfig *tls.Config, timeout time.Duratio
|
|||||||
Transport: &http.Transport{
|
Transport: &http.Transport{
|
||||||
Proxy: http.ProxyFromEnvironment,
|
Proxy: http.ProxyFromEnvironment,
|
||||||
DialContext: newCustomDialContext(timeout),
|
DialContext: newCustomDialContext(timeout),
|
||||||
MaxIdleConns: 100,
|
MaxIdleConnsPerHost: 4096,
|
||||||
|
MaxIdleConns: 4096,
|
||||||
IdleConnTimeout: 90 * time.Second,
|
IdleConnTimeout: 90 * time.Second,
|
||||||
TLSHandshakeTimeout: 10 * time.Second,
|
TLSHandshakeTimeout: 10 * time.Second,
|
||||||
ExpectContinueTimeout: 1 * time.Second,
|
ExpectContinueTimeout: 1 * time.Second,
|
||||||
TLSClientConfig: tlsConfig,
|
TLSClientConfig: tlsConfig,
|
||||||
|
DisableCompression: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
serviceURL: serviceURL,
|
serviceURL: serviceURL,
|
||||||
|
Loading…
Reference in New Issue
Block a user