+ All Categories
Home > Documents > racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all...

racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all...

Date post: 30-Sep-2020
Category:
Upload: others
View: 3 times
Download: 0 times
Share this document with a friend
12
RACifying Multitenant Arup Nanda Principal Database Architect Starwood Hotels Deba Chatterjee Principal Product Manager Oracle Multitenant Agenda Introduction Oracle Multitenant and RAC Basics Why use database Services Q & A 1 2 3 4 RAC'fying Multitenant 2
Transcript
Page 1: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

RACifying MultitenantArup Nanda

Principal Database ArchitectStarwood HotelsDeba Chatterjee

Principal Product ManagerOracle Multitenant

Agenda

Introduction

Oracle Multitenant and RAC Basics

Why use database Services

Q & A

1

2

3

4

RAC'fying Multitenant2

Page 2: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Oracle Multitenant and Oracle RAC

Oracle Multitenant & Oracle RAC

• Scalability• Flexibility• Reduced Costs

Oracle RAC: Scalable, Reliable

Oracle Multitenant• Consolidation means

“putting all your eggs in one basket”

• Consolidating many databases into one demands scalable platform

Oracle RAC• Means managing many

nodes in the cluster as one system

• Provides resiliency against individual server failures

• Allows for horizontal scaling

Multitenant: Simplify Consolidation

RAC'fying Multitenant3

Agenda

Introduction

Oracle Multitenant and RAC Basics

Why use database Services

Q & A

1

2

3

4

RAC'fying Multitenant4

Page 3: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Vexing Problem of Consolidation

RAC'fying Multitenant5

User SIEBEL

QA1

User SIEBEL

QA2

User SIEBEL

QA3

User SIEBEL

QA3QA2QA1

Enter: Pluggable Database

RAC'fying Multitenant6

SGA

Virtual DB Virtual DB

Container Database

Pluggable Database

(Containers)

Page 4: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

RAC'fying Multitenant7

SELECT 1 AS CON_ID, NAMEFROM USER$@cdb

DBA_USERS

SELECT 2 AS CON_ID, NAMEFROM USER$@pdb1

PDB1CON_ID=2

PDB2CON_ID=3

PDB3CON_ID=4

SELECT 3 AS CON_ID, NAMEFROM USER$@pdb2

RAC'fying Multitenant8

Page 5: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Why Multitenant

RAC'fying Multitenant9

CDB1

QA1

QA2

QA3

CDB2

QA4

Cloning on same hostCloning on a different hostUnplug and Plug

QA2

Upgrade/backup/ as a whole Granular control when needed

upgrade

backup

Oracle RAC

RAC'fying Multitenant10

Instance MYDB1Buffer cache

Sharedpool

Instance MYDB2Buffer cache

Sharedpool

clusterware

DBWR DBWR

Page 6: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

RAC + Multitenant

RAC'fying Multitenant11

Instance MYDB1Buffer cache

Sharedpool

Instance MYDB2Buffer cache

Sharedpool

clusterware

DBWR DBWR

QA1 QA2

Individualized Instances of PDBsselect name, inst_id, open_modefrom gv$pdbs;

NAME IN OPEN_MODE-------- -- ----------PDB$SEED 1 READ ONLYPDB$SEED 4 READ ONLYPLUG1 1 READ WRITEPLUG1 4 MOUNTEDPLUG2 1 READ WRITEPLUG2 4 MOUNTEDSARPRD 1 READ WRITESARPRD 4 READ WRITE

PDBs can be opened on selected instances

Note: PLUG1 is opened on one instance and just mounted on the other.

RAC'fying Multitenant12

Page 7: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Save State• Set PDB SAVE STATE (12.1.0.2)

– Service pulls up the PDB by default– Open mode must be consistent across the cluster

RAC'fying Multitenant13

Agenda

Introduction

Oracle Multitenant and RAC Basics

Why use database Services

Q & A

1

2

3

4

RAC'fying Multitenant14

Page 8: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Services in RAC

RAC'fying Multitenant15

Instance 1Listener 1

Instance 2listener2

sqlplus <user>/<pwd>@SCAN/serv1 GV$SERVICEMETRICService based Resource Manager

Instance 1

Buffer cache

Sharedpool

Instance 2

Buffer cache

Sharedpool

clusterware

DBWR DBWR

QA1 QA2

Services in Multitenant• Default service of

CDB is started

• Default service for each PDB is started

RAC'fying Multitenant16

QA1 QA2 QA1 QA2

sqlplus <user>/<pwd>@SCAN/QA1

Page 9: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Do not Use Default Service• PDBs provide location independence

(plug/unplug/clone) but exist within a CDB• Moving PDBs between CDB

may need changing names of PDBs• Use a unique service for an app• If the PDB moves to another location the app does not

need to change• This requires uniqueness of service names

RAC'fying Multitenant17

Converting to RACThe simplest way of converting a SI PDB to RAC: unplug/plug

Node2

CDB Instance 2

Node1

CDB Instance 1

CDB

RAC'fying Multitenant18

Page 10: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Changing WorkloadsServices

Single SGA perCDB Instance

Node1

CDB Instance 1

Node2

CDB Instance 2

Multitenant Container Database (CDB)

RAC'fying Multitenant19

Changing WorkloadsServices

Single SGA perCDB Instance

Node1

CDB Instance 1

Node2

CDB Instance 2

Node3

CDB Instance 3CDB Instance 3

Multitenant Container Database (CDB)

RAC'fying Multitenant20

Page 11: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Node1

CDB Instance 1

Node2

CDB Instance 2

Multitenant Container Database (CDB)

Node1

CDB Instance 1

Node2

CDB Instance 2

Multitenant Container Database (CDB)

PDB Relocation

21

• PDB Relocate–migrate some tenants off an overloaded

node–migrate all tenants off a node that needs to

be taken down for maintenance• without downtime for migrated tenants• minimal impact on QoS of migrated (and other) tenants

Load BalancingPlanned M

aintenance

SQL> alter pluggable database pdb1 close immediate relocate to 'cdb2';

RAC'fying Multitenant

Takeaways• During 12c upgrade, create a CDB, even if with just one container• If you are migrating from another database, simply unplug and

plug into the multitenant RAC database• Later, as you consolidate, just create several containers instead of

separate databases• Create unique service names for all applications, even if they will

share the same CDB, e.g. SALESPRD1 and SALESDEV1• Make sure you understand the differences between CDB and PDB

in V$ views

RAC'fying Multitenant22

Page 12: racifying multitenant - Proligence · Oracle Multitenant • Consolidation means “putting all your eggs in one basket” • Consolidating many databases into one demands scalable

Agenda

Introduction

Oracle Multitenant and RAC Basics

Why use database Services

Q & A

1

2

3

4

RAC'fying Multitenant23

Thank You!Blog: arup.blogspot.comTweeter: @ArupNandaFacebook.com/ArupKNanda

24RAC'fying Multitenant


Recommended