Coupling facility and Db2 problems
Use this topic to investigate, and resolve problems with the coupling facility, and Db2 .
This section covers the problems that you might encounter with the coupling facility and Db2:- Storage medium full
- A Db2 system fails
- A Db2 data-sharing group fails
- Db2 and the coupling facility fail
Storage medium full
- Problem
- A coupling facility structure is full.
- Symptoms
- If a queue structure becomes full, return code MQRC_STORAGE_MEDIUM_FULL is returned to the
application.
If the administration structure becomes full, the exact symptoms depend on which processes experience the error, they might range from no responses to CMDSCOPE(GROUP) commands, to queue manager failure as a result of problems during commit processing.
- System programmer action
-
We can use IBM MQ to inhibit MQPUT operations to some of the queues in the structure to prevent applications from writing more messages, start more applications to get messages from the queues, or quiesce some of the applications that are putting messages to the queue.
Alternatively we can use XES facilities to alter the structure size in place. The following z/OS command alters the size of the structure:SETXCF START,ALTER,STRNAME= structure-name,SIZE= newsize
where newsize is a value that is less than the value of MAXSIZE specified on the CFRM policy for the structure, but greater than the current coupling facility size.
We can monitor the utilization of a coupling facility structure with the DISPLAY CFSTATUS command.
A Db2 system fails
If a Db2 subsystem that IBM MQ is connected to fails, IBM MQ attempts to reconnect to the subsystem, and continue working. If you specified a Db2 group attach name in the QSGDATA parameter of the CSQ6SYSP system parameter module, IBM MQ reconnects to another active Db2 that is a member of the same data-sharing group as the failed Db2, if one is available on the same z/OS image.
There are some queue manager operations that do not work while IBM MQ is not connected to Db2. These are:- Delete a shared queue or group object definition.
- Altering, or issuing MQSET on, a shared queue or group object definition. The restriction of MQSET on shared queues means that operations such as triggering or the generation of performance events do not work correctly.
- Defining new shared queues or group objects.
- Display shared queues or group objects.
- Starting, stopping, or other actions for shared channels.
- Reading the shared queue definition from Db2 the first time that the shared queue is open by issuing an MQOPEN.
Other IBM MQ API operations continue to function as normal for shared queues, and all IBM MQ operations can be performed against the queue manager private versions (COPY objects) built from GROUP objects. Similarly, any shared channels that are running continue normally until they end or have an error, when they go into retry state.
When IBM MQ reconnects to Db2, resynchronization is performed between the queue manager and Db2. This involves notifying the queue manager of new objects that have been defined in Db2 while it was disconnected (other queue managers might have been able to continue working as normal on other z/OS images through other Db2 subsystems), and updating object attributes of shared queues that have changed in Db2. Any shared channels in retry state are recovered.
If a Db2 fails, it might have owned locks on Db2 resources at the time of failure. In some cases, this might make certain IBM MQ objects unavailable to other queue managers that are not otherwise affected. To resolve this, restart the failed Db2 so that it can perform recovery processing and release the locks.
A Db2 data-sharing group fails
If an entire Db2 data-sharing group fails, recovery might be to the time of failure, or to a previous point in time.
In the case of recovery to the point of failure, IBM MQ reconnects when Db2 has been recovered, the resynchronization process takes places, and normal queue manager function is resumed.
However, if Db2 is recovered to a previous point in time, there might be inconsistencies between the actual queues in the coupling facility structures and the Db2 view of those queues. For example, at the point in time Db2 is recovered to, a queue existed that has since been deleted and its location in the coupling facility structure reused by the definition of a new queue that now contains messages.
If we find yourself in this situation, we must stop all the queue managers in the queue sharing group, clear out the coupling facility structures, and restart the queue managers. We must then use IBM MQ commands to define any missing objects. To do this, use the following procedure:
- Prevent IBM MQ from reconnecting to Db2 by starting Db2 in utility mode, or by altering security profiles.
- If we have any important messages on shared queues, you might be able to offload them using the COPY function of the CSQUTIL utility program, but this might not work.
- Terminate all queue managers.
- Use the following z/OS command to clear all
structures:
SETXCF FORCE,STRUCTURE,STRNAME=
- Restore Db2 to a historical point in time.
- Reestablish queue manager access to Db2.
- Restart the queue managers.
- Recover the IBM MQ definitions from backup copies.
- Reload any offloaded messages to the shared queues.
When the queue managers restart, they attempt to resynchronize local COPY objects with the Db2 GROUP objects. This might cause IBM MQ to attempt to do the following:
- Create COPY objects for old GROUP objects that existed at the point in time Db2 has recovered to.
- Delete COPY objects for GROUP objects that were created since the point in time Db2 has recovered to and so do not exist in the database.
The DELETE of COPY objects is attempted with the NOPURGE option, so it fails for queue managers that still have messages on these COPY queues.
Db2 and the coupling facility fail
If the coupling facility fails, the queue manager might fail, and Db2 will also fail if it is using this coupling facility.
Recover Db2 using Db2 recovery procedures. When Db2 has been restarted, we can restart the queue managers. The CF administration structure will also have failed, but this is rebuilt by restarting all the queue managers within the queue sharing group.
If a single application structure within the coupling facility suffers a failure, the effect on the queue manager depends on the level of the queue manager and the CFLEVEL of the failed CF structure:- If the CF application structure is CFLEVEL(3) or higher and RECOVER is set to YES, it will not be usable until you recover the CF structure by issuing an MQSC RECOVER CFSTRUCT command to the queue manager that will do the recovery. We can specify a single CF structure to be recovered, or we can recover several CF structures simultaneously. The queue manager performing the recovery locates the relevant backups on all the other queue managers' logs using the data in Db2 and the bootstrap data sets. The queue manager replays these backups in the correct time sequence across the queue sharing group, from just before the last backup through to the point of failure. If a recoverable application structure has failed, any further application activity is prevented until the structure has been recovered. If the administration structure has also failed, all the queue managers in the queue sharing group must be started before the RECOVER CFSTRUCT command can be issued. All queue managers can continue working with local queues and queues in other CF structures during recovery of a failed CF structure.
- If the CF application structure is CFLEVEL(3) or higher and RECOVER is set to NO, the structure is automatically reallocated by the next MQOPEN request performed on a queue defined in the structure. All messages are lost, as the structure can only contain non-persistent messages.
- If the CF application structure has a CFLEVEL less than 3, the queue manager fails. On queue manager restart, peer recovery attempts to connect to the structure, detect that the structure has failed and allocate a new version of the structure. All messages on shared queues that were in CF structures affected by the coupling facility failure are lost.
Since IBM WebSphere MQ Version 7.1, queue managers in queue sharing groups have been able to tolerate loss of connectivity to coupling facility structures without failing. If the structure has experienced a connection failure, attempts are made to rebuild the structure in another coupling facility with better connectivity in order to regain access to shared queues as soon as possible.
Parent topic: Example recovery procedures on z/OS