You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: java-bigquerystorage/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/JsonStreamWriter.java
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -312,8 +312,21 @@ public Builder setReconnectAfter10M(boolean reconnectAfter10M) {
312
312
}
313
313
314
314
/**
315
-
* Enable multiplexing for this writer. In multiplexing mode tables will share the same
316
-
* connection if possible until the connection is overwhelmed.
315
+
* Enables a static shared bidi-streaming connection pool that would dynamically scale up
316
+
* connections based on backlog within each individual connection. A single table's traffic
317
+
* might be splitted into multiple connections if needed. Different tables' traffic can also be
318
+
* multiplexed within the same connection.
319
+
*
320
+
* <pre>
321
+
* Each connection pool would have a upper limit (default to 20) and lower limit (default to
322
+
* 2) for the number of active connections. This parameter can be tuned via a static method
Copy file name to clipboardExpand all lines: java-bigquerystorage/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1/StreamWriter.java
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -729,8 +729,21 @@ public Builder setEndpoint(String endpoint) {
729
729
}
730
730
731
731
/**
732
-
* Enable multiplexing for this writer. In multiplexing mode tables will share the same
733
-
* connection if possible until the connection is overwhelmed.
732
+
* Enables a static shared bidi-streaming connection pool that would dynamically scale up
733
+
* connections based on backlog within each individual connection. A single table's traffic
734
+
* might be splitted into multiple connections if needed. Different tables' traffic can also be
735
+
* multiplexed within the same connection.
736
+
*
737
+
* <pre>
738
+
* Each connection pool would have a upper limit (default to 20) and lower limit (default to
739
+
* 2) for the number of active connections. This parameter can be tuned via a static method
0 commit comments