How to find the other HA pair when the Backup is running as Primary?

I am trying to find a way to determine the HA pair of an application.

It is easier when the Original Primary is running in the Primary mode, one can simply construct the “CfgApplicationQuery” to read the application related config object.

However, things are not so trivial (at least to me) when the original Backup app is running as Primary. Any idea how to find the Backup app (original primary) in that case?

Thanks in advance!

Cheers

You might be able to do this with an XPath query.. you can do some quite complex queries with XPath.. if I find time and work it out I’ll update this post

Yep you can do it with XPath

Assume the backup application DBID is 417, the below code will give you the primary for that backup.


RequestReadObjects2.create(CfgObjectType.CFGApplication.ordinal, "CfgServer[backupServerDBID/DBID=417]")

Check if the filter backup_server_dbid works for you:
https://docs.genesys.com/Documentation/PSDK/latest/ConfigLayerRef/CfgApplication

Actually that’s a much better way and it’s available natively to CfgApplicationQuery


val query = new CfgApplicationQuery();
query.setBackupServerDbid(417);
service.retrieveObject(classOf[CfgApplication], query);

(code is Scala, but same thing applies to Java/.NET)

Thank you so much @jamesmurphyau and @hsujdik !

My sincere apologies for responding so..so late. I been pulled into a different project.

The “backup_server_dbid” filter along with the setBackupServerDbid() method did it for us.

Thanks again!

cheers,