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 document outlines the `BulkMutation` class in the Google Cloud Bigtable C++ client library, focusing on its functionality for managing multiple row mutations."],["The `BulkMutation` class allows for the creation of mutation sets from various sources, including iterators, initializer lists, and variadic lists of `SingleRowMutation` objects."],["The class provides methods such as `emplace_back` and `push_back` for adding mutations, as well as methods like `empty`, `size`, and `estimated_size_in_bytes` for querying the mutation set's state."],["The `MoveTo` function is designed to transfer the contents of the `BulkMutation` into a `google::bigtable::v2::MutateRowsRequest`, which will be sent to the Bigtable server."],["The document also provides documentation for 27 versions of the class, from 2.11.0 to 2.37.0-rc, including links to the class documentation for each respective version."]]],[]]