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: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/EnhancedBigtableStubSettings.java
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -131,9 +131,9 @@ public class EnhancedBigtableStubSettings extends StubSettings<EnhancedBigtableS
131
131
.setMaxRetryDelay(Duration.ofMinutes(1))
132
132
.setMaxAttempts(10)
133
133
.setJittered(true)
134
-
.setInitialRpcTimeout(Duration.ofMinutes(5))
134
+
.setInitialRpcTimeout(Duration.ofMinutes(30))
135
135
.setRpcTimeoutMultiplier(2.0)
136
-
.setMaxRpcTimeout(Duration.ofMinutes(5))
136
+
.setMaxRpcTimeout(Duration.ofMinutes(30))
137
137
.setTotalTimeout(Duration.ofHours(12))
138
138
.build();
139
139
@@ -352,17 +352,21 @@ public static GoogleCredentialsProvider.Builder defaultCredentialsProviderBuilde
352
352
*
353
353
* <ul>
354
354
* <li>{@link ServerStreamingCallSettings.Builder#setIdleTimeout Default idle timeout} is set to
355
-
* 5 mins.
355
+
* 5 mins. Idle timeout is how long to wait before considering the stream orphaned by the
356
+
* user and closing it.
357
+
* <li>{@link ServerStreamingCallSettings.Builder#setWaitTimeout Default wait timeout} is set to
358
+
* 5 mins. Wait timeout is the maximum amount of time to wait for the next message from the
0 commit comments