| MONGOC_BULK_OPERATION_EXECUTE(3) | libmongoc | MONGOC_BULK_OPERATION_EXECUTE(3) |
SYNOPSIS¶
uint32_t mongoc_bulk_operation_execute (mongoc_bulk_operation_t *bulk,
bson_t *reply,
bson_error_t *error);
This function executes all operations queued into the bulk operation. Unless ordered: false was specified in the opts passed to mongoc_collection_create_bulk_operation_with_opts() <>, then forward progress will be stopped upon the first error.
It is only valid to call mongoc_bulk_operation_execute() <> once on the same mongoc_bulk_operation_t <>. Calling repeatedly results in error. Call mongoc_bulk_operation_destroy() <> to destroy bulk afterwards.
Changed in version 2.0.0: Calling mongoc_bulk_operation_execute() <> repeatedly results in an error.
Warning:
PARAMETERS¶
- bulk: A mongoc_bulk_operation_t <>.
- reply: A maybe-NULL pointer to overwritable storage <https://www.mongodb.com/docs/languages/c/c-driver/current/libbson/guides/lifetimes/#overwritable-storage> for a bson_t <https://www.mongoc.org/libbson/current/bson_t.html> to contain the results.
- error: An optional location for a bson_error_t <> or NULL.
ERRORS¶
Errors are propagated via the error parameter.
RETURNS¶
On success, returns the server id used. On failure, returns 0 and sets error.
A write concern timeout or write concern error is considered a failure.
The reply document counts operations and collects error information. See Bulk Write Operations <https://www.mongodb.com/docs/languages/c/c-driver/current/libmongoc/guides/bulk/> for examples.
See also:
Bulk Write Operations <https://www.mongodb.com/docs/languages/c/c-driver/current/libmongoc/guides/bulk/>
mongoc_bulk_operation_get_server_id() <>, which gets the id of the server used even if the operation failed.
Author¶
MongoDB, Inc
Copyright¶
2009-present, MongoDB, Inc.
| November 26, 2025 | 2.2.0 |