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, which manages sets of mutations across multiple rows for efficient batch processing."],["The `BulkMutation` class supports the creation of a multi-row mutation from various sources, including a range of `SingleRowMutations`, an initializer list, a single `SingleRowMutation`, or even a variadic list of mutations."],["The class offers methods to add mutations like `emplace_back` and `push_back`, along with functions to manage the mutation set like checking if it is `empty`, getting the `size`, and getting the `estimated_size_in_bytes`."],["`BulkMutation` objects can be efficiently converted into a `google::bigtable::v2::MutateRowsRequest` using the `MoveTo` function, which allows batching for cloud operations."],["The latest release of the documentation provided is version `2.37.0-rc` and there are multiple previous versions, each with their own associated documentation."]]],[]]