-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathbulk.txt
792 lines (571 loc) · 24.6 KB
/
bulk.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
.. _golang-bulk:
===============
Bulk Operations
===============
.. meta::
:description: Learn to perform bulk write operations with the MongoDB Go Driver, including inserts, updates, replacements, and deletions, using the bulkWrite() method.
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 2
:class: singlecol
Overview
--------
In this guide, you can learn how to use the {+driver-long+} to
perform **bulk operations**. Bulk operations reduce the number
of calls to the server by performing multiple write operations
in a single method.
The ``Collection`` and ``Client`` classes both provide a ``BulkWrite()``
method. You can use the ``Collection.BulkWrite()`` method to perform
multiple write operations on a single collection. You can use the
``Client.BulkWrite()`` method to perform bulk writes across
multiple namespaces. In MongoDB, a namespace consists of a database name
and a collection name.
.. important:: Client Bulk Write Server Requirement
To perform bulk operations on a ``Client`` instance,
ensure that your application connects to {+mdb-server+}
v8.0 or later
Sample Data
~~~~~~~~~~~
The examples in this guide use the following structs:
- ``Book`` struct, which models documents in the ``db.books`` collection.
Each document contains a description of a book that includes the title,
author, and page length.
- ``Poem`` struct, which models documents in the ``db.poems`` collection.
Each document contains a description of a poem that includes the title,
author, and publication year.
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:start-after: start-structs
:end-before: end-structs
:language: go
:dedent:
To run the examples in this guide, load the sample data into the
``books`` and ``poems`` collection by using the following snippet:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin insertDocs
:end-before: end insertDocs
.. include:: /includes/fundamentals/automatic-db-coll-creation.rst
.. _golang-bulk-collection:
Collection Bulk Write
---------------------
To perform a bulk operation on a single namespace, call the ``BulkWrite()``
method on a collection and pass an array of :ref:`WriteModel <golang-write-model-collection>`
documents as a parameter.
.. _golang-write-model-collection:
Define Collection Bulk Write Models
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To define the write operations for your bulk operation on one
namespace, create a ``WriteModel`` for each insert, replace,
update, or delete.
InsertOneModel
``````````````
To define an insert operation for a bulk write, create an
``InsertOneModel`` specifying the document you want to insert. To
insert multiple documents, create an ``InsertOneModel`` for each
document you want to insert.
You can specify the behavior of the ``InsertOneModel`` by
using the following method:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetDocument()``
- | The document to insert.
The following example creates two ``InsertOneModel`` instances to
insert two documents into the ``books`` collection:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk insert model collection
:end-before: end bulk insert model collection
ReplaceOneModel
```````````````
To define a replace operation for a bulk write, create
a ``ReplaceOneModel`` specifying the document you want
replace and a replacement document. To replace multiple
documents, create a ``ReplaceOneModel`` for each document
you want to replace.
You can specify the behavior of the ``ReplaceOneModel`` by
using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to replace.
* - ``SetHint()``
- | The index to use to scan for documents.
* - ``SetReplacement()``
- | The document to replace the matched document with.
* - ``SetSort()``
- | The sort order for matching documents. The replace operation
replaces only the first document according to the sort criteria.
* - ``SetUpsert()``
- | Whether to insert a new document if the :ref:`query filter <golang-query-filter-definition>` doesn't match any documents.
The following example creates a ``ReplaceOneModel`` to replace a
document in the ``books`` collection in which the ``title`` value is ``"Lucy"``:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk replace model collection
:end-before: end bulk replace model collection
UpdateOneModel and UpdateManyModel
``````````````````````````````````
To define an update operation for a bulk write, create
an ``UpdateOneModel`` specifying the document you want to update
and an :ref:`update document <golang-update-document>`. To update
multiple documents, use an ``UpdateManyModel``.
You can specify the behavior of each of the update models
by using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetArrayFilters()``
- | The array elements the update applies to.
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to update.
* - ``SetHint()``
- | The index to use to scan for documents.
* - ``SetSort()``
- | The criteria to use when ordering matching documents.
This method is only available for the ``UpdateOneModel``
class.
* - ``SetUpdate()``
- | The modifications to apply on the matched documents.
* - ``SetUpsert()``
- | Whether to insert a new document if the :ref:`query filter <golang-query-filter-definition>` doesn't match any documents.
The following example creates an ``UpdateOneModel`` to update
a document in the ``books`` collection, decrementing a
document's ``length`` by ``15`` if the ``author`` is ``"Elena Ferrante"``:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk update model collection
:end-before: end bulk update model collection
DeleteOneModel and DeleteManyModel
``````````````````````````````````
To define a delete operation for a bulk write, create a
``DeleteOneModel`` specifying the document you want to delete.
To delete multiple documents, use the ``DeleteManyModel``.
You can specify the behavior of each of the delete models
by using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to delete.
* - ``SetHint()``
- | The index to use to scan for documents.
The following example creates a ``DeleteManyModel`` to delete
documents in the ``books`` collection in which the ``length`` is
greater than ``300``:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk delete model collection
:end-before: end bulk delete model collection
Modify Collection-Level Behavior
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To modify the behavior of your bulk write operation, pass a ``BulkWriteOptions``
instance to the ``BulkWrite()`` method.
The ``BulkWriteOptions`` type allows you to configure options by using the
following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetBypassDocumentValidation()``
- | Specifies whether the operation can opt-out of document level validation.
| Default: ``false``
* - ``SetComment()``
- | Specifies a comment to attach to the operation.
| Default: ``nil``
* - ``SetLet()``
- | Specifies a document with a list of values to improve operation readability. Values
must be constant or closed expressions that don't reference document fields. For more
information, see the ``let`` field for the :manual:`delete
</reference/command/delete/#std-label-delete-let-syntax>` and :manual:`update
</reference/command/update/#std-label-update-let-syntax>` commands in the {+mdb-server+} manual.
| Default: ``nil``
* - ``SetOrdered()``
- | Specifies whether the driver stops performing write operations after an error occurs.
| Default: ``true``
Collection-Level Return Value
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The ``BulkWrite()`` method returns a ``BulkWriteResult`` type, which
includes information about the bulk operation.
The ``BulkWriteResult`` type contains the following properties:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Property
- Description
* - ``InsertedCount``
- The number of documents inserted.
* - ``MatchedCount``
- The number of documents matched by the :ref:`query filter <golang-query-filter-definition>` in update and replace operations.
* - ``ModifiedCount``
- The number of documents modified by update and replace operations.
* - ``DeletedCount``
- The number of documents deleted.
* - ``UpsertedCount``
- The number of documents :ref:`upserted <golang-upsert-definition>` by update and replace operations.
* - ``UpsertedIDs``
- A map of an operation index to the ``_id`` of each :ref:`upserted <golang-upsert-definition>` document.
* - ``Acknowledged``
- A boolean value that indicates whether the write operation was acknowledged.
Collection-Level Execution Order
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To specify whether the bulk write performs the operations
in order, you can set the ``Ordered`` option
to a boolean value. To set this option, specify the ``Ordered``
field of a ``BulkWriteOptions`` instance.
Ordered
```````
By default, the ``BulkWrite()`` method runs bulk operations in
order you added them and stops if an error occurs.
.. tip::
This is equivalent to passing a value of ``true`` to the ``SetOrdered()``
method, as shown in the following code:
.. code-block:: go
opts := options.BulkWrite().SetOrdered(true)
Unordered
`````````
To run bulk write operations in any order and continue if an error
occurs, pass a value of ``false`` to the ``SetOrdered()`` method. The method
reports errors after the operation completes.
The following example performs the following actions in any order:
- Inserts two documents
- Replaces a document where the ``title`` is "My Brilliant Friend" with a new document
- Increments every document's ``length`` by ``10`` if the current
``length`` value is less than ``200``
- Deletes all documents where the ``author`` field value includes ``"Jam"``
.. io-code-block::
:copyable: true
.. input:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:start-after: begin unordered collection
:end-before: end unordered collection
:language: go
:dedent:
.. output::
:language: none
:visible: false
Number of documents inserted: 2
Number of documents replaced or updated: 2
Number of documents deleted: 1
The following documents are present in the ``books`` collection after
the bulk operation:
.. code-block:: none
:copyable: false
{"title":"Atonement","author":"Ian McEwan","length":351}
{"title":"Middlemarch","author":"George Eliot","length":904}
{"title":"Pale Fire","author":"Vladimir Nabokov","length":246}
.. _golang-bulk-client:
Client Bulk Write
-----------------
To perform a bulk operation across multiple namespaces, call the
``BulkWrite()`` method on your client and pass an array of
:ref:`ClientWriteModel <golang-write-model-client>` documents as a parameter.
.. _golang-write-model-client:
Define Client Bulk Write Models
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To specify the write operations for your bulk operation on multiple
namespaces, create a ``ClientWriteModel`` for each insert,
replace, update, or delete. Pass each write model to the
``ClientBulkWrite`` struct and specify the target database and collection,
as shown in the following code:
.. code-block:: go
writes := []mongo.ClientBulkWrite{
{"<database name>", "<collection name>", <write model>},
...
}
ClientInsertOneModel
````````````````````
To define an insert operation for a bulk write, create a ``ClientInsertOneModel``
specifying the document you want to insert. To insert multiple documents, create
a ``ClientInsertOneModel`` for each document you want to insert.
You can specify the behavior of the ``ClientInsertOneModel``
by using the following method:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetDocument()``
- | The document to insert.
The following example creates two ``ClientInsertOneModel`` instances to
insert one document into the ``books`` collection and one document into the
``poems`` collection:
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk insert model client
:end-before: end bulk insert model client
ClientReplaceOneModel
`````````````````````
To define a replace operation for a bulk write, create
a ``ClientReplaceOneModel`` specifying the document
you want to replace and a :ref:`replacement document <golang-replacement-document>`.
To replace multiple documents, create a ``ClientReplaceOneModel`` for
each document you want to replace.
You can specify the behavior of the ``ClientReplaceOneModel`` by
using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to replace.
* - ``SetHint()``
- | The index to use to scan for documents.
* - ``SetReplacement()``
- | The document to replace the matched document with.
* - ``SetSort()``
- | The sort order for matching documents. The replace operation
replaces only the first document according to the sort criteria.
* - ``SetUpsert()``
- | Whether to insert a new document if the :ref:`query filter <golang-query-filter-definition>` doesn't match any documents.
This example creates ``ClientReplaceOneModel`` instances to define
the following operations:
- Replace operation on the ``books`` collection to replace a
document in which the ``title`` value is ``"Lucy"``
- Replace operation on the ``poems`` collection to replace a
document in which the ``title`` value is ``"Song of Myself"``
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk replace model client
:end-before: end bulk replace model client
ClientUpdateOneModel and ClientUpdateManyModel
``````````````````````````````````````````````
To define an update operation for a bulk write, create
a ``ClientUpdateOneModel`` specifying the document you
want to update and an :ref:`update document <golang-update-document>`.
To update multiple documents, use a ``ClientUpdateManyModel``.
You can specify the behavior of each of the update models
by using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetArrayFilters()``
- | The array elements the update applies to.
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to update.
* - ``SetHint()``
- | The index to use to scan for documents.
* - ``SetSort()``
- | The criteria to use when ordering matching documents.
This method is only available for the ``ClientUpdateOneModel`` class.
* - ``SetUpdate()``
- | The modifications to apply on the matched documents.
* - ``SetUpsert()``
- | Whether to insert a new document if the :ref:`query filter <golang-query-filter-definition>`
doesn't match any documents.
This example creates ``ClientUpdateOneModel`` instances to define
the following operations:
- Update operation on the ``books`` collection to update a
document in which the ``author`` value is ``"Elena Ferrante"``
- Update operation on the ``poems`` collection to update a
document in which the ``author`` value is ``"Ada Limon"``
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk update model client
:end-before: end bulk update model client
.. note::
To update all documents that match the ``author`` field
query filters in the preceding example, use ``ClientUpdateManyModel``
instances.
ClientDeleteOneModel and ClientDeleteManyModel
``````````````````````````````````````````````
To define a delete operation for a bulk write, create
a ``ClientDeleteOneModel`` specifying the document you want
to delete. To delete multiple documents, use the
``ClientDeleteManyModel``.
You can specify the behavior of each of the delete models
by using the following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetCollation()``
- | The type of language collation to use when sorting results.
* - ``SetFilter()``
- | The :ref:`query filter <golang-query-filter-definition>` specifying which document to delete.
* - ``SetHint()``
- | The index to use to scan for documents.
This example creates ``ClientDeleteOneModel`` instances to define
the following operations:
- Delete operation on the ``books`` collection to delete a
document in which the ``length`` value is ``103``
- Delete operation on the ``poems`` collection to delete a
document in which the ``year`` value is ``1855``
.. literalinclude:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:language: go
:dedent:
:start-after: begin bulk delete model client
:end-before: end bulk delete model client
Modify Client-Level Behavior
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To modify the behavior of your bulk write operation, pass a ``ClientBulkWriteOptions``
instance to the ``BulkWrite()`` method.
The ``ClientBulkWriteOptions`` type allows you to configure options by using the
following methods:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Method
- Description
* - ``SetBypassDocumentValidation()``
- | Specifies whether the operation can opt-out of document level validation.
| Default: ``false``
* - ``SetOrdered()``
- | Specifies whether the driver stops performing write operations after an error occurs.
| Default: ``true``
* - ``SetComment()``
- | Specifies a comment to attach to the operation.
| Default: ``nil``
* - ``SetLet()``
- | Specifies a document with a list of values to improve operation readability. Values
must be constant or closed expressions that don't reference document fields. For more
information, see the ``let`` field for the :manual:`delete
</reference/command/delete/#std-label-delete-let-syntax>` and :manual:`update
</reference/command/update/#std-label-update-let-syntax>` commands in the {+mdb-server+}
manual.
| Default: ``nil``
* - ``SetWriteConcern()``
- | Specifies the write concern for the operations.
| Default: ``nil``
* - ``SetVerboseResults()``
- | Specifies whether detailed information about each successful operation is
included in the result.
| Default: ``false``
Client-Level Return Value
~~~~~~~~~~~~~~~~~~~~~~~~~
The ``BulkWrite()`` method returns a ``ClientBulkWriteResult`` type, which
includes information about the bulk operation.
The ``ClientBulkWriteResult`` type contains the following properties:
.. list-table::
:widths: 30 70
:header-rows: 1
* - Property
- Description
* - ``InsertedCount``
- The number of documents inserted.
* - ``MatchedCount``
- The number of documents matched by the :ref:`query filter <golang-query-filter-definition>` in update and replace operations.
* - ``ModifiedCount``
- The number of documents modified by update and replace operations.
* - ``DeletedCount``
- The number of documents deleted.
* - ``UpsertedCount``
- The number of documents :ref:`upserted <golang-upsert-definition>` by update and replace operations.
* - ``InsertResults``
- A map of an operation index to the ``_id`` value of each inserted document.
* - ``UpdateResults``
- A map of an operation index to the ``_id`` value of each updated document.
* - ``DeleteResults``
- A map of an operation index to the ``_id`` value of each deleted document.
* - ``Acknowledged``
- A boolean value that indicates whether the write operation was acknowledged.
* - ``HasVerboseResults``
- A boolean value that indicates whether the result contains detailed results.
Client-Level Execution Order
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To specify whether the bulk write performs the operations
in order, you can set the ``Ordered`` option
to a boolean value. To set this option, specify the ``Ordered``
field of a ``ClientBulkWriteOptions`` instance.
Ordered
```````
By default, the ``BulkWrite()`` method executes bulk operations in
order you added them and stops if an error occurs.
.. tip::
This is equivalent to passing a value of ``true`` to the ``SetOrdered()``
method, as shown in the following code:
.. code-block:: go
opts := options.ClientBulkWrite().SetOrdered(true)
Unordered
`````````
To run bulk write operations in any order and continue if an error
occurs, pass a value of ``false`` to the ``SetOrdered()`` method. The method
reports errors after the operation completes.
The following example performs the following actions in any order:
- Inserts a new document into the ``books`` and ``poems`` collections
- Updates a document in the ``poems`` collection that has a ``title``
value of ``"The Raincoat"``
- Replaces a document in the ``books`` collection that has a ``title``
value of ``"My Brilliant Friend"``
.. io-code-block::
:copyable: true
.. input:: /includes/fundamentals/code-snippets/CRUD/bulkOps.go
:start-after: begin unordered client
:end-before: end unordered client
:language: go
:dedent:
.. output::
:language: none
:visible: false
Number of documents inserted: 2
Number of documents replaced or updated: 2
Additional Information
----------------------
For a runnable example on performing a bulk operation, see
:ref:`golang-bulk-ops-usage-example`.
Related Operations
~~~~~~~~~~~~~~~~~~
To learn more about performing the operations mentioned, see the
following guides:
- :ref:`golang-query-document`
- :ref:`golang-insert-guide`
- :ref:`golang-change-document`
- :ref:`golang-delete-guide`
- :manual:`Bulk Write Operations </core/bulk-write-operations/>`
API Documentation
~~~~~~~~~~~~~~~~~
To learn more about the methods or types used for collection bulk
writes, see the following API documentation:
- `Collection.BulkWrite() <{+api+}/mongo#Collection.BulkWrite>`__
- `BulkWriteOptions <{+api+}/mongo/options#BulkWriteOptions>`__
- `BulkWriteResult <{+api+}/mongo#BulkWriteResult>`__
- `NewInsertOneModel() <{+api+}/mongo#NewInsertOneModel>`__
- `NewReplaceOneModel() <{+api+}/mongo#NewReplaceOneModel>`__
- `NewUpdateOneModel() <{+api+}/mongo#NewUpdateOneModel>`__
- `NewUpdateManyModel() <{+api+}/mongo#NewUpdateManyModel>`__
- `NewDeleteOneModel() <{+api+}/mongo#NewDeleteOneModel>`__
- `NewDeleteManyModel() <{+api+}/mongo#NewDeleteManyModel>`__
To learn more about the methods or types used for client bulk writes,
see the following API documentation:
- `Client.BulkWrite() <{+api+}/mongo#Client.BulkWrite>`__
- `ClientBulkWriteOptions <{+api+}/mongo/options#ClientBulkWriteOptions>`__
- `ClientBulkWriteResult <{+api+}/mongo#ClientBulkWriteResult>`__
- `NewClientInsertOneModel() <{+api+}/mongo#NewClientInsertOneModel>`__
- `NewClientReplaceOneModel() <{+api+}/mongo#NewClientReplaceOneModel>`__
- `NewClientUpdateOneModel() <{+api+}/mongo#NewClientUpdateOneModel>`__
- `NewClientUpdateManyModel() <{+api+}/mongo#NewClientUpdateManyModel>`__
- `NewClientDeleteOneModel() <{+api+}/mongo#NewClientDeleteOneModel>`__
- `NewClientDeleteManyModel() <{+api+}/mongo#NewClientDeleteManyModel>`__