- Reference >
mongo
Shell Methods >- Collection Methods >
- db.collection.replaceOne()
db.collection.replaceOne()¶
On this page
Definition¶
-
db.collection.
replaceOne
(filter, replacement, options)¶ mongo
Shell MethodThis page documents the
mongo
shell method, and does not refer to the MongoDB Node.js driver (or any other driver) method. For corresponding MongoDB driver API, refer to your specific MongoDB driver documentation instead.New in version 3.2.
Replaces a single document within the collection based on the filter.
The
replaceOne()
method has the following form:The
replaceOne()
method takes the following parameters:Parameter Type Description filter document The selection criteria for the update. The same query selectors as in the
find()
method are available.Specify an empty document
{ }
to replace the first document returned in the collection.replacement
document The replacement document.
Cannot contain update operators.
upsert
boolean Optional. When
true
,replaceOne()
either:- Inserts the document from the
replacement
parameter if no document matches thefilter
. - Replaces the document that matches the
filter
with thereplacement
document.
MongoDB will add the
_id
field to the replacement document if it is not specified in either thefilter
orreplacement
documents. If_id
is present in both, the values must be equal.To avoid multiple upserts, ensure that the
query
fields are uniquely indexed.Defaults to
false
.writeConcern
document Optional. A document expressing the write concern. Omit to use the default write concern.
Do not explicitly set the write concern for the operation if run in a transaction. To use write concern with transactions, see Transactions and Write Concern.
collation
document Optional.
Specifies the collation to use for the operation.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
The collation option has the following syntax:
When specifying collation, the
locale
field is mandatory; all other collation fields are optional. For descriptions of the fields, see Collation Document.If the collation is unspecified but the collection has a default collation (see
db.createCollection()
), the operation uses the collation specified for the collection.If no collation is specified for the collection or for the operations, MongoDB uses the simple binary comparison used in prior versions for string comparisons.
You cannot specify multiple collations for an operation. For example, you cannot specify different collations per field, or if performing a find with a sort, you cannot use one collation for the find and another for the sort.
New in version 3.4.
hint document Optional. A document or string that specifies the index to use to support the filter.
The option can take an index specification document or the index name string.
If you specify an index that does not exist, the operation errors.
For an example, see Specify hint for replaceOne.
New in version 4.2.1.
Returns: A document containing: - A boolean
acknowledged
astrue
if the operation ran with write concern orfalse
if write concern was disabled matchedCount
containing the number of matched documentsmodifiedCount
containing the number of modified documentsupsertedId
containing the_id
for the upserted document
- Inserts the document from the
Behavior¶
replaceOne()
replaces the first matching document in
the collection that matches the filter
, using the replacement
document.
upsert
¶
If upsert: true
and no documents match the filter
,
db.collection.replaceOne()
creates a new document based on
the replacement
document.
If you specify upsert: true
on a sharded collection, you must
include the full shard key in the filter
. For additional
db.collection.replaceOne()
behavior on a sharded collection,
see Sharded Collections.
See Replace with Upsert.
Capped Collections¶
If a replacement operation changes the document size, the operation will fail.
Sharded Collections¶
Starting in MongoDB 4.2, db.collection.replaceOne()
attempts
to target a single shard, first by using the query filter. If the
operation cannot target a single shard by the query filter, it then
attempts to target by the replacement document.
In earlier versions, the operation attempts to target using the replacement document.
Shard Key Requirements In Replacement Document¶
Starting in MongoDB 4.4, the replacement document does not need to include the shard key. In MongoDB 4.2 and earlier, the replacement document must include the shard key.
Warning
Starting in version 4.4, documents in sharded collections can be missing the shard key fields. Take precaution to avoid accidentally removing the shard key when changing a document’s shard key value.
upsert
on a Sharded Collection¶
Starting in MongoDB 4.2, a db.collection.replaceOne()
operation that includes upsert: true
on a sharded collection must
include the full shard key in the filter
.
However, starting in version 4.4, documents in a sharded collection can be
missing the shard key fields. To target a
document that is missing the shard key, you can use the null
equality match in conjunction with another filter condition
(such as on the _id
field). For example:
Shard Key Modification¶
Starting in MongoDB 4.2, you can update a document’s shard key value
unless the shard key field is the immutable _id
field. Before
MongoDB 4.2, a document’s shard key field value is immutable.
Warning
Starting in version 4.4, documents in sharded collections can be missing the shard key fields. Take precaution to avoid accidentally removing the shard key when changing a document’s shard key value.
To modify the existing shard key value with
db.collection.replaceOne()
:
- You must run on a
mongos
. Do not issue the operation directly on the shard. - You must run either in a transaction or as a retryable write.
- You must include an equality filter on the full shard key.
Missing Shard Key¶
Starting in version 4.4, documents in a sharded collection can be
missing the shard key fields. To use
db.collection.replaceOne()
to set the document’s
missing shard key, you must run on a
mongos
. Do not issue the operation directly on
the shard.
In addition, the following requirements also apply:
Requirements | |
---|---|
To set to null |
|
To set to a non-null value |
|
Tip
Since a missing key value is returned as part of a null equality
match, to avoid updating a null-valued key, include additional
query conditions (such as on the _id
field) as appropriate.
See also:
Transactions¶
db.collection.replaceOne()
can be used inside multi-document transactions.
Important
In most cases, multi-document transaction incurs a greater performance cost over single document writes, and the availability of multi-document transactions should not be a replacement for effective schema design. For many scenarios, the denormalized data model (embedded documents and arrays) will continue to be optimal for your data and use cases. That is, for many scenarios, modeling your data appropriately will minimize the need for multi-document transactions.
For additional transactions usage considerations (such as runtime limit and oplog size limit), see also Production Considerations.
Upsert within Transactions¶
Starting in MongoDB 4.4 with feature compatibility version
(fcv) "4.4"
, you can create collections and indexes
inside a multi-document transaction if the transaction is
not a cross-shard write transaction.
As such, for the feature compatibility version (fcv) is "4.4"
or greater, db.collection.replaceOne()
with upsert:
true
can be run against an existing collection or a non-existing
collection. If run against a non-existing collection, the operation
creates the collection.
If the feature compatibility version (fcv) is
"4.2"
or less, the operation must be against an existing
collection.
Write Concerns and Transactions¶
Do not explicitly set the write concern for the operation if run in a transaction. To use write concern with transactions, see Transactions and Write Concern.
Examples¶
Replace¶
The restaurant
collection contains the following documents:
The following operation replaces a single document where
name: "Central Perk Cafe"
:
The operation returns:
If no matches were found, the operation instead returns:
Setting upsert: true
would insert the document if no match was found. See
Replace with Upsert
Replace with Upsert¶
The restaurant
collection contains the following documents:
The following operation attempts to replace the document with
name : "Pizza Rat's Pizzaria"
, with upsert : true
:
Since upsert : true
the document is inserted based on the
replacement
document. The operation returns:
The collection now contains the following documents:
Replace with Write Concern¶
Given a three member replica set, the following operation specifies a
w
of majority
and wtimeout
of 100
:
If the acknowledgement takes longer than the wtimeout
limit, the following
exception is thrown:
Changed in version 4.4.
The following table explains the possible values of
errInfo.writeConcern.provenance
:
Provenance | Description |
---|---|
clientSupplied |
The write concern was specified in the application. |
customDefault |
The write concern originated from a custom defined
default value. See setDefaultRWConcern . |
getLastErrorDefaults |
The write concern originated from the replica set’s
settings.getLastErrorDefaults field. |
implicitDefault |
The write concern originated from the server in absence of all other write concern specifications. |
Specify Collation¶
New in version 3.4.
Collation allows users to specify language-specific rules for string comparison, such as rules for lettercase and accent marks.
A collection myColl
has the following documents:
The following operation includes the collation option:
Specify hint
for replaceOne
¶
New in version 4.2.1.
Create a sample members
collection with the following documents:
Create the following indexes on the collection:
The following update operation explicitly hints to use the index {
status: 1 }
:
Note
If you specify an index that does not exist, the operation errors.
The operation returns the following:
To view the indexes used, you can use the $indexStats
pipeline: