You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation allows multiple transactions to start inserting duplicated data, but only one of them can succeed due to a unique index on ExecutionPlan._key. Although this solution is sufficient, we could probably do even better by resolving the duplication at the moment of transaction start.
The text was updated successfully, but these errors were encountered:
It's fully covered by #1155 after introducing a lock mechanism based on secondary transaction ID (SID) that represents that business key of the entity being inserted. So no further action needed to implement the ticket.
Current implementation allows multiple transactions to start inserting duplicated data, but only one of them can succeed due to a unique index on
ExecutionPlan._key
. Although this solution is sufficient, we could probably do even better by resolving the duplication at the moment of transaction start.The text was updated successfully, but these errors were encountered: