
admin.clusterGetForeignMasterDatabase( config as element(configuration), foreign-cluster-id as (Number|String), database-ids as (Number|String)[] ) as Sequence
This function is executed on a replica cluster to return the replication configuration for the specified local database from the specified foreign master cluster.
xquery version "1.0-ml";
import module namespace admin = "http://marklogic.com/xdmp/admin"
at "/MarkLogic/admin.xqy";
let $cfg := admin:get-configuration()
let $dbid := admin:database-get-id($cfg, "Documents")
let $cid := admin:cluster-get-foreign-cluster-ids($cfg)
return admin:cluster-get-foreign-master-database($cfg, $cid, $dbid)
(: Returns the database replication configuration for the Documents
database on the master cluster. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.