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 |
Modifier and Type | Method and Description |
---|---|
UnaryCallable<Query,Row> |
BigtableDataClient.readRowCallable()
Reads a single row.
|
<RowT> UnaryCallable<Query,RowT> |
BigtableDataClient.readRowCallable(RowAdapter<RowT> rowAdapter)
Reads a single row.
|
ServerStreamingCallable<Query,Row> |
BigtableDataClient.readRowsCallable()
Streams back the results of the query.
|
<RowT> ServerStreamingCallable<Query,RowT> |
BigtableDataClient.readRowsCallable(RowAdapter<RowT> rowAdapter)
Streams back the results of the query.
|
UnaryCallSettings<Query,Row> |
BigtableDataSettings.readRowSettings()
Returns the object with the settings used for point reads via ReadRow.
|
UnaryCallSettings.Builder<Query,Row> |
BigtableDataSettings.Builder.readRowSettings()
Deprecated.
Please use
BigtableDataSettings.Builder.stubSettings() |
ServerStreamingCallSettings<Query,Row> |
BigtableDataSettings.readRowsSettings()
Deprecated.
Please use
BigtableDataSettings.getStubSettings() |
ServerStreamingCallSettings.Builder<Query,Row> |
BigtableDataSettings.Builder.readRowsSettings()
Deprecated.
Please use
BigtableDataSettings.Builder.stubSettings() |
Modifier and Type | Method and Description |
---|---|
ServerStream<Row> |
BigtableDataClient.readRows(Query query)
Convenience method for synchronously streaming the results of a
Query . |
void |
BigtableDataClient.readRowsAsync(Query query,
ResponseObserver<Row> observer)
Convenience method for asynchronously streaming the results of a
Query . |
Modifier and Type | Method and Description |
---|---|
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(com.google.bigtable.v2.ReadRowsRequest request)
Wraps the protobuf
ReadRowsRequest . |
Query |
Query.limit(long limit)
Limits the number of rows that can be returned
|
Query |
Query.prefix(ByteString prefix) |
Query |
Query.prefix(String prefix) |
Query |
Query.range(ByteString start,
ByteString end)
Adds a range to be looked up.
|
Query |
Query.range(Range.ByteStringRange range)
Adds a range to be looked up.
|
Query |
Query.range(String start,
String end)
Adds a range to be looked up.
|
Query |
Query.rowKey(ByteString key)
Adds a key to looked up
|
Query |
Query.rowKey(String key)
Adds a key to looked up
|
Modifier and Type | Method and 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<ByteString> splitPoints)
Split this query into multiple queries that logically combine into this query.
|
Modifier and Type | Method and Description |
---|---|
UnaryCallSettings<Query,Row> |
EnhancedBigtableStubSettings.readRowSettings()
Returns the object with the settings used for point reads via ReadRows.
|
UnaryCallSettings.Builder<Query,Row> |
EnhancedBigtableStubSettings.Builder.readRowSettings()
Returns the builder for the settings used for point reads using readRow.
|
ServerStreamingCallSettings<Query,Row> |
EnhancedBigtableStubSettings.readRowsSettings()
Returns the object with the settings used for calls to ReadRows.
|
ServerStreamingCallSettings.Builder<Query,Row> |
EnhancedBigtableStubSettings.Builder.readRowsSettings()
Returns the builder for the settings used for calls to readRows.
|
Copyright © 2019 Google LLC. All rights reserved.