Replicated data queue managers describe a class of IBM MQ high availability: instead of two servers sharing one disk, each server keeps its own copy of queue manager data synchronized through replication. When the primary node fails, a replica promotes and continues the same queue manager name with data that should match what the primary had at the last successful sync. IBM implements this model prominently through RDQM on Linux; Native HA uses related ideas in container platforms. The phrase appears in architecture documents as the alternative to “shared filesystem multi-instance.” Beginners should understand replication versus shared disk, quorum, lag, and active/passive limits before procurement. This tutorial defines replicated data queue managers generically, maps concepts to RDQM, contrasts multi-instance, explains consistency and failover implications, and lists planning questions for network, storage, and operations teams.
| Model | Data copies | Failover action | IBM MQ example |
|---|---|---|---|
| Shared disk | One on SAN/NAS | Standby mounts same path | Multi-instance |
| Replicated data | One per node, synced | Standby uses local replica | RDQM |
Shared disk simplifies consistency—there is only one truth. Replication trades SAN dependency for sync complexity and network load between nodes.
Synchronous replication waits for replica acknowledgment before acknowledging persistent puts to applications—tighter RPO, higher latency. Asynchronous replication is faster but may lose the last milliseconds of writes if the primary vanishes. Architects document acceptable loss with business stakeholders; do not assume zero RPO without measuring lag under peak load.
Replicated data clusters need odd node counts or explicit witnesses so promotion always reflects majority agreement. Losing quorum may block automatic failover to prevent two divergent primaries—operations then follow manual disaster procedures. Three data centers with two replicas and one witness is a common pattern when cost allows.
RDQM packages replicated data queue manager operations for Linux: install RDQM nodes, create replicated queue manager, monitor replication status, fail over with documented commands. Read the RDQM tutorial for product-specific procedures; this page holds the portable concepts for architecture reviews.
123456/* Architecture review questions - How many replicas and where (AZ/rack)? - Sync or async replication default? - Quorum layout if one site lost? - Client reconnect and DNS during promotion? - Backup of replica volumes for corruption cases? */
| Option | Storage | Scale-out | Ops profile |
|---|---|---|---|
| Replicated data (RDQM) | Per-node replica | Hub HA | Linux quorum cluster |
| Multi-instance | Shared | Hub HA | SAN + two VMs |
| Native HA | PVC / cloud | Hub HA in K8s | Operator + platform |
| Cluster | Per QM | Many QMs active | Repository + CLWL |
| QSG | CF + page sets | Sysplex members | z/OS systems prog |
Shared disk is one master document everyone must visit. Replicated data is every office having a copier that automatically updates when the master changes—failover means working from the branch copy when headquarters goes dark.
Every friend has the same storybook copied. When the leader friend stops reading, another friend who has the same page continues— but only if enough friends agree which book is the newest.
Draw shared-disk versus replicated-data diagrams for two-node HA.
Define RPO for async replication when primary datacenter floods.
Match business requirements to RDQM, MIQM, or cluster in a table.
1. Replicated data means:
2. Shared-disk MIQM has:
3. Replication lag affects:
4. RDQM implements: