
flexrep:configuration-target-set-urls( $cfg as element(flexrep:configuration), $target-id as xs:unsignedLong, $urls as xs:string* ) as element(flexrep:configuration)
This function sets the URLs for the specified replication target.
| Parameters | |
|---|---|
| cfg | The replication configuration. |
| target-id | The ID of the replication target. |
| urls | One or more URLs for the Replica App Servers. |
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( "Default Master" )//dom:domain-id)',
(),
<options xmlns="xdmp:eval">
<database>{xdmp:database("Triggers")}</database>
</options>)
let $cfg := flexrep:configuration-get($domain, fn:true())
let $target-id := flexrep:configuration-target-get-id($cfg, "Replica")
let $cfg := flexrep:configuration-target-set-urls(
$cfg,
$target-id,
"http://server134:8005/")
return flexrep:configuration-insert($cfg)
(: Sets the target URL for the "Replica" target to "http://server134:8005/". :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.