From the course: AWS Certified Solutions Architect - Professional (SAP-C02) Cert Prep

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Performance scenario, part 2

Performance scenario, part 2

- Now that we've identified four possible solutions for our shopping cart data and we've looked through some of the properties of those individual offerings, now it's time to kind of compare them with each other to come up with an actual recommendation for which one we should actually use for shopping carts. We'll start with DynamoDB. And I want to start with what is the atomic unit of scaling that we use? With the DynamoDB table, the partition is going to be that atomic unit for performance and scaling, and then we can have as little as one read or write operation per table provisioned. And the higher that number goes, it's going to be based on the number of partitions we're actually using, which is the result of an equation that includes the amount of data in the table. So if we have two partitions or three partitions or 10 partitions, the read and write operations are divided evenly amongst each partition. That's why we need to have an even rate of reads and writes across all of…

Contents