admin.forestForeignReplicaGetClusterId

admin.forestForeignReplicaGetClusterId(
   foreign-replica as element(as.foreignReplica)
) as (Number|String)

Summary

This function returns the id of the replica cluster from the specified replica forest configuration element. This function must be executed on the master cluster.

Parameters
foreign-replica The element returned by the admin:forest-foreign-replica or admin:forest-get-foreign-replicas function that specifies the configuration for the replica forest.

Example


  let admin = require("/MarkLogic/admin.xqy")
  let cfg = admin.getConfiguration()
  let fmforest = admin.forestGetForeignReplicas(cfg, xdmp.forest("Documents"))
  admin.forestForeignReplicaGetClusterId(fn.head(fmforest))
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy