-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathasync_client.py
More file actions
1756 lines (1511 loc) · 74.2 KB
/
Copy pathasync_client.py
File metadata and controls
1756 lines (1511 loc) · 74.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import logging as std_logging
import re
from collections import OrderedDict
from typing import (
AsyncIterable,
Awaitable,
Callable,
Dict,
Mapping,
MutableMapping,
MutableSequence,
Optional,
Sequence,
Tuple,
Type,
Union,
)
import google.protobuf
from google.api_core import exceptions as core_exceptions
from google.api_core import gapic_v1
from google.api_core import retry_async as retries
from google.api_core.client_options import ClientOptions
from google.auth import credentials as ga_credentials # type: ignore
from google.oauth2 import service_account # type: ignore
from google.cloud.bigtable_v2 import gapic_version as package_version
try:
OptionalRetry = Union[retries.AsyncRetry, gapic_v1.method._MethodDefault, None]
except AttributeError: # pragma: NO COVER
OptionalRetry = Union[retries.AsyncRetry, object, None] # type: ignore
import google.protobuf.timestamp_pb2 as timestamp_pb2 # type: ignore
from google.cloud.bigtable_v2.types import bigtable, data, request_stats
from .client import BigtableClient
from .transports.base import DEFAULT_CLIENT_INFO, BigtableTransport
from .transports.grpc_asyncio import BigtableGrpcAsyncIOTransport
try:
from google.api_core import client_logging # type: ignore
CLIENT_LOGGING_SUPPORTED = True # pragma: NO COVER
except ImportError: # pragma: NO COVER
CLIENT_LOGGING_SUPPORTED = False
_LOGGER = std_logging.getLogger(__name__)
class BigtableAsyncClient:
"""Service for reading from and writing to existing Bigtable
tables.
"""
_client: BigtableClient
# Copy defaults from the synchronous client for use here.
# Note: DEFAULT_ENDPOINT is deprecated. Use _DEFAULT_ENDPOINT_TEMPLATE instead.
DEFAULT_ENDPOINT = BigtableClient.DEFAULT_ENDPOINT
DEFAULT_MTLS_ENDPOINT = BigtableClient.DEFAULT_MTLS_ENDPOINT
_DEFAULT_ENDPOINT_TEMPLATE = BigtableClient._DEFAULT_ENDPOINT_TEMPLATE
_DEFAULT_UNIVERSE = BigtableClient._DEFAULT_UNIVERSE
authorized_view_path = staticmethod(BigtableClient.authorized_view_path)
parse_authorized_view_path = staticmethod(BigtableClient.parse_authorized_view_path)
instance_path = staticmethod(BigtableClient.instance_path)
parse_instance_path = staticmethod(BigtableClient.parse_instance_path)
materialized_view_path = staticmethod(BigtableClient.materialized_view_path)
parse_materialized_view_path = staticmethod(
BigtableClient.parse_materialized_view_path
)
table_path = staticmethod(BigtableClient.table_path)
parse_table_path = staticmethod(BigtableClient.parse_table_path)
common_billing_account_path = staticmethod(
BigtableClient.common_billing_account_path
)
parse_common_billing_account_path = staticmethod(
BigtableClient.parse_common_billing_account_path
)
common_folder_path = staticmethod(BigtableClient.common_folder_path)
parse_common_folder_path = staticmethod(BigtableClient.parse_common_folder_path)
common_organization_path = staticmethod(BigtableClient.common_organization_path)
parse_common_organization_path = staticmethod(
BigtableClient.parse_common_organization_path
)
common_project_path = staticmethod(BigtableClient.common_project_path)
parse_common_project_path = staticmethod(BigtableClient.parse_common_project_path)
common_location_path = staticmethod(BigtableClient.common_location_path)
parse_common_location_path = staticmethod(BigtableClient.parse_common_location_path)
@classmethod
def from_service_account_info(cls, info: dict, *args, **kwargs):
"""Creates an instance of this client using the provided credentials
info.
Args:
info (dict): The service account private key info.
args: Additional arguments to pass to the constructor.
kwargs: Additional arguments to pass to the constructor.
Returns:
BigtableAsyncClient: The constructed client.
"""
sa_info_func = (
BigtableClient.from_service_account_info.__func__ # type: ignore
)
return sa_info_func(BigtableAsyncClient, info, *args, **kwargs)
@classmethod
def from_service_account_file(cls, filename: str, *args, **kwargs):
"""Creates an instance of this client using the provided credentials
file.
Args:
filename (str): The path to the service account private key json
file.
args: Additional arguments to pass to the constructor.
kwargs: Additional arguments to pass to the constructor.
Returns:
BigtableAsyncClient: The constructed client.
"""
sa_file_func = (
BigtableClient.from_service_account_file.__func__ # type: ignore
)
return sa_file_func(BigtableAsyncClient, filename, *args, **kwargs)
from_service_account_json = from_service_account_file
@classmethod
def get_mtls_endpoint_and_cert_source(
cls, client_options: Optional[ClientOptions] = None
):
"""Return the API endpoint and client cert source for mutual TLS.
The client cert source is determined in the following order:
(1) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is not "true", the
client cert source is None.
(2) if `client_options.client_cert_source` is provided, use the provided one; if the
default client cert source exists, use the default one; otherwise the client cert
source is None.
The API endpoint is determined in the following order:
(1) if `client_options.api_endpoint` if provided, use the provided one.
(2) if `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is "always", use the
default mTLS endpoint; if the environment variable is "never", use the default API
endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise
use the default API endpoint.
More details can be found at https://google.aip.dev/auth/4114.
Args:
client_options (google.api_core.client_options.ClientOptions): Custom options for the
client. Only the `api_endpoint` and `client_cert_source` properties may be used
in this method.
Returns:
Tuple[str, Callable[[], Tuple[bytes, bytes]]]: returns the API endpoint and the
client cert source to use.
Raises:
google.auth.exceptions.MutualTLSChannelError: If any errors happen.
"""
return BigtableClient.get_mtls_endpoint_and_cert_source(client_options) # type: ignore
@property
def transport(self) -> BigtableTransport:
"""Returns the transport used by the client instance.
Returns:
BigtableTransport: The transport used by the client instance.
"""
return self._client.transport
@property
def api_endpoint(self) -> str:
"""Return the API endpoint used by the client instance.
Returns:
str: The API endpoint used by the client instance.
"""
return self._client._api_endpoint
@property
def universe_domain(self) -> str:
"""Return the universe domain used by the client instance.
Returns:
str: The universe domain used
by the client instance.
"""
return self._client._universe_domain
get_transport_class = BigtableClient.get_transport_class
def __init__(
self,
*,
credentials: Optional[ga_credentials.Credentials] = None,
transport: Optional[
Union[str, BigtableTransport, Callable[..., BigtableTransport]]
] = "grpc_asyncio",
client_options: Optional[ClientOptions] = None,
client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO,
) -> None:
"""Instantiates the bigtable async client.
Args:
credentials (Optional[google.auth.credentials.Credentials]): The
authorization credentials to attach to requests. These
credentials identify the application to the service; if none
are specified, the client will attempt to ascertain the
credentials from the environment.
transport (Optional[Union[str,BigtableTransport,Callable[..., BigtableTransport]]]):
The transport to use, or a Callable that constructs and returns a new transport to use.
If a Callable is given, it will be called with the same set of initialization
arguments as used in the BigtableTransport constructor.
If set to None, a transport is chosen automatically.
client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]):
Custom options for the client.
1. The ``api_endpoint`` property can be used to override the
default endpoint provided by the client when ``transport`` is
not explicitly provided. Only if this property is not set and
``transport`` was not explicitly provided, the endpoint is
determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment
variable, which have one of the following values:
"always" (always use the default mTLS endpoint), "never" (always
use the default regular endpoint) and "auto" (auto-switch to the
default mTLS endpoint if client certificate is present; this is
the default value).
2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable
is "true", then the ``client_cert_source`` property can be used
to provide a client certificate for mTLS transport. If
not provided, the default SSL client certificate will be used if
present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is "false" or not
set, no client certificate will be used.
3. The ``universe_domain`` property can be used to override the
default "googleapis.com" universe. Note that ``api_endpoint``
property still takes precedence; and ``universe_domain`` is
currently not supported for mTLS.
client_info (google.api_core.gapic_v1.client_info.ClientInfo):
The client info used to send a user-agent string along with
API requests. If ``None``, then default info will be used.
Generally, you only need to set this if you're developing
your own client library.
Raises:
google.auth.exceptions.MutualTlsChannelError: If mutual TLS transport
creation failed for any reason.
"""
self._client = BigtableClient(
credentials=credentials,
transport=transport,
client_options=client_options,
client_info=client_info,
)
if CLIENT_LOGGING_SUPPORTED and _LOGGER.isEnabledFor(
std_logging.DEBUG
): # pragma: NO COVER
_LOGGER.debug(
"Created client `google.bigtable_v2.BigtableAsyncClient`.",
extra={
"serviceName": "google.bigtable.v2.Bigtable",
"universeDomain": getattr(
self._client._transport._credentials, "universe_domain", ""
),
"credentialsType": f"{type(self._client._transport._credentials).__module__}.{type(self._client._transport._credentials).__qualname__}",
"credentialsInfo": getattr(
self.transport._credentials, "get_cred_info", lambda: None
)(),
}
if hasattr(self._client._transport, "_credentials")
else {
"serviceName": "google.bigtable.v2.Bigtable",
"credentialsType": None,
},
)
def read_rows(
self,
request: Optional[Union[bigtable.ReadRowsRequest, dict]] = None,
*,
table_name: Optional[str] = None,
app_profile_id: Optional[str] = None,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Union[float, object] = gapic_v1.method.DEFAULT,
metadata: Sequence[Tuple[str, Union[str, bytes]]] = (),
) -> Awaitable[AsyncIterable[bigtable.ReadRowsResponse]]:
r"""Streams back the contents of all requested rows in
key order, optionally applying the same Reader filter to
each. Depending on their size, rows and cells may be
broken up across multiple responses, but atomicity of
each row will still be preserved. See the
ReadRowsResponse documentation for details.
Args:
request (Optional[Union[google.cloud.bigtable_v2.types.ReadRowsRequest, dict]]):
The request object. Request message for
Bigtable.ReadRows.
table_name (:class:`str`):
Optional. The unique name of the table from which to
read.
Values are of the form
``projects/<project>/instances/<instance>/tables/<table>``.
This corresponds to the ``table_name`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
app_profile_id (:class:`str`):
This value specifies routing for
replication. If not specified, the
"default" application profile will be
used.
This corresponds to the ``app_profile_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
retry (google.api_core.retry_async.AsyncRetry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, Union[str, bytes]]]): Key/value pairs which should be
sent along with the request as metadata. Normally, each value must be of type `str`,
but for metadata keys ending with the suffix `-bin`, the corresponding values must
be of type `bytes`.
Returns:
AsyncIterable[google.cloud.bigtable_v2.types.ReadRowsResponse]:
Response message for
Bigtable.ReadRows.
"""
# Create or coerce a protobuf request object.
# - Quick check: If we got a request object, we should *not* have
# gotten any keyword arguments that map to the request.
flattened_params = [table_name, app_profile_id]
has_flattened_params = (
len([param for param in flattened_params if param is not None]) > 0
)
if request is not None and has_flattened_params:
raise ValueError(
"If the `request` argument is set, then none of "
"the individual field arguments should be set."
)
# - Use the request object if provided (there's no risk of modifying the input as
# there are no flattened fields), or create one.
if not isinstance(request, bigtable.ReadRowsRequest):
request = bigtable.ReadRowsRequest(request)
# If we have keyword arguments corresponding to fields on the
# request, apply these.
if table_name is not None:
request.table_name = table_name
if app_profile_id is not None:
request.app_profile_id = app_profile_id
# Wrap the RPC method; this adds retry and timeout information,
# and friendly error handling.
rpc = self._client._transport._wrapped_methods[
self._client._transport.read_rows
]
header_params = {}
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)$"
)
regex_match = routing_param_regex.match(request.table_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if True: # always attach app_profile_id, even if empty string
header_params["app_profile_id"] = request.app_profile_id
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.authorized_view_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
routing_param_regex = re.compile(
"^(?P<name>projects/[^/]+/instances/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.materialized_view_name)
if regex_match and regex_match.group("name"):
header_params["name"] = regex_match.group("name")
if header_params:
metadata = tuple(metadata) + (
gapic_v1.routing_header.to_grpc_metadata(header_params),
)
# Validate the universe domain.
self._client._validate_universe_domain()
# Send the request.
response = rpc(
request,
retry=retry,
timeout=timeout,
metadata=metadata,
)
# Done; return the response.
return response
def sample_row_keys(
self,
request: Optional[Union[bigtable.SampleRowKeysRequest, dict]] = None,
*,
table_name: Optional[str] = None,
app_profile_id: Optional[str] = None,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Union[float, object] = gapic_v1.method.DEFAULT,
metadata: Sequence[Tuple[str, Union[str, bytes]]] = (),
) -> Awaitable[AsyncIterable[bigtable.SampleRowKeysResponse]]:
r"""Returns a sample of row keys in the table. The returned row keys
will delimit contiguous sections of the table of approximately
equal size, which can be used to break up the data for
distributed tasks like mapreduces.
If a ``row_range`` is provided in the request, the returned
samples will be restricted to the specified range.
Args:
request (Optional[Union[google.cloud.bigtable_v2.types.SampleRowKeysRequest, dict]]):
The request object. Request message for
Bigtable.SampleRowKeys.
table_name (:class:`str`):
Optional. The unique name of the table from which to
sample row keys.
Values are of the form
``projects/<project>/instances/<instance>/tables/<table>``.
This corresponds to the ``table_name`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
app_profile_id (:class:`str`):
This value specifies routing for
replication. If not specified, the
"default" application profile will be
used.
This corresponds to the ``app_profile_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
retry (google.api_core.retry_async.AsyncRetry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, Union[str, bytes]]]): Key/value pairs which should be
sent along with the request as metadata. Normally, each value must be of type `str`,
but for metadata keys ending with the suffix `-bin`, the corresponding values must
be of type `bytes`.
Returns:
AsyncIterable[google.cloud.bigtable_v2.types.SampleRowKeysResponse]:
Response message for
Bigtable.SampleRowKeys.
"""
# Create or coerce a protobuf request object.
# - Quick check: If we got a request object, we should *not* have
# gotten any keyword arguments that map to the request.
flattened_params = [table_name, app_profile_id]
has_flattened_params = (
len([param for param in flattened_params if param is not None]) > 0
)
if request is not None and has_flattened_params:
raise ValueError(
"If the `request` argument is set, then none of "
"the individual field arguments should be set."
)
# - Use the request object if provided (there's no risk of modifying the input as
# there are no flattened fields), or create one.
if not isinstance(request, bigtable.SampleRowKeysRequest):
request = bigtable.SampleRowKeysRequest(request)
# If we have keyword arguments corresponding to fields on the
# request, apply these.
if table_name is not None:
request.table_name = table_name
if app_profile_id is not None:
request.app_profile_id = app_profile_id
# Wrap the RPC method; this adds retry and timeout information,
# and friendly error handling.
rpc = self._client._transport._wrapped_methods[
self._client._transport.sample_row_keys
]
header_params = {}
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)$"
)
regex_match = routing_param_regex.match(request.table_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if True: # always attach app_profile_id, even if empty string
header_params["app_profile_id"] = request.app_profile_id
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.authorized_view_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
routing_param_regex = re.compile(
"^(?P<name>projects/[^/]+/instances/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.materialized_view_name)
if regex_match and regex_match.group("name"):
header_params["name"] = regex_match.group("name")
if header_params:
metadata = tuple(metadata) + (
gapic_v1.routing_header.to_grpc_metadata(header_params),
)
# Validate the universe domain.
self._client._validate_universe_domain()
# Send the request.
response = rpc(
request,
retry=retry,
timeout=timeout,
metadata=metadata,
)
# Done; return the response.
return response
async def mutate_row(
self,
request: Optional[Union[bigtable.MutateRowRequest, dict]] = None,
*,
table_name: Optional[str] = None,
row_key: Optional[bytes] = None,
mutations: Optional[MutableSequence[data.Mutation]] = None,
app_profile_id: Optional[str] = None,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Union[float, object] = gapic_v1.method.DEFAULT,
metadata: Sequence[Tuple[str, Union[str, bytes]]] = (),
) -> bigtable.MutateRowResponse:
r"""Mutates a row atomically. Cells already present in the row are
left unchanged unless explicitly changed by ``mutation``.
Args:
request (Optional[Union[google.cloud.bigtable_v2.types.MutateRowRequest, dict]]):
The request object. Request message for
Bigtable.MutateRow.
table_name (:class:`str`):
Optional. The unique name of the table to which the
mutation should be applied.
Values are of the form
``projects/<project>/instances/<instance>/tables/<table>``.
This corresponds to the ``table_name`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
row_key (:class:`bytes`):
Required. The key of the row to which
the mutation should be applied.
This corresponds to the ``row_key`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
mutations (:class:`MutableSequence[google.cloud.bigtable_v2.types.Mutation]`):
Required. Changes to be atomically
applied to the specified row. Entries
are applied in order, meaning that
earlier mutations can be masked by later
ones. Must contain at least one entry
and at most 100000.
This corresponds to the ``mutations`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
app_profile_id (:class:`str`):
This value specifies routing for
replication. If not specified, the
"default" application profile will be
used.
This corresponds to the ``app_profile_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
retry (google.api_core.retry_async.AsyncRetry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, Union[str, bytes]]]): Key/value pairs which should be
sent along with the request as metadata. Normally, each value must be of type `str`,
but for metadata keys ending with the suffix `-bin`, the corresponding values must
be of type `bytes`.
Returns:
google.cloud.bigtable_v2.types.MutateRowResponse:
Response message for
Bigtable.MutateRow.
"""
# Create or coerce a protobuf request object.
# - Quick check: If we got a request object, we should *not* have
# gotten any keyword arguments that map to the request.
flattened_params = [table_name, row_key, mutations, app_profile_id]
has_flattened_params = (
len([param for param in flattened_params if param is not None]) > 0
)
if request is not None and has_flattened_params:
raise ValueError(
"If the `request` argument is set, then none of "
"the individual field arguments should be set."
)
# - Use the request object if provided (there's no risk of modifying the input as
# there are no flattened fields), or create one.
if not isinstance(request, bigtable.MutateRowRequest):
request = bigtable.MutateRowRequest(request)
# If we have keyword arguments corresponding to fields on the
# request, apply these.
if table_name is not None:
request.table_name = table_name
if row_key is not None:
request.row_key = row_key
if app_profile_id is not None:
request.app_profile_id = app_profile_id
if mutations:
request.mutations.extend(mutations)
# Wrap the RPC method; this adds retry and timeout information,
# and friendly error handling.
rpc = self._client._transport._wrapped_methods[
self._client._transport.mutate_row
]
header_params = {}
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)$"
)
regex_match = routing_param_regex.match(request.table_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if True: # always attach app_profile_id, even if empty string
header_params["app_profile_id"] = request.app_profile_id
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.authorized_view_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if header_params:
metadata = tuple(metadata) + (
gapic_v1.routing_header.to_grpc_metadata(header_params),
)
# Validate the universe domain.
self._client._validate_universe_domain()
# Send the request.
response = await rpc(
request,
retry=retry,
timeout=timeout,
metadata=metadata,
)
# Done; return the response.
return response
def mutate_rows(
self,
request: Optional[Union[bigtable.MutateRowsRequest, dict]] = None,
*,
table_name: Optional[str] = None,
entries: Optional[MutableSequence[bigtable.MutateRowsRequest.Entry]] = None,
app_profile_id: Optional[str] = None,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Union[float, object] = gapic_v1.method.DEFAULT,
metadata: Sequence[Tuple[str, Union[str, bytes]]] = (),
) -> Awaitable[AsyncIterable[bigtable.MutateRowsResponse]]:
r"""Mutates multiple rows in a batch. Each individual row
is mutated atomically as in MutateRow, but the entire
batch is not executed atomically.
Args:
request (Optional[Union[google.cloud.bigtable_v2.types.MutateRowsRequest, dict]]):
The request object. Request message for
BigtableService.MutateRows.
table_name (:class:`str`):
Optional. The unique name of the table to which the
mutations should be applied.
Values are of the form
``projects/<project>/instances/<instance>/tables/<table>``.
This corresponds to the ``table_name`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
entries (:class:`MutableSequence[google.cloud.bigtable_v2.types.MutateRowsRequest.Entry]`):
Required. The row keys and
corresponding mutations to be applied in
bulk. Each entry is applied as an atomic
mutation, but the entries may be applied
in arbitrary order (even between entries
for the same row). At least one entry
must be specified, and in total the
entries can contain at most 100000
mutations.
This corresponds to the ``entries`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
app_profile_id (:class:`str`):
This value specifies routing for
replication. If not specified, the
"default" application profile will be
used.
This corresponds to the ``app_profile_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
retry (google.api_core.retry_async.AsyncRetry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, Union[str, bytes]]]): Key/value pairs which should be
sent along with the request as metadata. Normally, each value must be of type `str`,
but for metadata keys ending with the suffix `-bin`, the corresponding values must
be of type `bytes`.
Returns:
AsyncIterable[google.cloud.bigtable_v2.types.MutateRowsResponse]:
Response message for
BigtableService.MutateRows.
"""
# Create or coerce a protobuf request object.
# - Quick check: If we got a request object, we should *not* have
# gotten any keyword arguments that map to the request.
flattened_params = [table_name, entries, app_profile_id]
has_flattened_params = (
len([param for param in flattened_params if param is not None]) > 0
)
if request is not None and has_flattened_params:
raise ValueError(
"If the `request` argument is set, then none of "
"the individual field arguments should be set."
)
# - Use the request object if provided (there's no risk of modifying the input as
# there are no flattened fields), or create one.
if not isinstance(request, bigtable.MutateRowsRequest):
request = bigtable.MutateRowsRequest(request)
# If we have keyword arguments corresponding to fields on the
# request, apply these.
if table_name is not None:
request.table_name = table_name
if app_profile_id is not None:
request.app_profile_id = app_profile_id
if entries:
request.entries.extend(entries)
# Wrap the RPC method; this adds retry and timeout information,
# and friendly error handling.
rpc = self._client._transport._wrapped_methods[
self._client._transport.mutate_rows
]
header_params = {}
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)$"
)
regex_match = routing_param_regex.match(request.table_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if True: # always attach app_profile_id, even if empty string
header_params["app_profile_id"] = request.app_profile_id
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.authorized_view_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if header_params:
metadata = tuple(metadata) + (
gapic_v1.routing_header.to_grpc_metadata(header_params),
)
# Validate the universe domain.
self._client._validate_universe_domain()
# Send the request.
response = rpc(
request,
retry=retry,
timeout=timeout,
metadata=metadata,
)
# Done; return the response.
return response
async def check_and_mutate_row(
self,
request: Optional[Union[bigtable.CheckAndMutateRowRequest, dict]] = None,
*,
table_name: Optional[str] = None,
row_key: Optional[bytes] = None,
predicate_filter: Optional[data.RowFilter] = None,
true_mutations: Optional[MutableSequence[data.Mutation]] = None,
false_mutations: Optional[MutableSequence[data.Mutation]] = None,
app_profile_id: Optional[str] = None,
retry: OptionalRetry = gapic_v1.method.DEFAULT,
timeout: Union[float, object] = gapic_v1.method.DEFAULT,
metadata: Sequence[Tuple[str, Union[str, bytes]]] = (),
) -> bigtable.CheckAndMutateRowResponse:
r"""Mutates a row atomically based on the output of a
predicate Reader filter.
Args:
request (Optional[Union[google.cloud.bigtable_v2.types.CheckAndMutateRowRequest, dict]]):
The request object. Request message for
Bigtable.CheckAndMutateRow.
table_name (:class:`str`):
Optional. The unique name of the table to which the
conditional mutation should be applied.
Values are of the form
``projects/<project>/instances/<instance>/tables/<table>``.
This corresponds to the ``table_name`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
row_key (:class:`bytes`):
Required. The key of the row to which
the conditional mutation should be
applied.
This corresponds to the ``row_key`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
predicate_filter (:class:`google.cloud.bigtable_v2.types.RowFilter`):
The filter to be applied to the contents of the
specified row. Depending on whether or not any results
are yielded, either ``true_mutations`` or
``false_mutations`` will be executed. If unset, checks
that the row contains any values at all.
This corresponds to the ``predicate_filter`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
true_mutations (:class:`MutableSequence[google.cloud.bigtable_v2.types.Mutation]`):
Changes to be atomically applied to the specified row if
``predicate_filter`` yields at least one cell when
applied to ``row_key``. Entries are applied in order,
meaning that earlier mutations can be masked by later
ones. Must contain at least one entry if
``false_mutations`` is empty, and at most 100000.
This corresponds to the ``true_mutations`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
false_mutations (:class:`MutableSequence[google.cloud.bigtable_v2.types.Mutation]`):
Changes to be atomically applied to the specified row if
``predicate_filter`` does not yield any cells when
applied to ``row_key``. Entries are applied in order,
meaning that earlier mutations can be masked by later
ones. Must contain at least one entry if
``true_mutations`` is empty, and at most 100000.
This corresponds to the ``false_mutations`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
app_profile_id (:class:`str`):
This value specifies routing for
replication. If not specified, the
"default" application profile will be
used.
This corresponds to the ``app_profile_id`` field
on the ``request`` instance; if ``request`` is provided, this
should not be set.
retry (google.api_core.retry_async.AsyncRetry): Designation of what errors, if any,
should be retried.
timeout (float): The timeout for this request.
metadata (Sequence[Tuple[str, Union[str, bytes]]]): Key/value pairs which should be
sent along with the request as metadata. Normally, each value must be of type `str`,
but for metadata keys ending with the suffix `-bin`, the corresponding values must
be of type `bytes`.
Returns:
google.cloud.bigtable_v2.types.CheckAndMutateRowResponse:
Response message for
Bigtable.CheckAndMutateRow.
"""
# Create or coerce a protobuf request object.
# - Quick check: If we got a request object, we should *not* have
# gotten any keyword arguments that map to the request.
flattened_params = [
table_name,
row_key,
predicate_filter,
true_mutations,
false_mutations,
app_profile_id,
]
has_flattened_params = (
len([param for param in flattened_params if param is not None]) > 0
)
if request is not None and has_flattened_params:
raise ValueError(
"If the `request` argument is set, then none of "
"the individual field arguments should be set."
)
# - Use the request object if provided (there's no risk of modifying the input as
# there are no flattened fields), or create one.
if not isinstance(request, bigtable.CheckAndMutateRowRequest):
request = bigtable.CheckAndMutateRowRequest(request)
# If we have keyword arguments corresponding to fields on the
# request, apply these.
if table_name is not None:
request.table_name = table_name
if row_key is not None:
request.row_key = row_key
if predicate_filter is not None:
request.predicate_filter = predicate_filter
if app_profile_id is not None:
request.app_profile_id = app_profile_id
if true_mutations:
request.true_mutations.extend(true_mutations)
if false_mutations:
request.false_mutations.extend(false_mutations)
# Wrap the RPC method; this adds retry and timeout information,
# and friendly error handling.
rpc = self._client._transport._wrapped_methods[
self._client._transport.check_and_mutate_row
]
header_params = {}
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)$"
)
regex_match = routing_param_regex.match(request.table_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")
if True: # always attach app_profile_id, even if empty string
header_params["app_profile_id"] = request.app_profile_id
routing_param_regex = re.compile(
"^(?P<table_name>projects/[^/]+/instances/[^/]+/tables/[^/]+)(?:/.*)?$"
)
regex_match = routing_param_regex.match(request.authorized_view_name)
if regex_match and regex_match.group("table_name"):
header_params["table_name"] = regex_match.group("table_name")