Loading TOC...

flexrep:configuration-target

flexrep:configuration-target(
   $cfg as element(flexrep:configuration),
   $target-id as xs:unsignedLong,
   [$assert as xs:boolean]
) as element(flexrep:target)?

Summary

This function returns a specified target for a configuration, or throws an error if it does not exist.

Parameters
cfg The replication configuration.
target-id The target ID.
assert Set to true to throw an exception if the configuration does not exist. The default value is false.

Example

  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")

  return flexrep:configuration-target($cfg, $target-id, fn:true()) 

  (: Returns the configuration for the "Replica" target. :)
      

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.