Anyone happen to know if the latest version of https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.DownloadingAndRunning.html supports the recent https://aws.amazon.com/about-aws/whats-new/2022/09/amazon-dynamodb-supports-100-actions-per-transaction? I'm using the latest version of the dynamodb local, which was release after that announcement, but am getting
{:__type "com.amazon.coral.validate#ValidationException",
:Message "Member must have length less than or equal to 25",
:cognitect.anomalies/category :cognitect.anomalies/incorrect}
When transact-writing more than the old limit of 25.
I'm using aws-api with the latest versions and dynamodb release (which also happens after the new transaction increase announcement).Which library do you use to talk to aws? 1️⃣ Amazonica 2️⃣ aws-api 3️⃣ both 4️⃣ other?
My workflow is Start with aws-api, it is easy and idiomatic. In case of performance issue, or some missing operation, switch to java SDK(only for this operation)
thanks @souenzzo i have just been using the aws-api, so i was curious about amazonica and why people what people were using it for.
Java SDK + aws-api in my case
No option for interop so I checked 2 and 4
But tbh I would take the cognitect lib over interop any time