Author: rkanter
Date: Wed Oct 9 23:37:24 2013
New Revision: 1530832
URL: http://svn.apache.org/r1530832
Log:
OOZIE-1566 Add reference to Quartz module in cron documentation (bowenzhangusa
via rkanter)
Modified:
oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki
oozie/trunk/release-log.txt
Modified: oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki
URL:
http://svn.apache.org/viewvc/oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki?rev=1530832&r1=1530831&r2=1530832&view=diff
==============================================================================
--- oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki (original)
+++ oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki Wed Oct 9
23:37:24 2013
@@ -519,6 +519,11 @@ will not be created and an invalid coord
NOTES:
+ Cron expression and syntax in Oozie are inspired by
Quartz:http://quartz-scheduler.org/api/2.0.0/org/quartz/CronExpression.html.
+ However, there is a major difference between Quartz cron and Oozie cron in
which Oozie cron doesn't have "Seconds" field
+ since everything in Oozie functions at the minute granularity at most.
Everything related to Oozie cron syntax should be based
+ on the documentation in the Oozie documentation.
+
Cron expression uses oozie server processing timezone. Since default oozie
processing timezone is UTC, if you want to
run a job on every weekday at 10am in Tokyo, Japan(UTC + 9), your cron
expression should be "0 1 * * 2-6" instead of
the "0 10 * * 2-6" which you might expect.
Modified: oozie/trunk/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/trunk/release-log.txt?rev=1530832&r1=1530831&r2=1530832&view=diff
==============================================================================
--- oozie/trunk/release-log.txt (original)
+++ oozie/trunk/release-log.txt Wed Oct 9 23:37:24 2013
@@ -1,5 +1,6 @@
-- Oozie 4.1.0 release (trunk - unreleased)
+OOZIE-1566 Add reference to Quartz module in cron documentation (bowenzhangusa
via rkanter)
OOZIE-1454 Documentation for cron syntax scheduling of coordinator job
(bowenzhangusa via rkanter)
OOZIE-1306 add flexibility to oozie coordinator job scheduling (bowenzhangusa
via rohini)
OOZIE-1526 Oozie does not work with a secure HA JobTracker or ResourceManager
(rkanter)