flexrep.getTargetName

flexrep.getTargetName(
   domain-id as (Number|String),
   target-id as (Number|String)
) as String?

Summary

Get a target's name, or nothing if the domain or target does not exist.

Parameters
domain-id The domain ID.
target-id The target ID.

Example

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')
         });

   const cfg = flexrep.configurationGet(domain, true);
   const targetId = flexrep.configurationTargetGetId(cfg, 'Replica');
   const domainId = flexrep.configurationGetId(cfg);
 
flexrep.getTargetName(domainId, targetId);
   

Required Privileges

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

Powered by MarkLogic Server | Terms of Use | Privacy Policy