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++ client library, focusing on its functionality for managing multiple mutations across different rows in a single operation."],["The latest release is `2.37.0-rc`, and the library contains documentation of `BulkMutation` for various versions from 2.11.0 up to this newest version."],["`BulkMutation` objects can be constructed in a variety of ways including from iterators, initializer lists, single `SingleRowMutation` objects, and variadic lists."],["The `BulkMutation` class provides methods such as `emplace_back`, `push_back`, `MoveTo`, `empty`, `size`, and `estimated_size_in_bytes` to add, move, check the status, count, and estimate the size of the batched mutations."],["Using `BulkMutation` is a more efficient way to manage multiple mutations than sending them in separate requests, even though these mutations are not atomic."]]],[]]