aws

2022-10-05T14:29:28.324059Z

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).

Drew Verlee 2022-10-05T18:44:46.356369Z

Which library do you use to talk to aws? 1️⃣ Amazonica 2️⃣ aws-api 3️⃣ both 4️⃣ other?

4️⃣ 5
1️⃣ 3
3️⃣ 3
2️⃣ 18
souenzzo 2022-10-05T19:52:48.614219Z

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)

👍 4
Drew Verlee 2022-10-05T20:26:28.473289Z

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.

lukasz 2022-10-05T21:01:51.912869Z

Java SDK + aws-api in my case

👍 1
Dimitar Uzunov 2022-10-06T07:07:00.955489Z

No option for interop so I checked 2 and 4

Dimitar Uzunov 2022-10-06T07:07:41.111679Z

But tbh I would take the cognitect lib over interop any time

👍 1