Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 1.36 KB

document-version.md

File metadata and controls

19 lines (14 loc) · 1.36 KB
title summary component versions related reviewed
How document versioning works
How the NServiceBus.Storage.MongoDB package implements concurrency control
mongodb
[2,)
persistence/mongodb
2024-10-30

MongoDB provides no out-of-the-box concurrency control. A common pattern for supporting concurrency is using a document version number (int) that is used as a filter for update statements:

snippet: MongoDBUpdateWithVersion

By updating the document with a filter specifying the expected current version of the document, no update will be made if another process has incremented the version before the current process is able to. This ensures only one process/thread can update the saga at a time.

This pattern requires an element in the BsonDocument to store the current version value. Instead of requiring the user to provide this as a property of their saga data type, this package uses the MongoDB client's BSON serializer to add a version element to the serialized saga data as it is initially created and stored in the collection. When the serialized BsonDocument is later fetched, the version element's current value is retrieved before deserializing it to the saga data type. The current value is then retained for the lifetime of the saga message processing and is used to create the update filter.

By default, the BsonDocument element is named _version.