Uses of Class
com.google.cloud.bigtable.data.v2.models.Query
Package
Description
A client for the Cloud Bigtable data API.
-
Uses of Query in com.google.cloud.bigtable.data.v2
Modifier and TypeMethodDescriptionBigtableDataClient.readRowCallable()
Reads a single row.<RowT> com.google.api.gax.rpc.UnaryCallable<Query,
RowT> BigtableDataClient.readRowCallable
(RowAdapter<RowT> rowAdapter) Reads a single row.BigtableDataClient.readRowsCallable()
Streams back the results of the query.<RowT> com.google.api.gax.rpc.ServerStreamingCallable<Query,
RowT> BigtableDataClient.readRowsCallable
(RowAdapter<RowT> rowAdapter) Streams back the results of the query.BigtableDataSettings.readRowSettings()
Returns the object with the settings used for point reads via ReadRow.Modifier and TypeMethodDescriptioncom.google.api.gax.rpc.ServerStream<Row>
Convenience method for synchronously streaming the results of aQuery
.void
BigtableDataClient.readRowsAsync
(Query query, com.google.api.gax.rpc.ResponseObserver<Row> observer) Convenience method for asynchronously streaming the results of aQuery
. -
Uses of Query in com.google.cloud.bigtable.data.v2.models
Modifier and TypeMethodDescriptionQuery.clone()
static Query
Constructs a new Query object for the specified table id.Query.filter
(Filters.Filter filter) Sets the filter to apply to each row.static Query
Query.fromProto
(com.google.bigtable.v2.ReadRowsRequest request) Wraps the protobufReadRowsRequest
.Query.QueryPaginator.getNextQuery()
Return the next query.Query.limit
(long limit) Limits the number of rows that can be returnedQuery.prefix
(com.google.protobuf.ByteString prefix) Query.range
(Range.ByteStringRange range) Adds a range to be looked up.Query.range
(com.google.protobuf.ByteString start, com.google.protobuf.ByteString end) Adds a range to be looked up.Adds a range to be looked up.Query.reversed
(boolean enable) Return rows in reverse order.Query.rowKey
(com.google.protobuf.ByteString key) Adds a key to looked upAdds a key to looked upModifier and TypeMethodDescriptionSplit this query into multiple queries that can be evenly distributed across Bigtable nodes and be run in parallel.Split this query into multiple queries that logically combine into this query. -
Uses of Query in com.google.cloud.bigtable.data.v2.stub
Modifier and TypeMethodDescriptionEnhancedBigtableStubSettings.Builder.readRowSettings()
Returns the builder for the settings used for point reads using readRow.EnhancedBigtableStubSettings.readRowSettings()
Returns the object with the settings used for point reads via ReadRows.EnhancedBigtableStubSettings.Builder.readRowsSettings()
Returns the builder for the settings used for calls to readRows.EnhancedBigtableStubSettings.readRowsSettings()
Returns the object with the settings used for calls to ReadRows.