File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
databricks-sdk-java/src/main/java/com/databricks/sdk/core/commons Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 11{
2- "java.compile.nullAnalysis.mode" : " automatic"
2+ "java.compile.nullAnalysis.mode" : " automatic" ,
33}
Original file line number Diff line number Diff line change 33## Release v0.70.0
44
55### New Features and Improvements
6+ * Increase maximum number of concurrent HTTP connections per Workspace from 2 to 20.
67
78### Bug Fixes
89
Original file line number Diff line number Diff line change @@ -141,7 +141,11 @@ private CommonsHttpClient(Builder builder) {
141141 } else {
142142 PoolingHttpClientConnectionManager connectionManager =
143143 new PoolingHttpClientConnectionManager ();
144+ // Total number of connections allowed by the connection manager.
144145 connectionManager .setMaxTotal (100 );
146+ // Maximum number of connections per route. In most cases, this means per Workspace.
147+ // DataPlane resources have a dedicated route and are not subject to this limit.
148+ connectionManager .setDefaultMaxPerRoute (20 );
145149 httpClientBuilder .setConnectionManager (connectionManager );
146150 }
147151 if (builder .requestRetryHandler != null ) {
You can’t perform that action at this time.
0 commit comments