diff --git a/be/src/util/s3_util.cpp b/be/src/util/s3_util.cpp index 172f5f85419fb4..55b48e64f6d9b3 100644 --- a/be/src/util/s3_util.cpp +++ b/be/src/util/s3_util.cpp @@ -369,8 +369,7 @@ std::shared_ptr S3ClientFactory::_create_s3_client( if (s3_conf.max_connections > 0) { aws_config.maxConnections = s3_conf.max_connections; } else { - // AWS SDK max concurrent tcp connections for a single http client to use. Default 25. - aws_config.maxConnections = std::max(config::doris_scanner_thread_pool_thread_num, 25); + aws_config.maxConnections = 102400; } aws_config.requestTimeoutMs = 30000;