public sealed class CommandPartition : IEquatable<CommandPartition>
Represents a partition of data upon which a SpannerCommand will execute.
Partitions are useful for parallelizing large operations across several tasks or processes.
After partitioning a query, the partitions can be serialized using this method, then deserialized
with FromBase64String(String) on multiple machines, allowing parallel processing.
[[["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-04-09 UTC."],[[["The latest version of the `Google.Cloud.Spanner.Data` package is `5.0.0-beta05`, with multiple previous versions available, down to `3.5.0`."],["`CommandPartition` represents a data partition for parallel execution of `SpannerCommand` operations, enhancing the ability to break down larger tasks."],["The `CommandPartition` class implements the `IEquatable` interface and inherits from the base `Object` class, offering methods like `GetType`, `MemberwiseClone`, and `ToString`, that are inherited from the base class."],["`CommandPartition` includes a `PartitionId` property to identify the data set for a `SpannerCommand`, enabling to execute commands on a set of data."],["`CommandPartition` can be serialized to base64 text using `ToBase64String()` for distribution across multiple machines and later reconstructed using the `FromBase64String(String)` method for parallel processing."]]],[]]