flexrep.configurationTargetGetReplicateCpf( cfg as element(flexrep.configuration), target-id as (Number|String) ) as Boolean
This function returns true
if CFG
replication is enabled for the specified replication target,
otherwise it returns false
.
Parameters | |
---|---|
cfg | The replication configuration. |
target-id | The ID of the replication target. |
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.configurationTargetGetReplicateCpf(cfg, targetId); // Returns True if CPF replication is enabled for the target. Otherwise, // False is returned.