Loading TOC...

admin.foreignClusterGetXdqpTimeout

admin.foreignClusterGetXdqpTimeout(
   config as element(configuration),
   cluster-id as (Number|String)
) as Number

Summary

This function returns the timeout setting (in seconds) for XDQP communication between data nodes and evaluator nodes in the domestic cluster and their counterparts in the 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.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  var cfg = admin.getConfiguration()
  var fcl = admin.clusterGetForeignClusterId(cfg, "ClusterA")
  admin.foreignClusterGetXdqpTimeout(cfg, fcl)

   //Returns the XDQP timeout setting for the foreign cluster. 
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.