Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Anchor
top
top
Some scheduled tasks in XperienCentral can be configured to run on a scheduled basis. These configuration settings follow the Unix Cron format. Two different formats are used; one for the Scheduling Services and one for the Search Engine. Determine which format you need and follow the examples in the appropriate section below. For more information, see the Quartz Scheduler documentation. XperienCentral uses Quartz version 1.8.6, therefore the Quartz documentation may describe features that are not available in XperienCentral.

In This Topic

Table of Contents
maxLevel2
minLevel2



Scheduling Services Jobs

The following Quartz format is used for the XperienCentral Scheduling Services:


.------------------- Seconds (0 - 59 [,-*/])
|  .---------------- Minutes (0 - 59 [,-*/])
|  |  .------------- Hours (0 - 23 [,-*/])
|  |  |  .---------- Day of month (1 - 31 [,-*?/LWC])
|  |  |  |  .------- Month (1 - 12 or JAN-DEC [,-*/])
|  |  |  |  |  .---- Day of week (1 - 7 or SUN-SAT [,-*?/LC#])
|  |  |  |  |  |  .- Year (OPTIONAL: empty or 1970-2099 [,-*/])
|  |  |  |  |  |  |
*  *  *  *  *  *  *


Scheduling Service Examples

Below are some examples that demonstrate the use of the Scheduling Services Cron format.


FormatDescription
0 3 1,4,19,21 * * *Schedules a service to run every day at 01:03:00, 04:03:00, 19:03:00 and 21:03:00. 
0 */10 * * * *Schedules a service to run every 10 minutes every day.
0 45 9 1,15 * *Schedules a service to run on the 1st and 15th of every month at 09:45:00
0 0 2 ? * *Schedules a service to run at 02:00 every day.




Search Engine Jobs

The following Cron format is used for the XperienCentral Search Engine. Note that it is not possible to specify seconds or the year:


.---------------- Minutes (0 - 59 [,-*/])
|  .------------- Hours (0 - 23 [,-*/])
|  |  .---------- Day of month (1 - 31 [,-*?/LWC])
|  |  |  .------- Month (1 - 12 or JAN-DEC [,-*/])
|  |  |  |  .---- Day of week (1 - 7 or SUN-SAT [,-*?/LC#])
|  |  |  |  |
*  *  *  *  *



Below are some examples that demonstrate the use of the Search Engine Cron format.



FormatDescription
0 0 * * *Schedules a service to run every day at 00:00. 
30 2 * * *Schedules a service to run at 02:30.
55 * * * *Schedules a service to run at 55 minutes after each hour.


See also Search Engine Configuration.



Back to top