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."],[[["This document outlines the `CommandPartition` class, which is crucial for dividing data into segments for `SpannerCommand` execution, enabling the parallel processing of extensive operations."],["The latest version of the documentation available is for version 5.0.0-beta05, although many other versions including 3.12.0 are documented."],["The `CommandPartition` class is a sealed class that implements `IEquatable\u003cCommandPartition\u003e`, inheriting members from the `Object` class, and it belongs to the `Google.Cloud.Spanner.Data` namespace."],["`CommandPartition` includes a read-only `PartitionId` property, a `FromBase64String()` static method to recreate a partition from a string, a `GetHashCode()` method and a `ToBase64String()` method to serialize the partition."],["The `ToBase64String()` method allows partitions to be serialized and then deserialized on multiple machines for parallel processing, by using the complementary method `FromBase64String()`."]]],[]]