Common Error Patterns and Resolutions
Troubleshoot common errors in Oracle Globally Distributed Database.
Shard Director Fails to Start
If you encounter issues starting the shard director, try the following:
To start Scheduler you must be inside ORACLE_HOME on each shard server.
GDSCTL>start gsm -gsm shardDGdirector
GSM-45054: GSM error
GSM-40070: GSM is not able to establish connection to GDS catalog
GSM alert log, /u01/app/oracle/diag/gsm/shard1/sharddgdirector/trace/alert_gds.log
GSM-40112: OCI error. Code (-1). See GSMOCI trace for details.
GSM-40122: OCI Catalog Error. Code: 12514. Message: ORA-12514: TNS:listener does not
currently know of service requested in connect descriptor
GSM-40112: OCI error. Code (-1). See GSMOCI trace for details.
2017-04-20T22:50:22.496362+05:30
Process 1 in GSM instance is down
GSM shutdown is successful
GSM shutdown is in progress
NOTE : if not message displayed in the GSM log then enable GSM trace level to 16
while adding GSM itself.
-
Remove the newly created shard director (GSM) that failed to start.
GDSCTL> remove gsm -gsm shardDGdirector
-
Add the shard director using trace level 16.
GDSCTL> add gsm -gsm shardDGdirector -listener port_num -pwd gsmcatuser_password -catalog hostname:port_num:shard_catalog_name -region region1 -trace_level 16
-
If the shard catalog database is running on a non-default port (other than 1521), set the remote listener.
SQL> alter system set local_listener='(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp) (HOST=hostname)(PORT=port_num)))';
Tablespace Set Creation Fails
A failure in tablespace set creation may be due to DB_FILES
parameter set too low.
DB_FILES
parameter default setting is 200. This may be too low for
distributed databases with a large number of shards and chunks. You may also require a larger number of
data files in a Raft replication scenario
To calculate the number of database files created for distributed database objects on a given shard:
Distributed database files required = (Number of CREATE TABLESPACE SET
SQL
statements executed using SHARD DDL
) * (Number of chunks present on the
shard + 1)
DB_FILES
must be set to at least the number of files used
by the distributed database (above) PLUS non-distributed database files (system, sysaux, and so on) PLUS any extra needed by generic RDBMS code
(5); therefore:
DB_FILES
required in each shard = (Number of distributed database files required, as calculated above) + Number of default database files(6) + 5
To check free DB_FILES
and parameter setting:
SQL> select count(*) from v$datafile;
COUNT(*)
----------
XxxXX
SQL> show parameter db_files
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
db_files integer 200
Issues Using DEPLOY Command
GDSCTL> deploy
GSM-45029: SQL error
ORA-29273: HTTP request failed
ORA-06512: at "SYS.DBMS_ISCHED", line 3715
ORA-06512: at "SYS.UTL_HTTP", line 1267
ORA-29276: transfer timeout
ORA-06512: at "SYS.UTL_HTTP", line 651
ORA-06512: at "SYS.UTL_HTTP", line 1257
ORA-06512: at "SYS.DBMS_ISCHED", line 3708
ORA-06512: at "SYS.DBMS_SCHEDULER", line 2609
ORA-06512: at "GSMADMIN_INTERNAL.DBMS_GSM_POOLADMIN", line 14284
ORA-06512: at line 1
Solution : Check the $ORACLE_HOME/data/pendingjobs
for the exact
error. ORA-1017 is thrown if any issues on wallet.
-
On the problematic shard host stop the remote scheduler agent.
schagent -stop
-
Rename wallet directory on the database home.
mv $ORACLE_HOME/data/wallet $ORACLE_HOME/data/wallet.old
-
Start the remote scheduler agent and it will create new wallet directory.
schagent -start schagent -status echo welcome | schagent -registerdatabase 10.10.10.10 8080
Issues Moving Chunks
If you encounter issues with MOVE CHUNK
, try the
following:
Issue: Initialization parameter
remote_dependencies_mode
has a default value of
timestamp
; therefore, because prvtgwmut.plb
is run
and DBMS_GSM_UTILITY
recompiled durning upgrade, GDSCTL MOVE
CHUNK
runs into ORA-04062 errors similar to the following.
GSM Errors:
server:ORA-03749: Chunk move cannot be performed at this time.
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79
ORA-06512: at "GSMADMIN_INTERNAL.DBMS_GSM_DBADMIN", line 5497
ORA-04062: timestamp of package "GSMADMIN_INTERNAL.DBMS_GSM_UTILITY" has been
changed
ORA-06512: at line 1
ORA-06512: at "GSMADMIN_INTERNAL.DBMS_GSM_DBADMIN", line 5366
ORA-06512: at line 1 (ngsmoci_execute)
Workaround 1: Restart the source and target shards after upgrade.
Workaround 2:
ALTER SYSTEM SET remote_dependencies_mode=signature
on both source and
target.
Issues with Oracle Database Vault
Do not enable Oracle Database Vault on your distributed databases. Oracle Globally Distributed Database does not support Oracle Database Vault.
Issue During Deployment of Role-Separated Environment
The GSM-45029: SQL ERROR NO MORE DATA TO READ FROM
SOCKET
error occurs when you perform administrative
operations for Oracle Globally Distributed Database or for Oracle Global Data Services (GDS) and connect through a
listener that runs in the Oracle Real Application Clusters (Oracle
RAC) or Oracle Restart account in a role-separated environment.
The error occurs where the Oracle RAC or Oracle Restart account is different from the Oracle Database account.
Solution:
Start a listener in the Oracle Database account on the shard catalog database and on each shard, if it is not already running.
The listener can be used to connect and perform administrative operations.
This listener can also be used when you provide an Oracle Database Transparent Network Substrate (TNS) address, when it is required for administrative commands, such as add shard
.