What is the limit of connection pool size for s3 client? #3065
Answered
by
debora-ito
sfc-gh-schen
asked this question in
Q&A
-
Per this doc https://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/com/amazonaws/ClientConfiguration.html#DEFAULT_MAX_CONNECTIONS |
Beta Was this translation helpful? Give feedback.
Answered by
debora-ito
Dec 8, 2023
Replies: 1 comment 1 reply
-
In theory, the upper limit of max connections is the maximum number of file descriptors your operating system can have. Note that increasing the number of concurrent connections can increase client throughput, but it also means more resources your application has to manage simultaneously. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sfc-gh-schen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In theory, the upper limit of max connections is the maximum number of file descriptors your operating system can have.
Note that increasing the number of concurrent connections can increase client throughput, but it also means more resources your application has to manage simultaneously.