- Reference >
- Operators >
- Update Operators >
- Isolation Update Operator >
- $isolated
$isolated¶
On this page
Definition¶
-
$isolated¶ Prevents a write operation that affects multiple documents from yielding to other reads or writes once the first document is written. By using the
$isolatedoption, you can ensure that no client sees the changes until the operation completes or errors out.This behavior can significantly affect the concurrency of the system as the operation holds the write lock much longer than normal.
Behavior¶
The $isolated isolation operator does not provide
“all-or-nothing” atomicity for write operations.
$isolated does not work with sharded clusters.