-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathdb.collection.insertOne.txt
285 lines (200 loc) · 6.92 KB
/
db.collection.insertOne.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
=========================
db.collection.insertOne()
=========================
.. default-domain:: mongodb
.. meta::
:description: Insert a single document into a collection.
.. facet::
:name: programming_language
:values: shell
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
.. include:: /includes/wayfinding/mongosh-method-insertOne.rst
Definition
----------
.. method:: db.collection.insertOne()
.. |dbcommand| replace:: :dbcommand:`insert` command
Inserts a single document into a collection.
:returns:
A document containing:
- A boolean ``acknowledged`` as ``true`` if the operation ran with
:term:`write concern` or ``false`` if write concern was disabled.
- A field ``insertedId`` with the ``_id`` value of the
inserted document.
Compatibility
-------------
.. |operator-method| replace:: ``db.collection.insertOne()``
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-atlas-support-all.rst
.. include:: /includes/fact-environments-onprem-only.rst
Syntax
------
The :method:`~db.collection.insertOne()` method has the following
form:
.. code-block:: javascript
db.collection.insertOne(
<document>,
{
writeConcern: <document>
}
)
The :method:`~db.collection.insertOne()` method takes the following
parameters:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Parameter
- Type
- Description
* - ``document``
- document
- A document to insert into the collection.
* - ``writeConcern``
- document
- Optional. A document expressing the :doc:`write concern
</reference/write-concern>`. Omit to use the default write concern.
.. include:: /includes/extracts/transactions-operations-write-concern.rst
Behaviors
---------
Collection Creation
~~~~~~~~~~~~~~~~~~~
If the collection does not exist, then the
:method:`~db.collection.insertOne()` method creates the collection.
``_id`` Field
~~~~~~~~~~~~~
If the document does not specify an :term:`_id` field, then :binary:`~bin.mongod`
will add the ``_id`` field and assign a unique
:method:`ObjectId` for the document before inserting. Most
drivers create an ObjectId and insert the ``_id`` field, but the
:binary:`~bin.mongod` will create and populate the ``_id`` if the driver or
application does not.
If the document contains an ``_id`` field, the ``_id`` value must be
unique within the collection to avoid duplicate key error.
Explainability
~~~~~~~~~~~~~~
:method:`~db.collection.insertOne()` is not compatible with
:method:`db.collection.explain()`.
Error Handling
~~~~~~~~~~~~~~
On error, :method:`db.collection.insertOne()` throws either a ``writeError``
or ``writeConcernError`` exception.
Schema Validation Errors
````````````````````````
If your collection uses :ref:`schema validation
<schema-validation-overview>` and has ``validationAction`` set to
``error``, inserting an invalid document throws a ``MongoServerError``
and ``db.collection.insertOne()`` fails.
Transactions
~~~~~~~~~~~~
.. include:: /includes/extracts/transactions-supported-operation.rst
.. include:: /includes/extracts/transactions-usage.rst
Collection Creation in Transactions
````````````````````````````````````
.. include:: /includes/extracts/transactions-insert-implicit-collection-creation.rst
Write Concerns and Transactions
````````````````````````````````
.. include:: /includes/extracts/transactions-operations-write-concern.rst
.. |operation| replace:: :method:`db.collection.insertOne()`
Oplog Entries
~~~~~~~~~~~~~
If a ``db.collection.insertOne()`` operation successfully inserts a
document, the operation adds an entry on the :term:`oplog` (operations
log). If the operation fails, the operation does not add an entry on the
oplog.
.. _insertOne-examples:
Examples
--------
Insert a Document without Specifying an ``_id`` Field
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In the following example, the document passed to the
:method:`~db.collection.insertOne()` method does not contain the ``_id``
field:
.. code-block:: javascript
try {
db.products.insertOne( { item: "card", qty: 15 } );
} catch (e) {
print (e);
};
The operation returns the following document:
.. code-block:: javascript
{
"acknowledged" : true,
"insertedId" : ObjectId("56fc40f9d735c28df206d078")
}
Because the documents did not include ``_id``,
:binary:`~bin.mongod` creates and adds the ``_id`` field and
assigns it a unique :method:`ObjectId` value.
.. include:: /includes/fact-object-id-may-differ.rst
Insert a Document Specifying an ``_id`` Field
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In the following example, the document passed to the
:method:`~db.collection.insertOne()` method includes the ``_id`` field.
The value of ``_id`` must be unique within the collection to avoid
duplicate key error.
.. code-block:: javascript
try {
db.products.insertOne( { _id: 10, item: "box", qty: 20 } );
} catch (e) {
print (e);
}
The operation returns the following:
.. code-block:: javascript
{ "acknowledged" : true, "insertedId" : 10 }
Inserting an duplicate value for any key that is part of a :term:`unique
index`, such as ``_id``, throws an exception. The following attempts to insert
a document with a ``_id`` value that already exists:
.. code-block:: javascript
try {
db.products.insertOne( { _id: 10, "item" : "packing peanuts", "qty" : 200 } );
} catch (e) {
print (e);
}
Since ``_id: 10`` already exists, the following exception is thrown:
.. code-block:: javascript
WriteError({
"index" : 0,
"code" : 11000,
"errmsg" : "E11000 duplicate key error collection: inventory.products index: _id_ dup key: { : 10.0 }",
"op" : {
"_id" : 10,
"item" : "packing peanuts",
"qty" : 200
}
})
.. _insertOne-override-write-concern:
Increase Write Concern
~~~~~~~~~~~~~~~~~~~~~~
Given a three member replica set, the following operation specifies a
``w`` of ``majority``, ``wtimeout`` of ``100``:
.. code-block:: javascript
try {
db.products.insertOne(
{ "item": "envelopes", "qty": 100, type: "Self-Sealing" },
{ writeConcern: { w : "majority", wtimeout : 100 } }
);
} catch (e) {
print (e);
}
If the acknowledgment takes longer than the ``wtimeout`` limit, the following
exception is thrown:
.. code-block:: javascript
WriteConcernError({
"code" : 64,
"errmsg" : "waiting for replication timed out",
"errInfo" : {
"wtimeout" : true,
"writeConcern" : {
"w" : "majority",
"wtimeout" : 100,
"provenance" : "getLastErrorDefaults"
}
}
})
.. seealso::
- To insert multiple documents, see
:method:`db.collection.insertMany()`
- :data:`WriteResult.writeConcernError`