admin:database-get-config-for-foreign-replicas-on-foreign-cluster( $config as element(configuration), $foreign-cluster-id as xs:unsignedLong ) as element(db:database)*
This function returns the replica configuration on a foreign cluster.
Parameters | |
---|---|
config | A configuration specification, typically as returned from one of the Admin module functions. |
foreign-cluster-id | The ID of the foreign cluster containing the replica host. |
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/{id}
xquery version "1.0-ml"; import module namespace admin = "http://marklogic.com/xdmp/admin" at "/MarkLogic/admin.xqy"; let $cfg := admin:get-configuration() let $cid := admin:cluster-get-foreign-cluster-ids($cfg) return admin:database-get-config-for-foreign-replicas-on-foreign-cluster( $cfg, $cid) (: Returns the database replica configuration for the foreign cluster. :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.