Interface BatchReadOnlyTransaction

public interface BatchReadOnlyTransaction extends ReadOnlyTransaction

BatchReadOnlyTransaction can be configured to read at timestamps in the past and allows for exporting arbitrarily large amounts of data from Cloud Spanner databases. This is a read only transaction which additionally allows to partition a read or query request. Read/query request can then be executed independently over each partition while observing the same snapshot of the database. BatchReadOnlyTransaction can also be shared across multiple processes/machines by passing around the BatchTransactionId and then recreating the transaction using BatchClient#batchReadOnlyTransaction(BatchTransactionId).

Unlike locking read-write transactions, BatchReadOnlyTransaction never abort. They can fail if the chosen read timestamp is garbage collected; however any read or query activity within an hour on the transaction avoids garbage collection and most applications do not need to worry about this in practice.

To execute a BatchReadOnlyTransaction, specify a TimestampBound, which tells Cloud Spanner how to choose a read timestamp.

Implements

ReadOnlyTransaction

Methods

execute(Partition partition)

public abstract ResultSet execute(Partition partition)

Execute the partition to return ResultSet. The result returned could be zero or more rows. The row metadata may be absent if no rows are returned.


 final BatchReadOnlyTransaction txn =
     batchClient.batchReadOnlyTransaction(TimestampBound.strong());
 List
Parameter
NameDescription
partitionPartition
Returns
TypeDescription
ResultSet
Exceptions
TypeDescription
SpannerException

getBatchTransactionId()

public abstract BatchTransactionId getBatchTransactionId()

Returns a BatchTransactionId to be re-used across several machines/processes. This BatchTransactionId guarantees the subsequent read/query to be executed at the same timestamp.

Returns
TypeDescription
BatchTransactionId

partitionQuery(PartitionOptions partitionOptions, Statement statement, Options.QueryOption[] options)

public abstract List<Partition> partitionQuery(PartitionOptions partitionOptions, Statement statement, Options.QueryOption[] options)

Returns a list of Partition to execute a query against the database.

These partitions can be executed across multiple processes, even across different machines. The partition size and count can be configured using PartitionOptions. Though it may not necessarily be honored depending on the query and options in the request.

Parameters
NameDescription
partitionOptionsPartitionOptions

configuration for size and count of partitions returned

statementStatement

the query statement to execute

optionsQueryOption[]

the options to configure the query


 final BatchReadOnlyTransaction txn =
     batchClient.batchReadOnlyTransaction(TimestampBound.strong());
 List
 <!--SNIPPET partition_query-->
Returns
TypeDescription
List<Partition>
Exceptions
TypeDescription
SpannerException

partitionRead(PartitionOptions partitionOptions, String table, KeySet keys, Iterable<String> columns, Options.ReadOption[] options)

public abstract List<Partition> partitionRead(PartitionOptions partitionOptions, String table, KeySet keys, Iterable<String> columns, Options.ReadOption[] options)

Returns a list of Partition to read zero or more rows from a database.

These partitions can be executed across multiple processes, even across different machines. The partition size and count hints can be configured using PartitionOptions.

Parameters
NameDescription
partitionOptionsPartitionOptions

configuration for size and count of partitions returned

tableString

the name of the table to read

keysKeySet

the keys and ranges of rows to read. Regardless of ordering in keys, rows are returned in their natural key order.

columnsIterable<String>

the columns to read

optionsReadOption[]

the options to configure the read, supported values are Options#prefetchChunks()


 final BatchReadOnlyTransaction txn =
     batchClient.batchReadOnlyTransaction(TimestampBound.strong());
 List
 <!--SNIPPET partition_read-->
Returns
TypeDescription
List<Partition>
Exceptions
TypeDescription
SpannerException

partitionReadUsingIndex(PartitionOptions partitionOptions, String table, String index, KeySet keys, Iterable<String> columns, Options.ReadOption[] options)

public abstract List<Partition> partitionReadUsingIndex(PartitionOptions partitionOptions, String table, String index, KeySet keys, Iterable<String> columns, Options.ReadOption[] options)

Returns a list of Partition to read zero or more rows from a database using an index.

These partitions can be executed across multiple processes, even across different machines. The partition size and count can be configured using PartitionOptions. Though it may not necessarily be honored depending on the parameters in the request.

Parameters
NameDescription
partitionOptionsPartitionOptions

configuration for size and count of partitions returned

tableString

the name of the table to read

indexString

the name of the index on table to use

keysKeySet

the keys and ranges of index rows to read. Regardless of ordering in keys, rows are returned in the natural key order of the index.

columnsIterable<String>

the columns to read

optionsReadOption[]

the options to configure the read


 final BatchReadOnlyTransaction txn =
     batchClient.batchReadOnlyTransaction(TimestampBound.strong());
 List
 <!--SNIPPET partition_read_using_index-->
Returns
TypeDescription
List<Partition>
Exceptions
TypeDescription
SpannerException