DEV Community

Pranav Bakare
Pranav Bakare

Posted on

Multi-tenancy in Context of ORACLE

Multi-tenancy is a software architecture where a single instance of a software application serves multiple customers, known as "tenants." Each tenant's data is isolated, ensuring privacy and security, but they share the same underlying infrastructure, resources, and application code. This concept is commonly used in cloud computing and databases to optimize resource usage and improve scalability.

In the context of databases, particularly Oracle's Multitenant Architecture (introduced in Oracle 12c), multi-tenancy allows a single container database (CDB) to host multiple pluggable databases (PDBs). Here's how it works:

Key Concepts of Multi-Tenancy in Oracle

  1. Container Database (CDB):

The CDB is the main database instance that contains the shared memory structures, background processes, and common system components.

It acts as the host for multiple pluggable databases.

  1. Pluggable Databases (PDBs):

PDBs are the tenant databases that operate independently within the CDB.

Each PDB has its own set of schemas, data, and objects, providing isolation similar to a standalone database.

  1. Resource Sharing and Isolation:

While all PDBs share the resources of the CDB (like CPU, memory, and storage), they remain logically isolated, meaning one PDB's operations do not affect others.

Administrators can manage, backup, and restore PDBs individually, providing flexibility and efficient resource utilization.

Benefits of Multi-Tenancy

  1. Efficient Resource Utilization:

Multiple PDBs can run on a single CDB, reducing the overhead of running separate database instances for each tenant.

Saves on hardware and maintenance costs by consolidating databases.

  1. Simplified Database Management:

Administrators can patch, upgrade, and manage the CDB, which applies to all PDBs, simplifying maintenance.

Easier to create, clone, or migrate PDBs, making it ideal for cloud-based applications.

  1. Scalability:

Adding a new PDB to the CDB is straightforward, allowing easy scaling to accommodate more tenants.

Organizations can deploy more applications and services without needing separate servers for each database.

  1. Improved Security and Isolation:

Each PDB is isolated from others, ensuring that the data and operations of one tenant do not interfere with others.

Permissions, users, and security policies can be defined independently for each PDB.

Example

Suppose a cloud service provider offers database services to multiple companies. Instead of setting up a separate database instance for each company (tenant), they can use a single CDB with multiple PDBs. Each company's data is isolated within its PDB, but they all share the same underlying infrastructure, leading to cost savings and easier management.

In summary, multi-tenancy allows efficient and scalable use of resources while ensuring data isolation and security, making it an essential architecture for cloud environments and large-scale database deployments.

Top comments (0)