Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Release v0.70.0

### New Features and Improvements
* Increase maximum number of concurrent HTTP connections per Workspace from 2 to 20.

### Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ private CommonsHttpClient(Builder builder) {
} else {
PoolingHttpClientConnectionManager connectionManager =
new PoolingHttpClientConnectionManager();
// Total number of connections allowed by the connection manager.
connectionManager.setMaxTotal(100);
// Maximum number of connections per route. In most cases, this means per Workspace.
// DataPlane resources have a dedicated route and are not subject to this limit.
connectionManager.setDefaultMaxPerRoute(20);
httpClientBuilder.setConnectionManager(connectionManager);
}
if (builder.requestRetryHandler != null) {
Expand Down
Loading