derjust / spring-data-dynamodb

This module deals with enhanced support for a data access layer built on AWS DynamoDB.
https://derjust.github.io/spring-data-dynamodb/
Apache License 2.0
403 stars 141 forks source link

Figure out strategy to use DynamoDBMapper Transactions in a Spring way #250

Open boostchicken opened 5 years ago

boostchicken commented 5 years ago

https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBMapper.Transactions.html

Support has been added, I went ahead and did a couple test builds but they don't work like traditional transactions. I basically just added code to the DynamoOperations interface and used it.

You may notice that each type of Write has different options, you can work across multiple Objects with a single Transaction, all good stuff, however you need to have already loaded an object.

Writing a transaction manager for this would be..... difficult to say the least and would require a lot of thought.

Just opening here for discussion.

garbit commented 1 year ago

Any updates on this?