105
105
import com .google .cloud .bigtable .data .v2 .stub .changestream .GenerateInitialChangeStreamPartitionsUserCallable ;
106
106
import com .google .cloud .bigtable .data .v2 .stub .changestream .ReadChangeStreamResumptionStrategy ;
107
107
import com .google .cloud .bigtable .data .v2 .stub .changestream .ReadChangeStreamUserCallable ;
108
- import com .google .cloud .bigtable .data .v2 .stub .metrics .BigtableTracer ;
109
108
import com .google .cloud .bigtable .data .v2 .stub .metrics .BigtableTracerStreamingCallable ;
110
109
import com .google .cloud .bigtable .data .v2 .stub .metrics .BigtableTracerUnaryCallable ;
111
110
import com .google .cloud .bigtable .data .v2 .stub .metrics .BuiltinMetricsTracerFactory ;
@@ -549,9 +548,7 @@ public <RowT> ServerStreamingCallable<Query, RowT> createReadRowsCallable(
549
548
return traced .withDefaultCallContext (
550
549
clientContext
551
550
.getDefaultCallContext ()
552
- .withOption (
553
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
554
- settings .readRowsSettings ().getRetrySettings ().getTotalTimeout ()));
551
+ .withRetrySettings (settings .readRowsSettings ().getRetrySettings ()));
555
552
}
556
553
557
554
/**
@@ -588,9 +585,7 @@ public <RowT> UnaryCallable<Query, RowT> createReadRowCallable(RowAdapter<RowT>
588
585
return traced .withDefaultCallContext (
589
586
clientContext
590
587
.getDefaultCallContext ()
591
- .withOption (
592
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
593
- settings .readRowSettings ().getRetrySettings ().getTotalTimeout ()));
588
+ .withRetrySettings (settings .readRowSettings ().getRetrySettings ()));
594
589
} else {
595
590
ServerStreamingCallable <ReadRowsRequest , RowT > readRowsCallable =
596
591
createReadRowsBaseCallable (
@@ -612,9 +607,7 @@ public <RowT> UnaryCallable<Query, RowT> createReadRowCallable(RowAdapter<RowT>
612
607
readRowCallable ,
613
608
clientContext
614
609
.getDefaultCallContext ()
615
- .withOption (
616
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
617
- settings .readRowSettings ().getRetrySettings ().getTotalTimeout ()),
610
+ .withRetrySettings (settings .readRowSettings ().getRetrySettings ()),
618
611
clientContext .getTracerFactory (),
619
612
getSpanName ("ReadRow" ),
620
613
/*allowNoResponses=*/ true );
@@ -733,9 +726,7 @@ private <RowT> UnaryCallable<Query, List<RowT>> createBulkReadRowsCallable(
733
726
return traced .withDefaultCallContext (
734
727
clientContext
735
728
.getDefaultCallContext ()
736
- .withOption (
737
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
738
- settings .bulkReadRowsSettings ().getRetrySettings ().getTotalTimeout ()));
729
+ .withRetrySettings (settings .readRowsSettings ().getRetrySettings ()));
739
730
}
740
731
741
732
/**
@@ -805,9 +796,7 @@ public ApiFuture<List<KeyOffset>> futureCall(String s, ApiCallContext apiCallCon
805
796
.withDefaultCallContext (
806
797
clientContext
807
798
.getDefaultCallContext ()
808
- .withOption (
809
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
810
- settings .sampleRowKeysSettings ().getRetrySettings ().getTotalTimeout ())));
799
+ .withRetrySettings (settings .sampleRowKeysSettings ().getRetrySettings ())));
811
800
}
812
801
813
802
/**
@@ -933,9 +922,7 @@ private UnaryCallable<BulkMutation, MutateRowsAttemptResult> createMutateRowsBas
933
922
return traced .withDefaultCallContext (
934
923
clientContext
935
924
.getDefaultCallContext ()
936
- .withOption (
937
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
938
- settings .bulkMutateRowsSettings ().getRetrySettings ().getTotalTimeout ()));
925
+ .withRetrySettings (settings .bulkMutateRowsSettings ().getRetrySettings ()));
939
926
}
940
927
941
928
/**
@@ -1143,12 +1130,8 @@ private UnaryCallable<ReadModifyWriteRow, Row> createReadModifyWriteRowCallable(
1143
1130
return traced .withDefaultCallContext (
1144
1131
clientContext
1145
1132
.getDefaultCallContext ()
1146
- .withOption (
1147
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1148
- settings
1149
- .generateInitialChangeStreamPartitionsSettings ()
1150
- .getRetrySettings ()
1151
- .getTotalTimeout ()));
1133
+ .withRetrySettings (
1134
+ settings .generateInitialChangeStreamPartitionsSettings ().getRetrySettings ()));
1152
1135
}
1153
1136
1154
1137
/**
@@ -1223,9 +1206,7 @@ private UnaryCallable<ReadModifyWriteRow, Row> createReadModifyWriteRowCallable(
1223
1206
return traced .withDefaultCallContext (
1224
1207
clientContext
1225
1208
.getDefaultCallContext ()
1226
- .withOption (
1227
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1228
- settings .readChangeStreamSettings ().getRetrySettings ().getTotalTimeout ()));
1209
+ .withRetrySettings (settings .readChangeStreamSettings ().getRetrySettings ()));
1229
1210
}
1230
1211
1231
1212
/**
@@ -1314,9 +1295,7 @@ public Map<String, String> extract(ExecuteQueryRequest executeQueryRequest) {
1314
1295
traced .withDefaultCallContext (
1315
1296
clientContext
1316
1297
.getDefaultCallContext ()
1317
- .withOption (
1318
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1319
- settings .executeQuerySettings ().getRetrySettings ().getTotalTimeout ())),
1298
+ .withRetrySettings (settings .executeQuerySettings ().getRetrySettings ())),
1320
1299
requestContext );
1321
1300
}
1322
1301
@@ -1396,11 +1375,7 @@ public ApiFuture<RespT> futureCall(ReqT reqT, ApiCallContext apiCallContext) {
1396
1375
getSpanName (methodDescriptor .getBareMethodName ()));
1397
1376
1398
1377
return traced .withDefaultCallContext (
1399
- clientContext
1400
- .getDefaultCallContext ()
1401
- .withOption (
1402
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1403
- callSettings .getRetrySettings ().getTotalTimeout ()));
1378
+ clientContext .getDefaultCallContext ().withRetrySettings (callSettings .getRetrySettings ()));
1404
1379
}
1405
1380
1406
1381
private <BaseReqT , BaseRespT , ReqT , RespT > UnaryCallable <ReqT , RespT > createUnaryCallableNew (
@@ -1429,11 +1404,7 @@ private <BaseReqT, BaseRespT, ReqT, RespT> UnaryCallable<ReqT, RespT> createUnar
1429
1404
1430
1405
return new BigtableUnaryOperationCallable <>(
1431
1406
transformed ,
1432
- clientContext
1433
- .getDefaultCallContext ()
1434
- .withOption (
1435
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1436
- callSettings .getRetrySettings ().getTotalTimeout ()),
1407
+ clientContext .getDefaultCallContext ().withRetrySettings (callSettings .getRetrySettings ()),
1437
1408
clientContext .getTracerFactory (),
1438
1409
getSpanName (methodDescriptor .getBareMethodName ()),
1439
1410
/* allowNoResponse= */ false );
@@ -1470,9 +1441,7 @@ public Map<String, String> extract(PingAndWarmRequest request) {
1470
1441
return pingAndWarm .withDefaultCallContext (
1471
1442
clientContext
1472
1443
.getDefaultCallContext ()
1473
- .withOption (
1474
- BigtableTracer .OPERATION_TIMEOUT_KEY ,
1475
- settings .pingAndWarmSettings ().getRetrySettings ().getTotalTimeout ()));
1444
+ .withRetrySettings (settings .pingAndWarmSettings ().getRetrySettings ()));
1476
1445
}
1477
1446
1478
1447
private <RequestT , ResponseT > UnaryCallable <RequestT , ResponseT > withRetries (
0 commit comments