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-05 UTC."],[[["This page details the `BulkMutation` class in the Google Cloud Bigtable C++ client library, focusing on its functionality for managing multiple row mutations."],["`BulkMutation` objects allow for batching multiple non-atomic mutations into a single request to Cloud Bigtable, improving efficiency compared to individual requests."],["The `BulkMutation` class offers multiple constructors to build the set of mutations from `SingleRowMutation` objects, including ranges, initializer lists, or a variadic list of mutations."],["Key functions of `BulkMutation` include `emplace_back`, `push_back` to add mutations, and `MoveTo` to transfer the mutations to a `MutateRowsRequest`."],["The `BulkMutation` class also provides functions to check the size of a set, using `size()`, or if it is empty, using `empty()`, as well as estimating the size in bytes of the mutations in the set with `estimated_size_in_bytes()`."]]],[]]