Reputation: 3053
I would like to make serverless service. Service would be made like this.
API gateway -> lambda -> dynamoDB
( 24 hour * 30 days * 1 sec ) / 60 sec * DyanmoDB read hour price = real cost price?
Upvotes: 2
Views: 1344
Reputation: 46879
If you exceed your read or write capacity that you provisioned, you requested will/may be rejected and your application will need to have a provision to retry the read/write.
Dynamodb will sometimes absorb read/writes beyond what you have provisioned, so you might get away with it sometimes, but it's not guaranteed, so you still need to account for it in your design.
Upvotes: 3