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 `CommandPartition` documentation is 5.0.0-beta05, with multiple older versions available for reference, including versions in the 4.x.x and 3.x.x series."],["`CommandPartition` represents a portion of data for a `SpannerCommand`, which is useful for parallelizing large operations across various tasks or processes."],["The `PartitionId` property contains the ID for a set of data to be included when a `SpannerCommand` is executed."],["The `FromBase64String` method can be used to recreate a `CommandPartition` from a base64 string created by a previous call to the method `ToBase64String`."],["`CommandPartition` instances can be serialized to a base64 string using `ToBase64String`, enabling their use in distributed systems for parallel processing, then deserialized back to a `CommandPartition` with `FromBase64String`."]]],[]]