admin.foreignClusterGetBootstrapHosts( config as element(configuration), cluster-id as (Number|String) ) as Sequence
This function returns one or more configuration elements that identify the bootstrap hosts on the specified foreign cluster.
Parameters | |
---|---|
config | A configuration specification, typically as returned from one of the Admin module functions. |
cluster-id | The ID of the foreign cluster. |
const admin = require('/MarkLogic/admin.xqy'); const cfg = admin.getConfiguration() const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA") admin.foreignClusterGetBootstrapHosts(cfg, fcl) //Returns configuration information on the bootstrap hosts on the //foreign cluster.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.