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++ library, with a list of available versions ranging from 2.11.0 to 2.37.0-rc."],["The `BulkMutation` class is used to group multiple mutations across different rows into a single, efficient batch request for Bigtable."],["It provides multiple constructor options for creating a `BulkMutation` object, including from iterators, initializer lists, single or multiple `SingleRowMutation` objects, or a variadic list."],["Key functions of the `BulkMutation` class include adding mutations via `emplace_back` and `push_back`, transferring the contents to a `MutateRowsRequest` object with `MoveTo`, and checking its size or emptiness with `size()` and `empty()`."],["Additionally, `estimated_size_in_bytes()` allows you to estimate the total size of the mutations contained within the set."]]],[]]