public static interface BigtableGrpc.AsyncService
Service for reading from and writing to existing Bigtable tables.
| Modifier and Type | Method and Description |
|---|---|
default void |
checkAndMutateRow(CheckAndMutateRowRequest request,
io.grpc.stub.StreamObserver<CheckAndMutateRowResponse> responseObserver)
Mutates a row atomically based on the output of a predicate Reader filter.
|
default void |
executeQuery(ExecuteQueryRequest request,
io.grpc.stub.StreamObserver<ExecuteQueryResponse> responseObserver)
Executes a SQL query against a particular Bigtable instance.
|
default void |
generateInitialChangeStreamPartitions(GenerateInitialChangeStreamPartitionsRequest request,
io.grpc.stub.StreamObserver<GenerateInitialChangeStreamPartitionsResponse> responseObserver)
Returns the current list of partitions that make up the table's
change stream.
|
default void |
getClientConfiguration(GetClientConfigurationRequest request,
io.grpc.stub.StreamObserver<ClientConfiguration> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client
libraries to implement the Bigtable Session based protocol.
|
default void |
mutateRow(MutateRowRequest request,
io.grpc.stub.StreamObserver<MutateRowResponse> responseObserver)
Mutates a row atomically.
|
default void |
mutateRows(MutateRowsRequest request,
io.grpc.stub.StreamObserver<MutateRowsResponse> responseObserver)
Mutates multiple rows in a batch.
|
default io.grpc.stub.StreamObserver<SessionRequest> |
openAuthorizedView(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client
libraries to implement the Bigtable Session based protocol.
|
default io.grpc.stub.StreamObserver<SessionRequest> |
openMaterializedView(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client
libraries to implement the Bigtable Session based protocol.
|
default io.grpc.stub.StreamObserver<SessionRequest> |
openTable(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client
libraries to implement the Bigtable Session based protocol.
|
default void |
pingAndWarm(PingAndWarmRequest request,
io.grpc.stub.StreamObserver<PingAndWarmResponse> responseObserver)
Warm up associated instance metadata for this connection.
|
default void |
prepareQuery(PrepareQueryRequest request,
io.grpc.stub.StreamObserver<PrepareQueryResponse> responseObserver)
Prepares a GoogleSQL query for execution on a particular Bigtable instance.
|
default void |
readChangeStream(ReadChangeStreamRequest request,
io.grpc.stub.StreamObserver<ReadChangeStreamResponse> responseObserver)
Reads changes from a table's change stream.
|
default void |
readModifyWriteRow(ReadModifyWriteRowRequest request,
io.grpc.stub.StreamObserver<ReadModifyWriteRowResponse> responseObserver)
Modifies a row atomically on the server.
|
default void |
readRows(ReadRowsRequest request,
io.grpc.stub.StreamObserver<ReadRowsResponse> responseObserver)
Streams back the contents of all requested rows in key order, optionally
applying the same Reader filter to each.
|
default void |
sampleRowKeys(SampleRowKeysRequest request,
io.grpc.stub.StreamObserver<SampleRowKeysResponse> responseObserver)
Returns a sample of row keys in the table.
|
default void readRows(ReadRowsRequest request, io.grpc.stub.StreamObserver<ReadRowsResponse> responseObserver)
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.
default void sampleRowKeys(SampleRowKeysRequest request, io.grpc.stub.StreamObserver<SampleRowKeysResponse> responseObserver)
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.
default void mutateRow(MutateRowRequest request, io.grpc.stub.StreamObserver<MutateRowResponse> responseObserver)
Mutates a row atomically. Cells already present in the row are left unchanged unless explicitly changed by `mutation`.
default void mutateRows(MutateRowsRequest request, io.grpc.stub.StreamObserver<MutateRowsResponse> responseObserver)
Mutates multiple rows in a batch. Each individual row is mutated atomically as in MutateRow, but the entire batch is not executed atomically.
default void checkAndMutateRow(CheckAndMutateRowRequest request, io.grpc.stub.StreamObserver<CheckAndMutateRowResponse> responseObserver)
Mutates a row atomically based on the output of a predicate Reader filter.
default void pingAndWarm(PingAndWarmRequest request, io.grpc.stub.StreamObserver<PingAndWarmResponse> responseObserver)
Warm up associated instance metadata for this connection. This call is not required but may be useful for connection keep-alive.
default void readModifyWriteRow(ReadModifyWriteRowRequest request, io.grpc.stub.StreamObserver<ReadModifyWriteRowResponse> responseObserver)
Modifies a row atomically on the server. The method reads the latest existing timestamp and value from the specified columns and writes a new entry based on pre-defined read/modify/write rules. The new value for the timestamp is the greater of the existing timestamp or the current server time. The method returns the new contents of all modified cells.
default void generateInitialChangeStreamPartitions(GenerateInitialChangeStreamPartitionsRequest request, io.grpc.stub.StreamObserver<GenerateInitialChangeStreamPartitionsResponse> responseObserver)
Returns the current list of partitions that make up the table's change stream. The union of partitions will cover the entire keyspace. Partitions can be read with `ReadChangeStream`. NOTE: This API is only intended to be used by Apache Beam BigtableIO.
default void readChangeStream(ReadChangeStreamRequest request, io.grpc.stub.StreamObserver<ReadChangeStreamResponse> responseObserver)
Reads changes from a table's change stream. Changes will reflect both user-initiated mutations and mutations that are caused by garbage collection. NOTE: This API is only intended to be used by Apache Beam BigtableIO.
default void prepareQuery(PrepareQueryRequest request, io.grpc.stub.StreamObserver<PrepareQueryResponse> responseObserver)
Prepares a GoogleSQL query for execution on a particular Bigtable instance.
default void executeQuery(ExecuteQueryRequest request, io.grpc.stub.StreamObserver<ExecuteQueryResponse> responseObserver)
Executes a SQL query against a particular Bigtable instance.
default void getClientConfiguration(GetClientConfigurationRequest request, io.grpc.stub.StreamObserver<ClientConfiguration> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client libraries to implement the Bigtable Session based protocol. It is subject to change without notice.
default io.grpc.stub.StreamObserver<SessionRequest> openTable(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client libraries to implement the Bigtable Session based protocol. It is subject to change without notice.
default io.grpc.stub.StreamObserver<SessionRequest> openAuthorizedView(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client libraries to implement the Bigtable Session based protocol. It is subject to change without notice.
default io.grpc.stub.StreamObserver<SessionRequest> openMaterializedView(io.grpc.stub.StreamObserver<SessionResponse> responseObserver)
This RPC is only intended to be used by the official Cloud Bigtable client libraries to implement the Bigtable Session based protocol. It is subject to change without notice.
Copyright © 2026 Google LLC. All rights reserved.