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-14 UTC."],[[["This documentation outlines the `BulkMutation` class in the Google Cloud Bigtable C++ client library, used to manage multiple mutations across different rows."],["The `BulkMutation` class allows for the creation of mutation sets through various constructors, including those that accept iterators, initializer lists, and individual or multiple `SingleRowMutation` objects."],["Users can add individual mutations to an existing `BulkMutation` object using methods like `emplace_back` and `push_back`."],["The class provides functionalities to check the state of a `BulkMutation` object, such as `empty()` to verify if it has any mutations, `size()` to count the number of mutations, and `estimated_size_in_bytes()` to estimate the memory footprint of the mutations."],["The `MoveTo` function provides the ability to move the contents into a `bigtable::v2::MutateRowsRequest`, allowing you to bundle the multiple mutations into a single request to big table."]]],[]]