public interface QuerySplitter
Modifier and Type | Method and Description |
---|---|
List<Query> |
getSplits(Query query,
PartitionId partition,
int numSplits,
Datastore datastore)
Returns a list of sharded
Query s for the given query. |
default List<Query> |
getSplits(Query query,
PartitionId partition,
int numSplits,
Datastore datastore,
com.google.protobuf.Timestamp readTime)
Same as
getSplits(Query, PartitionId, int, Datastore) but the splits are based on
readTime , and the returned sharded Query s should also be executed with readTime . |
List<Query> getSplits(Query query, PartitionId partition, int numSplits, Datastore datastore) throws DatastoreException
Query
s for the given query.
This will create up to the desired number of splits, however it may return less splits if the desired number of splits is unavailable. This will happen if the number of split points provided by the underlying Datastore is less than the desired number, which will occur if the number of results for the query is too small.
query
- the query to split.partition
- the partition the query is running in.numSplits
- the desired number of splits.datastore
- the datastore to run on.DatastoreException
- if there was a datastore error while generating query splits.IllegalArgumentException
- if the given query or numSplits was invalid.@BetaApi default List<Query> getSplits(Query query, PartitionId partition, int numSplits, Datastore datastore, com.google.protobuf.Timestamp readTime) throws DatastoreException
getSplits(Query, PartitionId, int, Datastore)
but the splits are based on
readTime
, and the returned sharded Query
s should also be executed with readTime
. Reading from a timestamp is currently a private preview feature in Datastore.DatastoreException
Copyright © 2023 Google LLC. All rights reserved.