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-05 UTC."],[[["This page details the `BulkMutation` class within the Google Cloud Bigtable C++ client library, focusing on version 2.31.0 and including links to various other versions ranging from 2.11.0 to 2.37.0-rc."],["`BulkMutation` is used to efficiently send multiple mutations in a single request to Cloud Bigtable, though these mutations are not guaranteed to be atomic."],["The `BulkMutation` class supports several constructors, allowing creation from various sources such as iterators, initializer lists, single `SingleRowMutation` objects, and variadic lists of mutations."],["Key functions of `BulkMutation` include adding mutations with `emplace_back` and `push_back`, moving contents into a `MutateRowsRequest` object using `MoveTo`, and checking the set's status with `empty()`, `size()`, and `estimated_size_in_bytes()`."],["The documentation provides parameter details for each constructor and function, including types and descriptions, along with return types when applicable."]]],[]]