
admin:forest-hourly-backup( $backup-dir as xs:string, $backup-period as xs:positiveInteger, $start-minute as xs:nonNegativeInteger ) as element(as:forest-backup)
This function constructs a hourly scheduled forest backup specification.
  xquery version "1.0-ml";
  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";
  let $config := admin:get-configuration()
  return
    admin:forest-hourly-backup("/backup-dir", 2, 30)
  (: returns the hourly forest backup specification. For example, if the
     current time is 2:15pm, the backup will run at 4:30pm, 6:30pm, 8:30pm,
     and so on. :)
   
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.