Loading TOC...

admin.databaseForeignReplicaGetLagLimit

admin.databaseForeignReplicaGetLagLimit(
   foreign-replica as element(db.foreignReplica)
) as Number

Summary

This function returns the lag limit value from the replica database configuration.

Parameters
foreign-replica The configuration element for the foreign replica database.

Example


  let admin = require("/MarkLogic/admin.xqy")
  let cfg = admin.getConfiguration()
  let freplica = admin.databaseGetForeignReplicas(cfg, xdmp.database("Documents"))
  admin.databaseForeignReplicaGetLagLimit(fn.head(freplica))
    

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