Loading TOC...

admin.databaseOneTimeMergeBlackout

admin.databaseOneTimeMergeBlackout(
   limit as Number,
   merge-priority as String,
   start as Date,
   end as Date?,
   duration as xs.duration?
) as element(db.mergeBlackout)

Summary

This function constructs a one-time merge-blackout specification.

Parameters
limit The maximum number of megabytes for a merge.
merge-priority The CPU scheduler priority for merges. Must be one of normal or lower.
start The starting dateTime of the merge blackout.
end The ending dateTime of the merge blackout.
duration The amount of time for the blackout to last.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  admin.databaseOneTimeMergeBlackout(500, "lower",
        xs.dateTime("2008-02-14T09:45:00"),
	null, xs.dayTimeDuration("PT3H") )

   //returns the oneTime mergeBlackout specification.
   //Use admin.saveConfiguration to save these changes. 
  

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