admin:forest-foreign-replica-get-cluster-id

admin:forest-foreign-replica-get-cluster-id(
   $foreign-replica as element(as:foreign-replica)
) as xs:unsignedLong

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


  xquery version "1.0-ml";

  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";

  let $cfg := admin:get-configuration()
  let $fmforest := admin:forest-get-foreign-replicas($cfg, xdmp:forest("Documents"))

  return admin:forest-foreign-replica-get-cluster-id($fmforest)

  (: Returns the id for the foreign replica cluster configured for the
     master 'Documents' forest. :)
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy