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, designed to manage multiple mutations across different rows efficiently."],["The `BulkMutation` class supports various constructors to initialize sets of mutations, including from iterators, initializer lists, single mutations, or multiple single mutations."],["Key functionalities of the `BulkMutation` class include adding mutations with `emplace_back` and `push_back`, moving its contents to a `MutateRowsRequest`, and querying its size and emptiness."],["The class offers methods to check if the set of mutations is empty (`empty()`), determine the number of mutations (`size()`), and estimate the total size in bytes of the contained mutations (`estimated_size_in_bytes()`)."],["There are many versions of this document, from 2.11.0 to 2.37.0-rc."]]],[]]