Represent a set of mutations across multiple rows.
Cloud Bigtable can batch multiple mutations in a single request. The mutations are not atomic, but it is more efficient to send them in a batch than to make multiple smaller requests.
Constructors
BulkMutation()
Create an empty set of mutations.
BulkMutation(Iterator, Iterator)
Create a multi-row mutation from a range of SingleRowMutations.
[[["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-21 UTC."],[[["This webpage details the `BulkMutation` class in the Google Cloud Bigtable C++ client library, with version 2.20.0 being the currently displayed version and 2.37.0-rc being the latest."],["`BulkMutation` enables batching multiple row mutations into a single, more efficient request, although these mutations are not atomic."],["The `BulkMutation` class offers several constructors to create mutation sets, including empty sets, ranges of `SingleRowMutation` objects, initializer lists, or variadic lists."],["Key functionalities of `BulkMutation` include adding mutations with `emplace_back` and `push_back`, moving contents to a `MutateRowsRequest` object with `MoveTo`, and checking the size and estimated memory usage of the mutation set with `empty`, `size`, and `estimated_size_in_bytes`."],["There is a comprehensive list of versions of the `BulkMutation` class available, all the way back to version 2.11.0."]]],[]]