Loading TOC...

flexrep.configurationTargetGetName

flexrep.configurationTargetGetName(
   cfg as element(flexrep.configuration),
   target-id as (Number|String)
) as String

Summary

This function returns the name of the specified target.

Parameters
cfg The replication configuration.
target-id The ID of the replication target.

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

  let cfg = flexrep.configurationGet(domain, true);
  let targetId = flexrep.configurationTargetGetId(cfg, 'Replica');
 
  flexrep.configurationTargetGetName(cfg, targetId);
 
  // Returns the name of the specified target.
   

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