DAX behavior when Burstable instances go out of credits

0

Hello, I'd like to know what happens when cpu credits are out of balance for DAX? Will DAX bypass requests? Mostly I'd like to ensure that without cpu credits in DAX there won't be any soft of downtimes and situation wouldn't become worse comparing to normal dynamodb usage

OK
asked 7 months ago129 views
2 Answers
1

If DAX is out of credit, it will return exceptions, it will not pass the request to DynamoDB for you. If you like, you can handle those exceptions and write/read around DAX, but then your cache becomes out of sync.

Its not recommended to use burstable instances for DAX for anything other than testing.

profile pictureAWS
EXPERT
answered 7 months ago
  • Thank you! In terms of normal instances , what would be the impact if I choose minimal ec2 instance type e.g. dax.r5.large but in fact more powerful instance type will be required?

  • Having an instance smaller than you need would most likely result in a low cache/hit ratio as you'd evict data due to it not being able to fit in memory. It could also cause throttling on connections if you create a lot of those also.

0

Thank you, @Leeroy Hannigan. Are there specific best practices for selecting the appropriate DAX cluster instances? Additionally, what preventive measures can we adopt to fully harness the potential of DAX?

OK
answered 7 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions