
flexrep.configurationTargetSetFilterModule( cfg as element(flexrep.configuration), target-id as (Number|String), uri as String ) as element(flexrep.configuration)
This function sets the specified filter for this replication configuration.
| Parameters | |
|---|---|
| cfg | The replication configuration. |
| target-id | The ID of the replication target. |
| uri | The URI for the filter module. |
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.configurationTargetSetFilterModule(config, targetId, 'test.json');
flexrep.configurationInsert(cfg);
// Resets the filter module used by the target to 'test.json.'