Terminology Index

Glossary

1801 terms

Open concept maps

Showing 1185-1216 of 1801 terms

P
32

Pool Model Isolation

A multi-tenant cloud architecture pattern where many customers share the same infrastructure, isolation enforced by software (such as tenant identifiers and access controls) rather than by separate dedicated resources.

In multi-tenant SaaS, the pool model puts many tenants on shared infrastructure with isolation enforced through application logic, database scoping, and IAM, every request must be authenticated and routed to the correct tenant's data. It is efficient and scalable but security-sensitive: a flaw in isolation could leak one tenant's data to another, so design and testing focus heavily on robust tenant separation. It contrasts with the silo model (dedicated resources per tenant) in cloud security architecture trade-offs.

Introduced in: Cloud Security Architecture

Examples

  • Many tenants sharing one database with rows scoped by tenant ID.
  • Enforcing tenant separation through authenticated request routing.
  • Choosing the pool model for scale, accepting the isolation burden.

No related terms linked yet.