惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium

Cerbos - All Posts

Authentik vs Keycloak: Self-hosted IdP comparison Mapping business requirements to authorization policy for automotive Fine-grained authorization for AI gateways EIC 2026: Stop counting agents, protect what they can touch Agent skill for writing authorization policies in Claude Desktop Identity security in 2026 EIC 2026 takeaways: the identity stack built for humans will not hold up for AI agents Already have authentication? Here's the authorization layer you still need. Tokens are authorization decisions: a guide to policy-driven token issuance What is a Runtime Authorization Platform It's a dimmer switch, not a kill switch. How CISOs are rethinking AI agent governance From maps to bitmaps (and from bitmaps to bitmaps) AuthZEN, Shared Signals, SCIM Events, IPSIE: Notes from the OpenID Enterprise Panel How do you update authorization policies without redeploying your application? IIW42 recap: Where agent authorization got real Cerbos PDP v0.52.0/v0.53.0: Engine performance, security hardening, and CEL path functions Authorization Management Platforms: what they do, how they work, and where they fit PocketOS AI coding agent deleted a production database in 9 seconds Non-Human Identity management still has a blind spot Supabase alternative in 2026: Best open source auth options Benefits of on-premise authorization: Why enterprises are moving toward self-hosted Authorization policies: How to write, test, and validate them (faster with AI) Agent skill for writing authorization policies How much does it cost to build authorization in-house? Why centralized authorization governance reduces incident response time OPA alternative Why AI agents make authorization a right now problem Modernizing legacy application authorization: why it’s your biggest security blind spot How to add authorization to legacy applications without code changes 5 authorization blind spots auditors find, and how to fix them
What is multi tenancy? | Definition & guide
Alex Olivier · 2023-12-13 · via Cerbos - All Posts

Multi-tenancy is a type of software architecture design that enables one instance of an application to serve multiple tenants (a tenant being a customer or organization with access to the software application). With multi-tenancy, each tenant operates separate from the others although they are using the same software and hardware resources. Cerbos provides a simple and effective way to implement access control policies for multi-tenancy systems.

Key characteristics of multi-tenancy

Isolation: With multi-tenancy the data, customizations and configurations of each tenant are isolated from those of other tenants. No tenant can access or view another tenant’s settings or data.

Scalability: Multi-tenancy systems are easy to scale because tenants can be added without having to increase the complexity of the underlying infrastructure to any significant degree. This scalability extends both vertically, in the sense of adding resources to a given server, and horizontally, in the sense of adding more servers to the system.

Customization: Most multi-tenancy systems offer a fair amount of customization for each tenant. This allows them to tailor the software to suit their needs without affecting the user experience of other tenants.

Efficiency: Multi-tenancy systems are highly efficient due to their ability to allow multiple tenants to share the same infrastructure. The end result is lower cost when compared to maintaining separate instances for each tenant.

Ease of management:With multi-tenancy management and maintenance are greatly simplified as system patches, updates and new features can be applied system wide, simultaneously benefitting all tenants.

Security: The isolated nature of each tenant means security measures are easy to implement, data leakage is virtually non-existent and unauthorized access is a non-issue.

The different levels of multi-tenancy

There are 3 levels of multi-tenancy. They are:

1) Separate application, separate database

Wherein each tenant has their own dedicated instance of the app and the database. This option provides the highest level of customization and security.

2) Shared application, separate database

Wherein tenants share the app but each tenant has their own dedicated database. This option offers a moderate level of customization and isolation.

3) Shared everything

Wherein tenants share both the app and database resources. This option is highly efficient but limits the amount of customization available.

Read more