
flexrep:target-status( $domain-id as xs:unsignedLong, $target-ids as xs:unsignedLong* ) as element(flexrep:target-status)*
This function returns the replication status for the specified targets within the specified replicated domain.
| Parameters | |
|---|---|
| domain-id | The ID of the replicated domain. |
| target-ids | The IDs of the replication targets. |
xquery version "1.0-ml";
import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication"
at "/MarkLogic/flexrep.xqy";
(: Obtain the domain ID from the database used by the Master to enable CPF. :)
let $domain := xdmp:eval(
'xquery version "1.0-ml";
import module namespace dom = "http://marklogic.com/cpf/domains"
at "/MarkLogic/cpf/domains.xqy";
fn:data(dom:get( "Replicated Content" )//dom:domain-id)',
(),
<options xmlns="xdmp:eval">
<database>{xdmp:database("MyTriggers")}</database>
</options>)
let $cfg := flexrep:configuration-get($domain, fn:true())
let $target-id := flexrep:configuration-target-get-id($cfg, "Replica")
return flexrep:target-status($domain, $target-id)
(: Returns the status of the specified target. :)
http://marklogic.com/xdmp/privileges/flexrep-user
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.