
admin.forestAddForeignReplicas( config as element(configuration), forest-id as (Number|String), foreign-replicas as element(as.foreignReplica)[] ) as element(configuration)
This function adds the replica forest that is associated with the specified master forest to the database replication configuration. This function must be executed on the master host.
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/{id}
http://marklogic.com/xdmp/privileges/admin/database/replication
http://marklogic.com/xdmp/privileges/admin/database/replication/{id}
const admin = require('/MarkLogic/admin.xqy');
var cfg = admin.getConfiguration()
var fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
var fdb = admin.databaseForeignReplicaGetDatabaseId(
admin.databaseGetForeignReplicas(cfg, xdmp.database("Documents")))
var mforest = xdmp.forest("Documents2")
var fforest = admin.forestForeignReplica(fcl, fdb , 2863600501631949400)
admin.forestAddForeignReplicas(cfg, mforest, fforest)
//Adds the foreign forest, 'Document2', to the forests used by the replica database,
//'Documents'.//Use admin.saveConfiguration to save the changes to the configuration
//or pass the configuration to other Admin API functions to make other changes.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.