System Design Interview Question
Anonymous User
253
Mar 03, 2026
Mar 03, 2026
We have:

Service Yconsumes a high volume of incoming events (no limit).

Service Xcan only handle limited throughput (e.g., 500 RPS or 60 RPM).

Requirements:

Events must be processed in First-Come-First-Serve (FCFS) order.

Must not exceed Xs threshold.

Later variation: events have priorities (high/medium/low or numeric).
Comments (1)