admin.foreignClusterSetXdqpTimeout( config as element(configuration), cluster-id as (Number|String), xdqp-timeout as Number ) as element(configuration)
This function sets the timeout (in seconds) for XDQP communication between data nodes and evaluator nodes in the domestic cluster and their counterparts in the foreign cluster. By default, the XDQP timeout setting is 10 seconds.
Parameters | |
---|---|
config | A configuration specification, typically as returned from one of the Admin module functions. |
cluster-id | The ID of the foreign cluster. |
xdqp-timeout | The timeout setting (in seconds). |
http://marklogic.com/xdmp/privileges/admin/cluster
const admin = require('/MarkLogic/admin.xqy'); const cfg = admin.getConfiguration() const fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA") admin.foreignClusterSetXdqpTimeout(cfg, fcl, 20) //Sets the XDQP timeout setting for the foreign cluster to 20 seconds. Use //admin.saveConfiguration to save the changes to the configuration or pass //the configuration to other Admin API functions to make other changes.