Skip to content

Commit

Permalink
Revert "HADOOP-19015. Increase fs.s3a.connection.maximum to 500 to mi…
Browse files Browse the repository at this point in the history
…nimize risk of Timeout waiting for connection from pool"

Pushed it by mistake. So sorry.
This reverts commit e28f83a.
  • Loading branch information
mukund-thakur committed Dec 19, 2023
1 parent e28f83a commit 01bde4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1530,7 +1530,7 @@

<property>
<name>fs.s3a.connection.maximum</name>
<value>500</value>
<value>200</value>
<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
threads being blocked waiting for new HTTPS connections.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private Constants() {
* Future releases are likely to increase this value.
* Keep in sync with the value in {@code core-default.xml}
*/
public static final int DEFAULT_MAXIMUM_CONNECTIONS = 500;
public static final int DEFAULT_MAXIMUM_CONNECTIONS = 200;

/**
* Configuration option to configure expiration time of
Expand Down

0 comments on commit 01bde4a

Please sign in to comment.