flexrep.configurationTargetSetRetrySecondsMax( cfg as element(flexrep.configuration), target-id as (Number|String), val as Number ) as element(flexrep.configuration)
This function sets the replication retry maximum value for the specified replication target.
Parameters | |
---|---|
cfg | The replication configuration. |
target-id | The ID of the replication target. |
val | The maximum 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'); let cfg = flexrep.configurationTargetSetRetrySecondsMax(config, targetId, 200); flexrep.configurationInsert(cfg); // Sets the minimum retry setting for the 'Replica' target to 200.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.