The ReadPartition class is a regular type that represents a single slice of a parallel Read operation.
Instances of ReadPartition are created by Client::PartitionRead. Once created, ReadPartition objects can be serialized, transmitted to separate processes, and used to read data in parallel using Client::Read. If data_boost is set, those requests will be executed using the independent compute resources of Cloud Spanner Data Boost.
Constructors
ReadPartition(ReadPartition const &)
Copy and move.
Parameter
Name
Description
ReadPartition const &
ReadPartition(ReadPartition &&)
Copy and move.
Parameter
Name
Description
ReadPartition &&
ReadPartition()
Constructs an instance of ReadPartition that does not specify any table or columns to be read.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-14 UTC."],[[["The webpage provides documentation for the `ReadPartition` class in the Google Cloud Spanner C++ client library, with version 2.37.0-rc being the latest version, and goes as far back as version 2.11.0."],["`ReadPartition` represents a single slice of a parallel read operation, allowing for data to be read from a database in a distributed manner."],["Instances of `ReadPartition` are created by the `Client::PartitionRead` function and can be serialized and used by other processes to execute `Client::Read` in parallel."],["The `ReadPartition` class includes constructors, assignment operators, and functions like `TableName()`, `ColumnNames()`, and `ReadOptions()` for managing read operations."],["Setting the `data_boost` flag will execute requests using the independent compute resources of Cloud Spanner Data Boost."]]],[]]