flexrep.configurationTargetSetRetrySecondsMin( cfg as element(flexrep.configuration), target-id as (Number|String), val as Number ) as element(flexrep.configuration)
This function sets the replication retry minimum value for the specified replication target.
Parameters | |
---|---|
cfg | The replication configuration. |
target-id | The ID of the replication target. |
val | The minimum retry value. |
const flexrep = require('/MarkLogic/flexrep'); declareUpdate(); // 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 config = flexrep.configurationGet(domain, true); const targetId = flexrep.configurationTargetGetId(config, 'Replica'); const cfg = flexrep.configurationTargetSetRetrySecondsMin(config, targetId, 20); flexrep.configurationInsert(cfg); // Sets the minimum retry setting for the "Replica" target to 20.