taoensso / faraday

Amazon DynamoDB client for Clojure
https://www.taoensso.com/faraday
Eclipse Public License 1.0
238 stars 84 forks source link

Upgrade to 1.11.459 of aws-sdk-java for management of On Demand tables #124

Closed si-robinson closed 4 years ago

si-robinson commented 5 years ago

AWS announced on-demand table throughputs here: https://aws.amazon.com/about-aws/whats-new/2018/11/announcing-amazon-dynamodb-on-demand/

Support for this was added in 1.11.459 of aws sdk.

I created a table with throughputs of read 5 and write 5 and then changed the table to on-demand using the console. On running describe-table against this table, it now shows: :throughput {:read 0, :write 0, :last-decrease nil, :last-increase nil, :num-decreases-today 0} where I believe the expected would be: :billing-mode PAY_PER_REQUEST And also usable when using create-table