System Design 2024 - Amazon
Design Amazon
1. Requirements
- 350 million products
- 10 million orders per day, that’s 100 orders per second
- 1 MB of data per product, that is 1 PB needed to partition the product table.
Features
- retail
- concurrent edit of cart
- inventory mgmt (out of stock monitor)
2. ProductDB
- partition as much as possible
- only 1 person write at 1 time
- NoSQL, eg. MongoDB.