-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathBulk.insert.txt
86 lines (55 loc) · 1.92 KB
/
Bulk.insert.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
=============
Bulk.insert()
=============
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
.. include:: /includes/fact-bulkwrite.rst
Description
-----------
.. method:: Bulk.insert(<document>)
Adds an insert operation to a bulk operations list.
:method:`Bulk.insert()` accepts the following parameter:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``doc``
- document
- Document to insert. The size of the document must be less than or
equal to the :limit:`maximum BSON document size <BSON Document Size>`.
Compatibility
-------------
This command is available in deployments hosted in the following
environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-atlas-support-all.rst
Behavior
--------
Insert Inaccuracies
~~~~~~~~~~~~~~~~~~~
.. include:: /includes/fact-insert-inaccuracies.rst
.. |writeResult| replace:: :data:`BulkWriteResult.insertedCount`
Performance Consideration for Random Data
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. include:: /includes/indexes/random-data-performance.rst
Example
-------
The following initializes a :method:`Bulk()` operations builder for the
``items`` collection and adds a series of insert operations to add
multiple documents:
.. code-block:: javascript
var bulk = db.items.initializeUnorderedBulkOp();
bulk.insert( { item: "abc123", defaultQty: 100, status: "A", points: 100 } );
bulk.insert( { item: "ijk123", defaultQty: 200, status: "A", points: 200 } );
bulk.insert( { item: "mop123", defaultQty: 0, status: "P", points: 0 } );
bulk.execute();
.. seealso::
- :method:`db.collection.initializeUnorderedBulkOp()`
- :method:`db.collection.initializeOrderedBulkOp()`
- :method:`Bulk.execute()`