flexrep.configurationGet

flexrep.configurationGet(
   domain-id as (Number|String),
   [assert as Boolean]
) as element(flexrep.configuration)?

Summary

This function gets the replication configuration for a CPF domain.

Parameters
domain-id The ID of the replicated domain.
assert Set to true to throw an exception if the configuration does not exist. The default value is false.

Example

 // This query must be executed on the Master database.
  const flexrep = require('/MarkLogic/flexrep');

  // Obtain the domain ID from the database used by the Master to enable CPF.
  const domain = xdmp.eval(
    'const dom = require("/MarkLogic/cpf/domains");' +
      'fn.data(dom.get("Default Master").xpath("//dom:domain-id"));',
       null,
         {
          'database' : xdmp.database('Triggers')
         });

  flexrep.configurationGet(domain, true); 
 
  // Returns the replication configuration element for the "Replicated Content"
  // domain.
   

Required Privileges

http://marklogic.com/xdmp/privileges/flexrep-admin

Powered by MarkLogic Server | Terms of Use | Privacy Policy