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
I need to update multiple tables through dynamoid.
Is there any way to make such transaction atomic?
For example, for a particular operation, I'm updating tables t1, t2, t3.
If update in t1, t2 succeeds but if it fails for t3, it should revert the update in t1 and t2?
Any way to do this in dynamoid?
The text was updated successfully, but these errors were encountered:
No. You'd need to use another framework to do transactions or implement them yourself.
Transactions are also really inefficient in Dynamo, you probably don't want to use them unless you really need to.
I need to update multiple tables through dynamoid.
Is there any way to make such transaction atomic?
For example, for a particular operation, I'm updating tables t1, t2, t3.
If update in t1, t2 succeeds but if it fails for t3, it should revert the update in t1 and t2?
Any way to do this in dynamoid?
The text was updated successfully, but these errors were encountered: