Loading TOC...

flexrep:configuration-target-set-replicate-cpf

flexrep:configuration-target-set-replicate-cpf(
   $cfg as element(flexrep:configuration),
   $target-id as xs:unsignedLong,
   $val as xs:boolean
) as element(flexrep:configuration)

Summary

This function enables and disables CPF replication.

Parameters
cfg The replication configuration.
target-id The ID of the replication target.
val A value of true enables CPF replication on the target and a value of false disables CPF replication on the target.

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

  return flexrep:configuration-get($domain, fn:true()) 

  (: Returns the current replication configuration. :) 
      

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