Deploy Oracle Globally Distributed Database using Oracle Restart in Podman Containers with System-Managed Sharding
This page covers the steps to manually deploy a sample Oracle Globally Distributed Database with System-Managed Sharding using Podman Containers. This deployment uses Extended Oracle RAC Database Container Image to deploy the Database Containers.
- Setup Details
- Prerequisites
- Deploying Catalog Container
- Deploying Shard Containers
- Deploying GSM Container
- Deploying Standby GSM Container
- Scale-out an existing Oracle Globally Distributed Database
- Scale-in an existing Oracle Globally Distributed Database
- Confirm the shard to be deleted is present in the list of shards in the Oracle Globally Distributed Database
- Move the chunks out of the shard database which you want to delete
- Delete the shard database from the Oracle Globally Distributed Database
- Confirm the shard has been successfully deleted from the Oracle Globally Distributed Database
- Remove the Podman Container
- Environment Variables Explained
- Support
- License
- Copyright
This setup initially involves deploying podman containers for:
- Catalog Database
- Two Shard Databases
- Primary GSM
- Standby GSM
NOTE: You can use Oracle 19c or Oracle 21c RDBMS and GSM Podman Images for this sample deployment.
NOTE: In the current Sample Oracle Globally Distributed Database Deployment, we have used Oralce 21c RDBMS and GSM Podman Images.
Before using this page to create a sample Oracle Globally Distributed Database, please complete the prerequisite steps mentioned in Oracle Globally Distributed Database using Oracle Restart in Podman Containers
Before creating the GSM container, you need to build the catalog and shard containers. Execute the following steps to create containers for the deployment:
The shard catalog is a special-purpose Oracle Database that is a persistent store for SDB configuration data and plays a key role in the automated deployment and centralized management of an Oracle Globally Distributed Database. It also hosts the gold schema of the application and the master copies of common reference data (duplicated tables). In this case, the Catalog Database will be deployed using Oracle Restart and will be using ASM Storage.
Ensure that you have created at least one Block Device with at least 50 Gb of storage space that can be accessed by the Catalog Container. You can create more block devices in accordance with your requirements and pass those environment variables and devices to the podman create command.
Ensure that the ASM devices do not have any existing file system. To clear any other file system from the devices, use the following command:
dd if=/dev/zero of=/dev/disk/by-partlabel/catalog_asm_disk bs=8k count=10000
Repeat this command on each shared block device.
Before creating catalog container, review the following notes carefully:
Notes:
-
Change environment variable such as DB_NAME, ORACLE_PDB_NAME based on your env.
-
Use the parameter
OP_TYPE="setuprac,catalog"
,CRS_GPC="true"
to use the Oracle Restart option to setup the Catalog for Sharded Database deployment. -
If you are using Extended Oracle RAC Database
SLIM
Image instead of the full image, then use the below additional parameters during the container creation:-e DB_BASE=/u01/app/oracle \ -e DB_HOME=/u01/app/oracle/product/21c/dbhome_1 \ -e GRID_HOME=/u01/app/21c/grid \ -e GRID_BASE=/u01/app/grid \ -e INVENTORY=/u01/app/oraInventory \ -e COPY_GRID_SOFTWARE=true \ -e COPY_DB_SOFTWARE=true \ -e STAGING_SOFTWARE_LOC=/stage/software/21c \ -e GRID_SW_ZIP_FILE=grid_home.zip \ -e COPY_DB_SOFTWARE=true \ -e DB_SW_ZIP_FILE=db_home.zip \ --volume /scratch/rac/catalog:/u01 \ --volume /stage:/stage \
In this case,
/scratch/rac/catalog
is the host location which will be mapped to/u01
inside the container to use as the software installation home location. This host location should be having correct permissions set at the host level to be read/write enabled from the container by users oracle (uid: 54321) and grid (uid: 54322)./stage
is the host location mapped to/stage
inside the container to use for staging the Grid and DB Software binaries. This location needs atleast read permission from the container by the users oracle (uid: 54321) and grid (uid: 54322).
-
If SELinux is enabled on podman host, then execute following commands to set the contexts for the host locations you want to mount and use inside the container:
semanage fcontext -a -t container_file_t /scratch/rac/catalog restorecon -v /scratch/rac/catalog semanage fcontext -a -t container_file_t /stage restorecon -v /stage
export DEVICE="--device=/dev/disk/by-partlabel/catalog_asm_disk:/dev/asm-disk1"
export CRS_ASM_DEVICE_LIST="/dev/asm-disk1"
podman create -t -i \
--hostname racnodep1 \
--dns-search example.info \
--dns 172.20.1.250 \
--shm-size 4G \
--cpuset-cpus 0-1 \
--memory 12G \
--memory-swap 24G \
--sysctl kernel.shmall=2097152 \
--sysctl "kernel.sem=250 32000 100 128" \
--sysctl kernel.shmmax=8589934592 \
--sysctl kernel.shmmni=4096 \
--cap-add=SYS_RESOURCE \
--cap-add=NET_ADMIN \
--cap-add=SYS_NICE \
--cap-add=AUDIT_WRITE \
--cap-add=AUDIT_CONTROL \
--cap-add=NET_RAW \
-e DB_NAME=CATCDB \
-e ORACLE_PDB_NAME=CAT1PDB \
-e OP_TYPE="setuprac,catalog" \
-e CRS_GPC="true" \
-e DB_PWD_FILE=pwdsecret \
-e PWD_KEY=keysecret \
-e SHARD_SETUP="true" \
-e ENABLE_ARCHIVELOG=true \
-e INIT_SGA_SIZE=3G \
-e INIT_PGA_SIZE=2G \
-e INSTALL_NODE=racnodep1 \
-e CRS_ASM_DEVICE_LIST=${CRS_ASM_DEVICE_LIST} \
-e DNS_SERVERS=172.20.1.250 \
--secret pwdsecret \
--secret keysecret \
${DEVICE} \
--health-cmd "/bin/python3 /opt/scripts/startup/scripts/main.py --checkracstatus" \
--restart=always \
--ulimit rtprio=99 \
--systemd=always \
--privileged=false \
--name catalog oracle/database-gpc-ext-sharding:21.3.0-ee
podman network disconnect podman catalog
podman network connect shard_rac_pub1_nw --ip 172.20.1.170 catalog
podman start catalog
To check the catalog container/services creation logs, please tail podman logs. It will take 20 minutes to create the catalog container service.
First monitor the deployment of the Oracle Restart Database:
podman exec catalog /bin/bash -c "tail -f /tmp/orod/oracle_rac_setup.log"
You will get the message as below once the Database is created:
===================================
ORACLE RAC DATABASE IS READY TO USE
===================================
Now, monitor the Oracle GDD Catalog creation using below command:
podman exec catalog /bin/bash -c "tail -f /tmp/sharding/oracle_sharding_setup.log"
You will get the message as below once the Oracle GDD Catalog is created:
==============================================
GSM Catalog Setup Completed
==============================================
A database shard is a horizontal partition of data in a database or search engine. Each individual partition is referred to as a shard or database shard.
Ensure that you have created at least one Block Device with at least 50 Gb of storage space for each of the Shard Container. You can create more block devices in accordance with your requirements and pass those environment variables and devices to the podman create command. The Storage Device must be accessible to the Shard Container to which that is getting assigned.
Ensure that the ASM devices do not have any existing file system. To clear any other file system from the devices, use the following command:
dd if=/dev/zero of=/dev/disk/by-partlabel/shard1_asm_disk bs=8k count=10000
dd if=/dev/zero of=/dev/disk/by-partlabel/shard2_asm_disk bs=8k count=10000
Repeat this command on each shared block device if you are assigning more than one Storage Device to Shard Container.
Before creating shard1 container, review the following notes carefully:
Notes:
-
Change environment variable such as DB_NAME, ORACLE_PDB_NAME based on your env.
-
Use the parameter
OP_TYPE="setuprac,primaryshard"
,CRS_GPC="true"
to use the Oracle Restart option to setup the Shard1 for Sharded Database deployment. -
If you are using Extended Oracle RAC Database
SLIM
Image instead of the full image, then use the below additional parameters during the container creation:-e DB_BASE=/u01/app/oracle \ -e DB_HOME=/u01/app/oracle/product/21c/dbhome_1 \ -e GRID_HOME=/u01/app/21c/grid \ -e GRID_BASE=/u01/app/grid \ -e INVENTORY=/u01/app/oraInventory \ -e COPY_GRID_SOFTWARE=true \ -e COPY_DB_SOFTWARE=true \ -e STAGING_SOFTWARE_LOC=/stage/software/21c \ -e GRID_SW_ZIP_FILE=grid_home.zip \ -e COPY_DB_SOFTWARE=true \ -e DB_SW_ZIP_FILE=db_home.zip \ --volume /scratch/rac/shard1:/u01 \ --volume /stage:/stage \
In this case,
/scratch/rac/shard1
is the host location which will be mapped to/u01
inside the container to use as the software installation home location. This host location should be having correct permissions set at the host level to be read/write enabled from the container by users oracle (uid: 54321) and grid (uid: 54322)./stage
is the host location mapped to/stage
inside the container to use for staging the Grid and DB Software binaries. This location needs atleast read permission from the container by the users oracle (uid: 54321) and grid (uid: 54322).
-
If SELinux is enabled on podman host, then execute following commands to set the contexts for the host locations you want to mount and use inside the container:
semanage fcontext -a -t container_file_t /scratch/rac/shard1 restorecon -v /scratch/rac/shard1 semanage fcontext -a -t container_file_t /stage restorecon -v /stage
export DEVICE="--device=/dev/disk/by-partlabel/shard1_asm_disk:/dev/asm-disk1"
export CRS_ASM_DEVICE_LIST="/dev/asm-disk1"
podman create -t -i \
--hostname racnodep2 \
--dns-search example.info \
--dns 172.20.1.250 \
--shm-size 4G \
--cpuset-cpus 0-1 \
--memory 12G \
--memory-swap 24G \
--sysctl kernel.shmall=2097152 \
--sysctl "kernel.sem=250 32000 100 128" \
--sysctl kernel.shmmax=8589934592 \
--sysctl kernel.shmmni=4096 \
--cap-add=SYS_RESOURCE \
--cap-add=NET_ADMIN \
--cap-add=SYS_NICE \
--cap-add=AUDIT_WRITE \
--cap-add=AUDIT_CONTROL \
--cap-add=NET_RAW \
-e DB_NAME=ORCL1CDB \
-e ORACLE_PDB_NAME=ORCL1PDB \
-e OP_TYPE="setuprac,primaryshard" \
-e CRS_GPC="true" \
-e DB_PWD_FILE=pwdsecret \
-e PWD_KEY=keysecret \
-e SHARD_SETUP="true" \
-e ENABLE_ARCHIVELOG=true \
-e INIT_SGA_SIZE=3G \
-e INIT_PGA_SIZE=2G \
-e INSTALL_NODE=racnodep2 \
-e CRS_ASM_DEVICE_LIST=${CRS_ASM_DEVICE_LIST} \
-e DNS_SERVERS=172.20.1.250 \
--secret pwdsecret \
--secret keysecret \
${DEVICE} \
--health-cmd "/bin/python3 /opt/scripts/startup/scripts/main.py --checkracstatus" \
--restart=always \
--ulimit rtprio=99 \
--systemd=always \
--privileged=false \
--name shard1 oracle/database-gpc-ext-sharding:21.3.0-ee
podman network disconnect podman shard1
podman network connect shard_rac_pub1_nw --ip 172.20.1.171 shard1
podman start shard1
To check the Shard1 container/services creation logs, please tail podman logs. It will take 20 minutes to create the catalog container service.
First monitor the deployment of the Oracle Restart Database:
podman exec shard1 /bin/bash -c "tail -f /tmp/orod/oracle_rac_setup.log"
You will get the message as below once the Database is created:
===================================
ORACLE RAC DATABASE IS READY TO USE
===================================
Now, monitor the Shard1 setup using below command:
podman exec shard1 /bin/bash -c "tail -f /tmp/sharding/oracle_sharding_setup.log"
You will get the message as below once the Oracle GDD Catalog is created:
==============================================
GSM Shard Setup Completed
==============================================
Before creating shard2 container, review the following notes carefully:
Notes:
-
Change environment variable such as DB_NAME, ORACLE_PDB_NAME based on your env.
-
Use the parameter
OP_TYPE="setuprac,primaryshard"
,CRS_GPC="true"
to use the Oracle Restart option to setup the Shard2 for Sharded Database deployment. -
If you are using Extended Oracle RAC Database
SLIM
Image instead of the full image, then use the below additional parameters during the container creation:-e DB_BASE=/u01/app/oracle \ -e DB_HOME=/u01/app/oracle/product/21c/dbhome_1 \ -e GRID_HOME=/u01/app/21c/grid \ -e GRID_BASE=/u01/app/grid \ -e INVENTORY=/u01/app/oraInventory \ -e COPY_GRID_SOFTWARE=true \ -e COPY_DB_SOFTWARE=true \ -e STAGING_SOFTWARE_LOC=/stage/software/21c \ -e GRID_SW_ZIP_FILE=grid_home.zip \ -e COPY_DB_SOFTWARE=true \ -e DB_SW_ZIP_FILE=db_home.zip \ --volume /scratch/rac/shard2:/u01 \ --volume /stage:/stage \
In this case,
/scratch/rac/shard2
is the host location which will be mapped to/u01
inside the container to use as the software installation home location. This host location should be having correct permissions set at the host level to be read/write enabled from the container by users oracle (uid: 54321) and grid (uid: 54322)./stage
is the host location mapped to/stage
inside the container to use for staging the Grid and DB Software binaries. This location needs atleast read permission from the container by the users oracle (uid: 54321) and grid (uid: 54322).
-
If SELinux is enabled on podman host, then execute following commands to set the contexts for the host locations you want to mount and use inside the container:
semanage fcontext -a -t container_file_t /scratch/rac/shard2 restorecon -v /scratch/rac/shard2 semanage fcontext -a -t container_file_t /stage restorecon -v /stage
export DEVICE="--device=/dev/disk/by-partlabel/shard2_asm_disk:/dev/asm-disk1"
export CRS_ASM_DEVICE_LIST="/dev/asm-disk1"
podman create -t -i \
--hostname racnodep3 \
--dns-search example.info \
--dns 172.20.1.250 \
--shm-size 4G \
--cpuset-cpus 0-1 \
--memory 12G \
--memory-swap 24G \
--sysctl kernel.shmall=2097152 \
--sysctl "kernel.sem=250 32000 100 128" \
--sysctl kernel.shmmax=8589934592 \
--sysctl kernel.shmmni=4096 \
--cap-add=SYS_RESOURCE \
--cap-add=NET_ADMIN \
--cap-add=SYS_NICE \
--cap-add=AUDIT_WRITE \
--cap-add=AUDIT_CONTROL \
--cap-add=NET_RAW \
-e DB_NAME=ORCL2CDB \
-e ORACLE_PDB_NAME=ORCL2PDB \
-e OP_TYPE="primaryshard,setuprac" \
-e CRS_GPC="true" \
-e DB_PWD_FILE=pwdsecret2 \
-e PWD_KEY=keysecret2 \
-e SHARD_SETUP="true" \
-e ENABLE_ARCHIVELOG=true \
-e INIT_SGA_SIZE=3G \
-e INIT_PGA_SIZE=2G \
-e INSTALL_NODE=racnodep3 \
-e CRS_ASM_DEVICE_LIST=${CRS_ASM_DEVICE_LIST} \
-e DNS_SERVERS=172.20.1.250 \
--secret pwdsecret2 \
--secret keysecret2 \
${DEVICE} \
--health-cmd "/bin/python3 /opt/scripts/startup/scripts/main.py --checkracstatus" \
--restart=always \
--ulimit rtprio=99 \
--systemd=always \
--privileged=false \
--name shard2 oracle/database-gpc-ext-sharding:21.3.0-ee
podman network disconnect podman shard2
podman network connect shard_rac_pub1_nw --ip 172.20.1.172 shard2
podman start shard2
To check the Shard1 container/services creation logs, please tail podman logs. It will take 20 minutes to create the catalog container service.
First monitor the deployment of the Oracle Restart Database:
podman exec shard2 /bin/bash -c "tail -f /tmp/orod/oracle_rac_setup.log"
You will get the message as below once the Database is created:
===================================
ORACLE RAC DATABASE IS READY TO USE
===================================
Now, monitor the Shard1 setup using below command:
podman exec shard2 /bin/bash -c "tail -f /tmp/sharding/oracle_sharding_setup.log"
You will get the message as below once the Oracle GDD Catalog is created:
==============================================
GSM Shard Setup Completed
==============================================
The Global Data Services framework consists of at least one global service manager, a Global Data Services catalog, and the GDS configuration databases. You need to create mountpoint on podman host to save gsm setup related file for Oracle Global Service Manager and expose as a volume to GSM container. This volume can be local on a podman host or exposed from your central storage. It contains a file system such as EXT4. During the setup of this README.md, we used /oradata/dbfiles/GSMDATA directory and exposed as volume to GSM container.
mkdir -p /oradata/dbfiles/GSMDATA
chown -R 54321:54321 /oradata/dbfiles/GSMDATA
If SELinux is enabled on podman host, then execute following-
semanage fcontext -a -t container_file_t /oradata/dbfiles/GSMDATA
restorecon -v /oradata/dbfiles/GSMDATA
podman create -t -i \
--hostname racnodep7 \
--dns-search=example.info \
--dns 172.20.1.250 \
-e DOMAIN=example.info \
-e SHARD_DIRECTOR_PARAMS="director_name=sharddirector1;director_region=region1;director_port=1522" \
-e SHARD1_GROUP_PARAMS="group_name=shardgroup1;deploy_as=primary;group_region=region1" \
-e CATALOG_PARAMS="catalog_host=racnodep1;catalog_db=CATCDB;catalog_pdb=CAT1PDB;catalog_port=1521;catalog_name=shardcatalog1;catalog_region=region1,region2" \
-e SHARD1_PARAMS="shard_host=racnodep2;shard_db=ORCL1CDB;shard_pdb=ORCL1PDB;shard_port=1521;shard_group=shardgroup1" \
-e SHARD2_PARAMS="shard_host=racnodep3;shard_db=ORCL2CDB;shard_pdb=ORCL2PDB;shard_port=1521;shard_group=shardgroup1" \
-e SERVICE1_PARAMS="service_name=oltp_rw_svc;service_role=primary" \
-e SERVICE2_PARAMS="service_name=oltp_ro_svc;service_role=primary" \
-e GSM_TRACE_LEVEL="OFF" \
-e COMMON_OS_PWD_FILE=pwdsecret \
-e PWD_KEY=keysecret \
--secret pwdsecret \
--secret keysecret \
-e SHARD_SETUP="True" \
-v /oradata/dbfiles/GSMDATA:/opt/oracle/gsmdata \
-e OP_TYPE=gsm \
-e MASTER_GSM="TRUE" \
--restart=always \
--privileged=false \
--name gsm1 oracle/database-gsm:21.3.0
podman network disconnect podman gsm1
podman network connect shard_rac_pub1_nw --ip 172.20.1.176 gsm1
podman start gsm1
Note: Change environment variables such as DOMAIN, CATALOG_PARAMS, PRIMARY_SHARD_PARAMS, COMMON_OS_PWD_FILE and PWD_KEY according to your environment.
To check the gsm1 container/services creation logs, please tail podman logs. It will take 2 minutes to create the gsm container service.
podman logs -f gsm1
==============================================
GSM Setup Completed
==============================================
You need standby GSM container to serve the connection when master GSM fails.
mkdir -p /oradata/dbfiles/GSM2DATA
chown -R 54321:54321 /oradata/dbfiles/GSM2DATA
If SELinux is enabled on podman host, then execute following-
semanage fcontext -a -t container_file_t /oradata/dbfiles/GSM2DATA
restorecon -v /oradata/dbfiles/GSM2DATA
podman create -i -t \
--hostname racnodep8 \
--dns-search=example.info \
--dns 172.20.1.250 \
-e DOMAIN=example.info \
-e SHARD_DIRECTOR_PARAMS="director_name=sharddirector2;director_region=region2;director_port=1522" \
-e SHARD1_GROUP_PARAMS="group_name=shardgroup1;deploy_as=standby;group_region=region2" \
-e CATALOG_PARAMS="catalog_host=racnodep1;catalog_db=CATCDB;catalog_pdb=CAT1PDB;catalog_port=1521;catalog_name=shardcatalog1;catalog_region=region1,region2" \
-e SHARD1_PARAMS="shard_host=racnodep2;shard_db=ORCL1CDB;shard_pdb=ORCL1PDB;shard_port=1521;shard_group=shardgroup1" \
-e SHARD2_PARAMS="shard_host=racnodep3;shard_db=ORCL2CDB;shard_pdb=ORCL2PDB;shard_port=1521;shard_group=shardgroup1" \
-e SERVICE1_PARAMS="service_name=oltp_rw_svc;service_role=standby" \
-e SERVICE2_PARAMS="service_name=oltp_ro_svc;service_role=standby" \
-e GSM_TRACE_LEVEL="OFF" \
-e CATALOG_SETUP="True" \
-e COMMON_OS_PWD_FILE=pwdsecret \
-e PWD_KEY=keysecret \
--secret pwdsecret \
--secret keysecret \
-v /oradata/dbfiles/GSM2DATA:/opt/oracle/gsmdata \
-e OP_TYPE=gsm \
--restart=always \
--privileged=false \
--name gsm2 oracle/database-gsm:21.3.0
podman network disconnect podman gsm2
podman network connect shard_rac_pub1_nw --ip 172.20.1.177 gsm2
podman start gsm2
Note: Change environment variables such as DOMAIN, CATALOG_PARAMS, COMMON_OS_PWD_FILE and PWD_KEY according to your environment.
To check the gsm2 container/services creation logs, please tail podman logs. It will take 2 minutes to create the gsm container service.
podman logs -f gsm2
IMPORTANT: The GSM Container Image used in this case is having the Oracle GSM installed. On first startup of the container, a new GSM setup will be created and the following lines highlight when the GSM setup is ready to be used:
==============================================
GSM Setup Completed
==============================================
If you want to Scale-Out an existing Oracle Globally Distributed Database already deployed using the Podman Containers, then you will to complete the steps in below order:
- Complete the prerequisite steps before creating the Podman Container for the new shard to be added to the Oracle Globally Distributed Database
- Create the Podman Container for the new shard
- Add the new shard Database to the existing Oracle Globally Distributed Database
- Deploy the new shard
The below example covers the steps to add a new shard (shard3)
to an existing Oracle Globally Distributed Database which was deployed earlier in this page with two shards (shard1 and shard2)
using Extended Oracle RAC Database Container Image.
Ensure that you have created at least one Block Device with at least 50 Gb of storage space that can be accessed by the Shard3 Container. You can create more block devices in accordance with your requirements and pass those environment variables and devices to the podman create command.
Ensure that the ASM devices do not have any existing file system. To clear any other file system from the devices, use the following command:
dd if=/dev/zero of=/dev/disk/by-partlabel/shard3_asm_disk bs=8k count=10000
Repeat this command on each shared block device.
Before creating new shard (shard3 in this case) container, review the following notes carefully:
Notes:
-
Change environment variable such as DB_NAME, ORACLE_PDB_NAME based on your env.
-
Use the parameter
OP_TYPE="setuprac,primaryshard"
,CRS_GPC="true"
to use the Oracle Restart option to setup the Shard3 for Sharded Database deployment. -
If you are using Extended Oracle RAC Database
SLIM
Image instead of the full image, then use the below additional parameters during the container creation:-e DB_BASE=/u01/app/oracle \ -e DB_HOME=/u01/app/oracle/product/21c/dbhome_1 \ -e GRID_HOME=/u01/app/21c/grid \ -e GRID_BASE=/u01/app/grid \ -e INVENTORY=/u01/app/oraInventory \ -e COPY_GRID_SOFTWARE=true \ -e COPY_DB_SOFTWARE=true \ -e STAGING_SOFTWARE_LOC=/stage/software/21c \ -e GRID_SW_ZIP_FILE=grid_home.zip \ -e COPY_DB_SOFTWARE=true \ -e DB_SW_ZIP_FILE=db_home.zip \ --volume /scratch/rac/shard3:/u01 \ --volume /stage:/stage \
In this case,
/scratch/rac/shard3
is the host location which will be mapped to/u01
inside the container to use as the software installation home location. This host location should be having correct permissions set at the host level to be read/write enabled from the container by users oracle (uid: 54321) and grid (uid: 54322)./stage
is the host location mapped to/stage
inside the container to use for staging the Grid and DB Software binaries. This location needs atleast read permission from the container by the users oracle (uid: 54321) and grid (uid: 54322).
-
If SELinux is enabled on podman host, then execute following commands to set the contexts for the host locations you want to mount and use inside the container:
semanage fcontext -a -t container_file_t /scratch/rac/shard3 restorecon -v /scratch/rac/shard3 semanage fcontext -a -t container_file_t /stage restorecon -v /stage
podman create -t -i \
--hostname racnodep4 \
--dns-search example.info \
--dns 172.20.1.250 \
--shm-size 4G \
--cpuset-cpus 0-1 \
--memory 12G \
--memory-swap 24G \
--sysctl kernel.shmall=2097152 \
--sysctl "kernel.sem=250 32000 100 128" \
--sysctl kernel.shmmax=8589934592 \
--sysctl kernel.shmmni=4096 \
--cap-add=SYS_RESOURCE \
--cap-add=NET_ADMIN \
--cap-add=SYS_NICE \
--cap-add=AUDIT_WRITE \
--cap-add=AUDIT_CONTROL \
--cap-add=NET_RAW \
-e DB_NAME=ORCL3CDB \
-e ORACLE_PDB_NAME=ORCL3PDB \
-e OP_TYPE="primaryshard,setuprac" \
-e CRS_GPC="true" \
-e DB_PWD_FILE=pwdsecret \
-e PWD_KEY=keysecret \
-e SHARD_SETUP="true" \
-e ENABLE_ARCHIVELOG=true \
-e INIT_SGA_SIZE=3G \
-e INIT_PGA_SIZE=2G \
-e INSTALL_NODE=racnodep4 \
-e CRS_ASM_DEVICE_LIST=${CRS_ASM_DEVICE_LIST} \
-e DNS_SERVERS=172.20.1.250 \
--secret pwdsecret \
--secret keysecret \
${DEVICE} \
--health-cmd "/bin/python3 /opt/scripts/startup/scripts/main.py --checkracstatus" \
--restart=always \
--ulimit rtprio=99 \
--systemd=always \
--privileged=false \
--name shard3 oracle/database-gpc-ext-sharding:21.3.0-ee
podman network disconnect podman shard3
podman network connect shard_rac_pub1_nw --ip 172.20.1.173 shard3
podman start shard3
To check the Shard1 container/services creation logs, please tail podman logs. It will take 20 minutes to create the catalog container service.
First monitor the deployment of the Oracle Restart Database:
podman exec shard3 /bin/bash -c "tail -f /tmp/orod/oracle_rac_setup.log"
You will get the message as below once the Database is created:
===================================
ORACLE RAC DATABASE IS READY TO USE
===================================
Now, monitor the Shard3 setup using below command:
podman exec shard3 /bin/bash -c "tail -f /tmp/sharding/oracle_sharding_setup.log"
You will get the message as below once the Oracle GDD Catalog is created:
==============================================
GSM Shard Setup Completed
==============================================
Use the below command to add the new shard3:
podman exec -it gsm1 python /opt/oracle/scripts/sharding/scripts/main.py --addshard="shard_host=racnodep4;shard_db=ORCL3CDB;shard_pdb=ORCL3PDB;shard_port=1521;shard_group=shardgroup1"
Use the below command to check the status of the newly added shard:
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config shard
Deploy the newly added shard (shard3):
podman exec -it gsm1 python /opt/oracle/scripts/sharding/scripts/main.py --deployshard=true
Use the below command to check the status of the newly added shard and the chunks distribution:
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config shard
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config chunks
NOTE: The chunks redistribution after deploying the new shard may take some time to complete.
If you want to Scale-in an existing Oracle Globally Distributed Database by removing a particular shard database out of the existing shard databases, then you need will to complete the steps in below order:
- Confirm the shard to be deleted is present in the list of shards in the Oracle Globally Distributed Database
- Move the chunks out of the shard database which you want to delete
- Delete the shard database from the Oracle Globally Distributed Database
- Confirm the shard has been successfully deleted from the Oracle Globally Distributed Database
Confirm the shard to be deleted is present in the list of shards in the Oracle Globally Distributed Database
Use the below commands to check the status of the shard which you want to delete and status of chunks present in this shard:
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config shard
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config chunks
In the current example, if you want to delete the shard3 database from the Oracle Globally Distributed Database, then you need to use the below command to move the chunks out of shard3 database:
podman exec -it gsm1 python /opt/oracle/scripts/sharding/scripts/main.py --movechunks="shard_db=ORCL3CDB;shard_pdb=ORCL3PDB"
NOTE: In this case, ORCL3CDB
and ORCL3PDB
are the names of CDB and PDB for the shard3 respectively.
After moving the chunks out, use the below command to confirm there is no chunk present in the shard database which you want to delete:
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config chunks
NOTE: You will need to wait for some time for all the chunks to move out of the shard database which you want to delete. If the chunks are still moving out, you can rerun the above command to check the status after some time.
Once you have confirmed that no chunk is present in the shard to be deleted in earlier step, you can use the below command to delete that shard(shard3 in this case):
podman exec -it gsm1 python /opt/oracle/scripts/sharding/scripts/main.py --deleteshard="shard_host=racnodep4;shard_db=ORCL3CDB;shard_pdb=ORCL3PDB;shard_port=1521;shard_group=shardgroup1"
NOTE: In this case, racnodep4
, ORCL3CDB
and ORCL3PDB
are the names of host, CDB and PDB for the shard3 respectively.
Once the shard is deleted from the Oracle Globally Distributed Database, use the below commands to check the status of the shards and chunk distribution in the Oracle Globally Distributed Database:
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config shard
podman exec -it gsm1 $(podman exec -it gsm1 env | grep ORACLE_HOME | cut -d= -f2 | tr -d '\r')/bin/gdsctl config chunks
Once the shard is deleted from the Oracle Globally Distributed Database, you can remove the Podman Container which was deployed earlier for the deleted shard database.
If the deleted shard was "shard3", to remove its Podman Container, please use the below steps:
- Stop and remove the Docker Container for shard3:
podman stop shard3
podman rm shard3
- If you have used Extended Oracle RAC Database
SLIM
Image instead of the full image, then remove the directory/scratch/rac/shard3
containing the files for this deleted Podman Container:
rm -rf /scratch/rac/shard3
For catalog, shard containers-
Parameter | Description | Mandatory/Optional |
---|---|---|
DB_PWD_FILE | Specify the podman secret for the password file to be read inside the Database containers | Mandatory |
PWD_KEY | Specify the podman secret for the password key file to decrypt the encrypted password file and read the password | Mandatory |
OP_TYPE | Specify the operation type. For Shards it has to be set to "primaryshard,setuprac" or "standbyshard,setuprac" | Mandatory |
DOMAIN | Specify the domain name | Mandatory |
DB_NAME | CDB name | Mandatory |
ORACLE_PDB_NAME | PDB name | Mandatory |
CRS_GPC | Set to true along with OP_TYPE to use the Oracle Restart option for Catalog and Shard Database Containers | Mandatory |
CRS_RACDB | Set to true along with OP_TYPE to use the Oracle RAC Database option for Catalog and Shard Database Containers | Mandatory |
CUSTOM_SHARD_SCRIPT_DIR | Specify the location of custom scripts which you want to run after setting up shard setup. | Optional |
CUSTOM_SHARD_SCRIPT_FILE | Specify the file name that must be available on CUSTOM_SHARD_SCRIPT_DIR location to be executed after shard db setup. | Optional |
For GSM Containers-
Parameter | Description | Mandatory/Optional |
---|---|---|
CATALOG_SETUP | Accept True. If set then, it will just create gsm director and add catalog but will not add any shard | Mandatory |
CATALOG_PARAMS | Accept key value pair separated by semicolon e.g. key1=value1;key2=value2 for following key=value pairs: key=catalog_host, value=catalog hostname;key=catalog_db, value=catalog cdb name;key=catalog_pdb, value=catalog pdb name;key=catalog_port, value=catalog db port name;key=catalog_name, value=catalog name in GSM;key=catalog_region, value=specify comma separated region name for catalog db deployment | Mandatory |
SHARD_DIRECTOR_PARAMS | Accept key value pair separated by semicolon e.g. key1=value1;key2=value2 for following key=value pairs: key=director_name, value=shard director name;key=director_region, value=shard director region;key=director_port, value=shard director port | Mandatory |
SHARD[1-9]_GROUP_PARAMS | Accept key value pair separated by semicolon e.g. key1=value1;key2=value2 for following key=value pairs: key=group_name, value=shard group name;key=deploy_as, value=deploy shard group as primary or standby or active_standby;key=group_region, value=shard group region name | Mandatory |
SHARD[1-9]_PARAMS | Accept key value pair separated by semicolon e.g. key1=value1;key2=value2 for following key=value pairs: key=shard_host, value=shard hostname; key=shard_db, value=shard cdb name; key=shard_pdb, value=shard pdb name; key=shard_port, value=shard db port;key=shard_group value=shard group name | Mandatory |
SERVICE[1-9]_PARAMS | Accept key value pair separated by semicolon e.g. key1=value1;key2=value2 for following key=value pairs: key=service_name, value=service name;key=service_role, value=service role e.g. primary or physical_standby | Mandatory |
GSM_TRACE_LEVEL | Specify tacing level for the GSM(Specify USER or ADMIN or SUPPORT or OFF, default value as OFF) | Optional |
COMMON_OS_PWD_FILE | Specify the podman secret for the password file to be read inside the container | Mandatory |
PWD_KEY | Specify the podman secret for the password key file to decrypt the encrypted password file and read the password | Mandatory |
OP_TYPE | Specify the operation type. For GSM, it has to be set to gsm. | Mandatory |
DOMAIN | Domain of the container. | Mandatory |
MASTER_GSM | Set value to "TRUE" if you want the GSM to be a master GSM. Otherwise, do not set it. | Mandatory |
SAMPLE_SCHEMA | Specify a value to "DEPLOY" if you want to deploy sample app schema in catalog DB during GSM setup. | Optional |
CUSTOM_SHARD_SCRIPT_DIR | Specify the location of custom scripts that you want to run after setting up GSM. | Optional |
CUSTOM_SHARD_SCRIPT_FILE | Specify the file name which must be available on CUSTOM_SHARD_SCRIPT_DIR location to be executed after GSM setup. | Optional |
BASE_DIR | Specify BASE_DIR if you want to change the base location of the scripts to setup GSM. | Optional |
SCRIPT_NAME | Specify the script name which will be executed from BASE_DIR. Default set to main.py. | Optional |
EXECUTOR | Specify the script executor such as /bin/python or /bin/bash. Default set to /bin/python. | Optional |
Oracle Globally Distributed Database on Docker is supported on Oracle Linux 7. Oracle Globally Distributed Database on Podman is supported on Oracle Linux 8 and onwards.
To run Oracle Globally Distributed Database, regardless whether inside or outside a Container, ensure to download the binaries from the Oracle website and accept the license indicated at that page.
All scripts and files hosted in this project and GitHub docker-images/OracleDatabase repository required to build the Docker and Podman images are, unless otherwise noted, released under UPL 1.0 license.
Copyright (c) 2022 - 2024 Oracle and/or its affiliates. Released under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl/