
admin.databaseForeignReplicaGetClusterId( foreign-replica as element(db.foreignReplica) ) as (Number|String)
This function returns the id of the replica cluster from the replica database configuration.
| Parameters | |
|---|---|
| foreign-replica | The foreign replica configuration element. |
let admin = require("/MarkLogic/admin.xqy")
let cfg = admin.getConfiguration()
let freplica = admin.databaseGetForeignReplicas(cfg, xdmp.database("Documents"))
admin.databaseForeignReplicaGetClusterId(fn.head(freplica))
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.