I have a dynamodb table called events
table schema is
partition_key : <user_id>
sort_key : <month>
attributes: [<list of user events>]
I opened 3 terminals and running update_item
command at the sametime for same partition_key
and sort_key
Question:
How DynamoDb works in this case?
Will Dynamodb follows any approach like FIFO
?
OR
will Dynamodb performs update_item
operation parlalley
for the same partition key
and sort key
?
Can someone tell me how Dyanmodb works?