Fix optimistic concurrency issue with read model projections #1558
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The provider libraries have two methods for read model retrieval:
fetch
andsearch
. In the implementation for the Azure provider, only the former was adding anoptimisticConcurrencyValue
property to theboosterMetadata
. This value stores the Cosmos DB_etag
property for the document and is used to handle optimistic concurrency scenarios.Read model projection issues related to optimistic concurrency have been found due to the
search
method being used instead offetch
. Some read models weren't properly projected when a simultaneous update occurred because the optimistic concurrency verification wasn't happening due to theoptimisticConcurrencyValue
property not being in theboosterMetadata
.This PR fixes this by including this property in the
search
method implementation results.Changes
search
method so that it writes the_etag
as theoptimisticConcurrencyValue
in theboosterMetadata
.Checks