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 focusing on version 2.12.0 and later versions."],["The `BulkMutation` class is designed to efficiently batch multiple row mutations into a single request, improving performance compared to individual requests, although these mutations are not atomic."],["The class offers several constructors for creating multi-row mutations, including options for empty sets, ranges of `SingleRowMutation` objects, initializer lists, and variadic lists."],["Key functionalities of `BulkMutation` include adding mutations via `emplace_back` and `push_back`, moving the contents to a `MutateRowsRequest`, checking for emptiness with `empty()`, retrieving the number of mutations with `size()`, and getting the estimated byte size with `estimated_size_in_bytes()`."],["The latest version available is `2.37.0-rc`, and the document provides a list of previous versions ranging back to `2.11.0`, each linked to its respective documentation."]]],[]]