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 document outlines the `BulkMutation` class in the Google Cloud Bigtable C++ library, specifically detailing versions from 2.11.0 up to the latest release candidate 2.37.0-rc."],["`BulkMutation` allows for the batching of multiple mutations across different rows into a single, efficient request to Cloud Bigtable, although it should be noted these are not atomic."],["The `BulkMutation` class supports multiple constructors, including creating empty sets, from a range of `SingleRowMutations`, from a list, or even from a variadic list, which allows for flexible initialization of bulk mutations."],["The class includes functions like `emplace_back` and `push_back` to add `SingleRowMutation` or `FailedMutation` objects to the set, as well as `MoveTo`, `empty`, `size`, and `estimated_size_in_bytes` to manipulate and get information about the bulk mutations."],["Each function, constructor, and parameter of the `BulkMutation` class is documented with their parameters, and return type, allowing for users to easily refer to the documentation."]]],[]]