HADOOP-19015. Increase fs.s3a.connection.maximum to 500 to minimize risk of Timeout waiting for connection from pool
This commit is contained in:
parent
f52c7d3e9a
commit
e28f83a1eb
@ -1530,7 +1530,7 @@
|
|||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>fs.s3a.connection.maximum</name>
|
<name>fs.s3a.connection.maximum</name>
|
||||||
<value>200</value>
|
<value>500</value>
|
||||||
<description>Controls the maximum number of simultaneous connections to S3.
|
<description>Controls the maximum number of simultaneous connections to S3.
|
||||||
This must be bigger than the value of fs.s3a.threads.max so as to stop
|
This must be bigger than the value of fs.s3a.threads.max so as to stop
|
||||||
threads being blocked waiting for new HTTPS connections.
|
threads being blocked waiting for new HTTPS connections.
|
||||||
|
@ -173,7 +173,7 @@ private Constants() {
|
|||||||
* Future releases are likely to increase this value.
|
* Future releases are likely to increase this value.
|
||||||
* Keep in sync with the value in {@code core-default.xml}
|
* Keep in sync with the value in {@code core-default.xml}
|
||||||
*/
|
*/
|
||||||
public static final int DEFAULT_MAXIMUM_CONNECTIONS = 200;
|
public static final int DEFAULT_MAXIMUM_CONNECTIONS = 500;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Configuration option to configure expiration time of
|
* Configuration option to configure expiration time of
|
||||||
|
Loading…
Reference in New Issue
Block a user