Kimi K3 Overloaded Its Cluster in 48 Hours-Build This Capacity Admission Test Moonshot AI suspended new consumer subscriptions for Kimi K3 within 48 hours of its July 16 launch after user requests exceeded cluster capacity. A developer analyzing the incident recommends a five-step capacity admission test, including labeling guesses and setting alarms before degradation, to prevent similar failures in AI services. Kimi K3 launched on July 16. By July 19, Moonshot AI suspended all new consumer subscriptions because user requests exceeded cluster capacity within 48 hours. This is not a Kimi problem. It is a capacity-planning lesson for anyone operating an AI-backed service. The service did not crash. It degraded gracefully by stopping new users while preserving existing ones. That is a reasonable operational decision. But the capacity gap between forecast and reality was large enough to force it. Before you expose an AI service to real users, run this five-step gate: service: your-ai-service expected peak qps: 50 p95 latency budget ms: 3000 gpu memory per request gb: 8 max concurrent requests: 16 expected daily requests: 50000 If any of these values is a guess, label it as a guess and set the capacity to 2x the guess. Set an alarm for when the request queue exceeds a threshold that means you are one spike away from degraded service. Not when you are already degraded-when you are approaching it. queue depth alarm: warning: 100 critical: 250 action: stop accepting new sessions Before queue depth reaches critical, implement a circuit breaker that stops accepting new sessions while letting existing ones complete. This is exactly what Kimi did-not a bug fix, a planned response. Measure how long it takes to add capacity. If adding a GPU node takes 15 minutes, your burst tolerance is 15 minutes. Any spike that lasts longer will degrade service. After launch, compare forecasted demand to actual demand every hour for the first 48 hours. If actual exceeds forecast by 2x or more, your forecasting model needs revision-not just more capacity. I have not operated K3's infrastructure. This analysis is based on publicly reported events and standard capacity-planning practices. The admission gate is a protocol I would apply before launching any AI service with unpredictable demand, not a postmortem of Kimi's actual decisions. Disclosure: I'm a MonkeyCode user sharing my own experience, not affiliated with the project. MonkeyCode is an open-source AI coding platform: https://github.com/chaitin/MonkeyCode https://github.com/chaitin/MonkeyCode