Scaling - Dynamic DB Flashcards
How is DDB scaling measured?
Through throughput and a max item size of 400Kb of read/write units
What is max traffic per partition?
3K RCUs or 1K WCU
How does the partition key affect workload distribution?
The partition key port of the table’s primary key determines the logical location of data storage; input to an internal hash, output from the hash determines where the item will be stored
What are features of auto scaling for DDB?
uses target tracking for target utilization; currently does not scale down well;
What is on-demand DDB Scaling?
more expensive alternative to auto scaling, useful for unanticipated loads, instances allocated as needed,
What is DDB Accelerator?
DAX is a HA, fully-managed, in-memory cache that sits in front of you DDB table
What are the use cases for DAX?
require fastest reads, read intensive scenarios, repeated reads against DDB, bad for write intensive apps and apps that use client caching
What is a scaling policy?
specifies read/write capacity min/max of a table or global secondary index that will be triggered