Design Bidding Platform
1. Requirements
- A user can bid on an item.
- Fix-time bidding & Variable-time bidding.
- Real-time price update.
- Support 100+ QPS for each item.
2. Data Model
Bid表
bidID, auctionID, userID, price, serverside_timestamp, status.
status could be Accepted/Rejected.
Put this into a time-series database by autionID, because eventually we need all bids per auction for auditing purposes.
AuctionState表
autionID, currentWinningBidID, price, end_auction_timestamp.
This is only 32 bytes, thus entire storage is < 32GB, can use in-memory DB.
3. Bidding Core
- This system is similar to the Robinhood (Stock Exchange) Design.
- Need a single point of “choke-point”. A multi-leader or leaderless model won’t work here.
Option 1: bid with Kafka
Use Kafka as log-based message broker.
Order by log.
Kafka uses Kernel bypass to achieve high write throughput.
Downside: use will be notified about bidding result, async. Thus using Kafka is not a great solution.
Option 2: synchronized-bid
Bid Engine: single choke point.
It must handle high throughput.
State-machine replication, similar to the exchange.
Solution:
- In-memory.
- No disk read or network calls.
- For each request, lock the auction state, compare bids, and proceed.
- We can partition Bid Engine by auctionID using consistant hashing.
- But make sure all bids for 1 auction always on the same machine.
How to achieve fault tolerance?
Need a backup, that only listens to master.
Each bid has a seq number.
4. Message delivery
Multiple clients want to know the bidding results, namely:
- Backup bidding engine
- Audit database
- Other users
Let’s put in Kafka so multiple consumers can subscribe!
Remember your Kafka is the source of truth, with certain replication configurations.
Note:
- Publish to Kafka first, then notify user.
- However, it’s possible that bid is lost if Kafka goes down, so maybe publish to 2 brokers instead of 1.
How to keep Bid Engine thoughput high?
Remember now we have additional network call to Kafka, and we need sychronous return to cleint about the bid result.
Here’s the psueducode.
But to solve the problem of Kafka race condition:
这一段没太看懂!
5. Bid consumers
6. Popular auctions
Many people watching the top Kafka queue. like this:
7. Auction ending
- As bid come in, update the finish time.
- Bid engine occasionally check the auction time.