Sponsor: Do you build complex software systems? See how NServiceBus makes it easier to design, build, and manage software systems that use message queues to achieve loose coupling. Get started for free.
I’ve started working on new side project using ASP.NET Core. I wanted to try a new datastore and decided to give Azure Cosmos DB a try. This project isn’t doing anything complicated but does contain enough real world use cases that can give me an idea of how the API works.Concurrency
The first thing I needed to implement was how to handle concurrency. Specifically optimistic concurrency.In an optimistic concurrency model, a violation is considered to have occurred if, after a user receives a value from the database, another user modifies the value before the first user has attempted to modify it.This is pretty typical when dealing with multi user environments like a web application. Specifically in my case is:
- Fetching out a document from Azure Cosmos DB
- Mutating the data of the document
- Sending the document back to to Azure Cosmos DB to be replaced
ETags
Each document within Azure Cosmos DB has an ETag Property.The ETag or entity tag is part of HTTP, the protocol for the World Wide Web. It is one of several mechanisms that HTTP provides for web cache validation, which allows a client to make conditional requests.You may be familiar with ETag’s related caching. A typical scenario is a user makes an HTTP request to the server for a specific resource. The server will return the response along with an ETag in the response header. The client then caches the response along with the associated ETag.
ETag: "686897696a7c876b7e"If they client then makes another request to the same resource, it will pass a If-Non-Match header with the ETag it received.
If-None-Match: "686897696a7c876b7e"If the resource has not changed and the ETag represents the current version, then the server will return a 304 Not modified status. If the resource has been modified, it will return the appropriate 2XX status code along with the content new ETag header.
AccessCondition
Azure Cosmos DB uses ETags for handling optimistic concurrency. When we retrieve a document from Azure Cosmos DB, it always contains an ETag property as apart of our document. When we then want to send our request to replace a document, we can specify anAccessCondition
with the ETag we received when we fetched out our document.
If the ETag we send is not current, the server will return a 412 Precondition Failed status code. In our .NET SDK, this is wrapped up in a DocumentClientException
.
Here is a full an example.
Thanks for this! It was very helpful. I ended up using it in my base repository like this: https://gist.github.com/couellet/3953c050aeb50deceec5f02aaedf4299
Nice! I’ve actually have done something very similar to your gist. Makes sense. Probably a few more DocumentDB blogs as I use it more.
I am attempting to use DocumentDb as the backing store behind an restful API. I need to support optimistic concurrency but am struggling with how to get the ETag back from the client on the POST given a Document’s ETag property is readonly. My current attempt is to have my controller bind to a custom class not inheriting from Document. It contains an ETag property. Is there some trick to get the ETag property set? I don’t see how the generic repo example would work otherwise.
I cannot seem to get this to work, every time I submit it, it says there is no ETag?
does not contain a definition for ‘ETag’
Can you provide actual exception? When you are using the DocumentClient.CreateDocumentQuery, you need to get back a Document and not your type. Meaning you should not be calling DocumentClient.CreateDocumentQuery. If you do that, you will get the document which is then converted to your Type. You can do this, but you then need to do add the ETag property to your type and use the [JsonProperty] attribute. Check out my Customer class as an example how I map the Id.
can we somehow handle the concurrency among multiple documents (transactions)?
I ended up creating a blog post to answer this question. Thanks!
https://codeopinion.com/documentdb-transactions-from-net/
You mentioned my name in post! that’s pretty cool 🙂 thanks.
Hi, is it possible in DocumentDB to delete document based on their Partition Key instead of Id.