Package com.google.bigtable.v2
Class BigtableGrpc.BigtableBlockingStub
java.lang.Object
io.grpc.stub.AbstractStub<S>
io.grpc.stub.AbstractBlockingStub<BigtableGrpc.BigtableBlockingStub>
com.google.bigtable.v2.BigtableGrpc.BigtableBlockingStub
- Enclosing class:
- BigtableGrpc
public static final class BigtableGrpc.BigtableBlockingStub
extends io.grpc.stub.AbstractBlockingStub<BigtableGrpc.BigtableBlockingStub>
A stub to allow clients to do limited synchronous rpc calls to service Bigtable.
Service for reading from and writing to existing Bigtable tables.
-
Nested Class Summary
Nested classes/interfaces inherited from class io.grpc.stub.AbstractStub
io.grpc.stub.AbstractStub.StubFactory<T extends io.grpc.stub.AbstractStub<T>> -
Method Summary
Modifier and TypeMethodDescriptionprotected BigtableGrpc.BigtableBlockingStubbuild(io.grpc.Channel channel, io.grpc.CallOptions callOptions) Mutates a row atomically based on the output of a predicate Reader filter.executeQuery(ExecuteQueryRequest request) Executes a SQL query against a particular Bigtable instance.Returns the current list of partitions that make up the table's change stream.mutateRow(MutateRowRequest request) Mutates a row atomically.mutateRows(MutateRowsRequest request) Mutates multiple rows in a batch.pingAndWarm(PingAndWarmRequest request) Warm up associated instance metadata for this connection.prepareQuery(PrepareQueryRequest request) Prepares a GoogleSQL query for execution on a particular Bigtable instance.readChangeStream(ReadChangeStreamRequest request) Reads changes from a table's change stream.Modifies a row atomically on the server.readRows(ReadRowsRequest request) Streams back the contents of all requested rows in key order, optionally applying the same Reader filter to each.sampleRowKeys(SampleRowKeysRequest request) Returns a sample of row keys in the table.Methods inherited from class io.grpc.stub.AbstractBlockingStub
newStub, newStubMethods inherited from class io.grpc.stub.AbstractStub
getCallOptions, getChannel, withCallCredentials, withChannel, withCompression, withDeadline, withDeadlineAfter, withDeadlineAfter, withExecutor, withInterceptors, withMaxInboundMessageSize, withMaxOutboundMessageSize, withOnReadyThreshold, withOption, withWaitForReady
-
Method Details
-
build
protected BigtableGrpc.BigtableBlockingStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions) - Specified by:
buildin classio.grpc.stub.AbstractStub<BigtableGrpc.BigtableBlockingStub>
-
readRows
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.
-
sampleRowKeys
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.
-
mutateRow
Mutates a row atomically. Cells already present in the row are left unchanged unless explicitly changed by `mutation`.
-
mutateRows
Mutates multiple rows in a batch. Each individual row is mutated atomically as in MutateRow, but the entire batch is not executed atomically.
-
checkAndMutateRow
Mutates a row atomically based on the output of a predicate Reader filter.
-
pingAndWarm
Warm up associated instance metadata for this connection. This call is not required but may be useful for connection keep-alive.
-
readModifyWriteRow
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.
-
generateInitialChangeStreamPartitions
public Iterator<GenerateInitialChangeStreamPartitionsResponse> generateInitialChangeStreamPartitions(GenerateInitialChangeStreamPartitionsRequest request) 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.
-
readChangeStream
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.
-
prepareQuery
Prepares a GoogleSQL query for execution on a particular Bigtable instance.
-
executeQuery
Executes a SQL query against a particular Bigtable instance.
-