Uses of Class
com.google.cloud.bigtable.data.v2.models.Query
-
Packages that use Query Package Description com.google.cloud.bigtable.data.v2 A client for the Cloud Bigtable data API.com.google.cloud.bigtable.data.v2.models com.google.cloud.bigtable.data.v2.stub -
-
Uses of Query in com.google.cloud.bigtable.data.v2
Methods in com.google.cloud.bigtable.data.v2 that return types with arguments of type Query Modifier and Type Method Description com.google.api.gax.rpc.UnaryCallable<Query,Row>
BigtableDataClient. readRowCallable()
Reads a single row.<RowT> com.google.api.gax.rpc.UnaryCallable<Query,RowT>
BigtableDataClient. readRowCallable(RowAdapter<RowT> rowAdapter)
Reads a single row.com.google.api.gax.rpc.ServerStreamingCallable<Query,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.com.google.api.gax.rpc.UnaryCallSettings<Query,Row>
BigtableDataSettings. readRowSettings()
Returns the object with the settings used for point reads via ReadRow.Methods in com.google.cloud.bigtable.data.v2 with parameters of type Query Modifier and Type Method Description com.google.api.gax.rpc.ServerStream<Row>
BigtableDataClient. readRows(Query query)
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
Methods in com.google.cloud.bigtable.data.v2.models that return Query Modifier and Type Method Description Query
Query. clone()
static Query
Query. create(String tableId)
Constructs a new Query object for the specified table id.Query
Query. filter(Filters.Filter filter)
Sets the filter to apply to each row.static Query
Query. fromProto(ReadRowsRequest request)
Wraps the protobufReadRowsRequest
.Query
Query.QueryPaginator. getNextQuery()
Return the next query.Query
Query. limit(long limit)
Limits the number of rows that can be returnedQuery
Query. prefix(com.google.protobuf.ByteString prefix)
Query
Query. prefix(String prefix)
Query
Query. range(Range.ByteStringRange range)
Adds a range to be looked up.Query
Query. range(com.google.protobuf.ByteString start, com.google.protobuf.ByteString end)
Adds a range to be looked up.Query
Query. range(String start, String end)
Adds a range to be looked up.Query
Query. reversed(boolean enable)
Return rows in reverse order.Query
Query. rowKey(com.google.protobuf.ByteString key)
Adds a key to looked upQuery
Query. rowKey(String key)
Adds a key to looked upMethods in com.google.cloud.bigtable.data.v2.models that return types with arguments of type Query Modifier and Type Method Description List<Query>
Query. shard(List<KeyOffset> sampledRowKeys)
Split this query into multiple queries that can be evenly distributed across Bigtable nodes and be run in parallel.List<Query>
Query. shard(SortedSet<com.google.protobuf.ByteString> splitPoints)
Split this query into multiple queries that logically combine into this query. -
Uses of Query in com.google.cloud.bigtable.data.v2.stub
Methods in com.google.cloud.bigtable.data.v2.stub that return types with arguments of type Query Modifier and Type Method Description com.google.api.gax.rpc.UnaryCallSettings.Builder<Query,Row>
EnhancedBigtableStubSettings.Builder. readRowSettings()
Returns the builder for the settings used for point reads using readRow.com.google.api.gax.rpc.UnaryCallSettings<Query,Row>
EnhancedBigtableStubSettings. readRowSettings()
Returns the object with the settings used for point reads via ReadRows.com.google.api.gax.rpc.ServerStreamingCallSettings.Builder<Query,Row>
EnhancedBigtableStubSettings.Builder. readRowsSettings()
Returns the builder for the settings used for calls to readRows.com.google.api.gax.rpc.ServerStreamingCallSettings<Query,Row>
EnhancedBigtableStubSettings. readRowsSettings()
Returns the object with the settings used for calls to ReadRows.
-