This is an automated email from the ASF dual-hosted git repository.
kirs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 8a2dff15bdc [fix](s3)fix: unify AWS connection parameter between FE
and BE (#58514)
8a2dff15bdc is described below
commit 8a2dff15bdcb4c53a80272e3df42b575d66eb613
Author: Calvin Kirs <[email protected]>
AuthorDate: Mon Dec 1 10:46:35 2025 +0800
[fix](s3)fix: unify AWS connection parameter between FE and BE (#58514)
FE sends AWS_MAX_CONNECTIONS, but BE only recognizes AWS_MAX_CONN, so
the parameter does not take effect.
---
be/src/util/s3_util.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/util/s3_util.cpp b/be/src/util/s3_util.cpp
index 172f5f85419..fdb576fbcfb 100644
--- a/be/src/util/s3_util.cpp
+++ b/be/src/util/s3_util.cpp
@@ -114,7 +114,7 @@ constexpr char S3_SK[] = "AWS_SECRET_KEY";
constexpr char S3_ENDPOINT[] = "AWS_ENDPOINT";
constexpr char S3_REGION[] = "AWS_REGION";
constexpr char S3_TOKEN[] = "AWS_TOKEN";
-constexpr char S3_MAX_CONN_SIZE[] = "AWS_MAX_CONN_SIZE";
+constexpr char S3_MAX_CONN_SIZE[] = "AWS_MAX_CONNECTIONS";
constexpr char S3_REQUEST_TIMEOUT_MS[] = "AWS_REQUEST_TIMEOUT_MS";
constexpr char S3_CONN_TIMEOUT_MS[] = "AWS_CONNECTION_TIMEOUT_MS";
constexpr char S3_NEED_OVERRIDE_ENDPOINT[] = "AWS_NEED_OVERRIDE_ENDPOINT";
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]