GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
MONGOC_COLLECTION_CREATE_BULK_OPERATION(3) libmongoc MONGOC_COLLECTION_CREATE_BULK_OPERATION(3)

WARNING:

Deprecated since version 1.9.0: Use mongoc_collection_create_bulk_operation_with_opts() instead.



mongoc_bulk_operation_t *
mongoc_collection_create_bulk_operation (

mongoc_collection_t *collection,
bool ordered,
const mongoc_write_concern_t *write_concern);


  • collection: A mongoc_collection_t.
  • ordered: If the operations must be performed in order.
  • write_concern: An optional mongoc_write_concern_t or NULL.

This function shall begin a new bulk operation. After creating this you may call various functions such as mongoc_bulk_operation_update(), mongoc_bulk_operation_insert() and others.

After calling mongoc_bulk_operation_execute() the commands will be executed in as large as batches as reasonable by the client.

If ordered is true, then processing will stop at the first error.

If ordered is not true, then the bulk operation will attempt to continue processing even after the first failure.

write_concern contains the write concern for all operations in the bulk operation. If NULL, the collection's write concern is used. The global default is acknowledged writes: MONGOC_WRITE_CONCERN_W_DEFAULT.

Errors are propagated when executing the bulk operation.

A newly allocated mongoc_bulk_operation_t that should be freed with mongoc_bulk_operation_destroy() when no longer in use.

WARNING:

Failure to handle the result of this function is a programming error.


SEE ALSO:

Bulk Write Operations

mongoc_bulk_operation_t



MongoDB, Inc

2009-present, MongoDB, Inc.

July 3, 2025 1.30.4

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.