@@ -101,9 +101,6 @@ def __init__(
101
101
102
102
Client should be created within an async context (running event loop)
103
103
104
- Warning: BigtableDataClientAsync is currently in preview, and is not
105
- yet recommended for production use.
106
-
107
104
Args:
108
105
project: the project which the client acts on behalf of.
109
106
If not passed, falls back to the default inferred
@@ -566,9 +563,6 @@ async def read_rows_stream(
566
563
Failed requests within operation_timeout will be retried based on the
567
564
retryable_errors list until operation_timeout is reached.
568
565
569
- Warning: BigtableDataClientAsync is currently in preview, and is not
570
- yet recommended for production use.
571
-
572
566
Args:
573
567
- query: contains details about which rows to return
574
568
- operation_timeout: the time budget for the entire operation, in seconds.
@@ -620,9 +614,6 @@ async def read_rows(
620
614
Failed requests within operation_timeout will be retried based on the
621
615
retryable_errors list until operation_timeout is reached.
622
616
623
- Warning: BigtableDataClientAsync is currently in preview, and is not
624
- yet recommended for production use.
625
-
626
617
Args:
627
618
- query: contains details about which rows to return
628
619
- operation_timeout: the time budget for the entire operation, in seconds.
@@ -669,9 +660,6 @@ async def read_row(
669
660
Failed requests within operation_timeout will be retried based on the
670
661
retryable_errors list until operation_timeout is reached.
671
662
672
- Warning: BigtableDataClientAsync is currently in preview, and is not
673
- yet recommended for production use.
674
-
675
663
Args:
676
664
- query: contains details about which rows to return
677
665
- operation_timeout: the time budget for the entire operation, in seconds.
@@ -727,9 +715,6 @@ async def read_rows_sharded(
727
715
results = await table.read_rows_sharded(shard_queries)
728
716
```
729
717
730
- Warning: BigtableDataClientAsync is currently in preview, and is not
731
- yet recommended for production use.
732
-
733
718
Args:
734
719
- sharded_query: a sharded query to execute
735
720
- operation_timeout: the time budget for the entire operation, in seconds.
@@ -810,9 +795,6 @@ async def row_exists(
810
795
Return a boolean indicating whether the specified row exists in the table.
811
796
uses the filters: chain(limit cells per row = 1, strip value)
812
797
813
- Warning: BigtableDataClientAsync is currently in preview, and is not
814
- yet recommended for production use.
815
-
816
798
Args:
817
799
- row_key: the key of the row to check
818
800
- operation_timeout: the time budget for the entire operation, in seconds.
@@ -867,9 +849,6 @@ async def sample_row_keys(
867
849
RowKeySamples is simply a type alias for list[tuple[bytes, int]]; a list of
868
850
row_keys, along with offset positions in the table
869
851
870
- Warning: BigtableDataClientAsync is currently in preview, and is not
871
- yet recommended for production use.
872
-
873
852
Args:
874
853
- operation_timeout: the time budget for the entire operation, in seconds.
875
854
Failed requests will be retried within the budget.i
@@ -942,9 +921,6 @@ def mutations_batcher(
942
921
Can be used to iteratively add mutations that are flushed as a group,
943
922
to avoid excess network calls
944
923
945
- Warning: BigtableDataClientAsync is currently in preview, and is not
946
- yet recommended for production use.
947
-
948
924
Args:
949
925
- flush_interval: Automatically flush every flush_interval seconds. If None,
950
926
a table default will be used
@@ -994,9 +970,6 @@ async def mutate_row(
994
970
Idempotent operations (i.e, all mutations have an explicit timestamp) will be
995
971
retried on server failure. Non-idempotent operations will not.
996
972
997
- Warning: BigtableDataClientAsync is currently in preview, and is not
998
- yet recommended for production use.
999
-
1000
973
Args:
1001
974
- row_key: the row to apply mutations to
1002
975
- mutations: the set of mutations to apply to the row
@@ -1077,9 +1050,6 @@ async def bulk_mutate_rows(
1077
1050
will be retried on failure. Non-idempotent will not, and will reported in a
1078
1051
raised exception group
1079
1052
1080
- Warning: BigtableDataClientAsync is currently in preview, and is not
1081
- yet recommended for production use.
1082
-
1083
1053
Args:
1084
1054
- mutation_entries: the batches of mutations to apply
1085
1055
Each entry will be applied atomically, but entries will be applied
@@ -1128,9 +1098,6 @@ async def check_and_mutate_row(
1128
1098
1129
1099
Non-idempotent operation: will not be retried
1130
1100
1131
- Warning: BigtableDataClientAsync is currently in preview, and is not
1132
- yet recommended for production use.
1133
-
1134
1101
Args:
1135
1102
- row_key: the key of the row to mutate
1136
1103
- predicate: the filter to be applied to the contents of the specified row.
@@ -1199,9 +1166,6 @@ async def read_modify_write_row(
1199
1166
1200
1167
Non-idempotent operation: will not be retried
1201
1168
1202
- Warning: BigtableDataClientAsync is currently in preview, and is not
1203
- yet recommended for production use.
1204
-
1205
1169
Args:
1206
1170
- row_key: the key of the row to apply read/modify/write rules to
1207
1171
- rules: A rule or set of rules to apply to the row.
0 commit comments