I am using dynamoDB and I am getting read and write ProvisionedThroughputExceededException
How can I solve this ? Can using DAX ensure - that I do not get this error ?
I am using dynamoDB and I am getting read and write ProvisionedThroughputExceededException
How can I solve this ? Can using DAX ensure - that I do not get this error ?
DAX is a write-through cache, not write-back. Which means if a request is a cache miss, DAX makes the call to DynamoDB on your behalf to fetch the data. In this model, you are responsible for managing DynamoDB table capacity You may want to consider using AutoScale with DAX, but it depends on your access patterns.