flexrep.configurationTargetGetDocumentsPerBatch

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

Summary

This function returns the value of the documents-per-batch setting for the replication 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')
         });

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

  flexrep.configurationTargetGetDocumentsPerBatch(cfg, targetId);
 
  // Returns the number of replicated documents set to be sent in each batch.
   
Powered by MarkLogic Server | Terms of Use | Privacy Policy