Author: mona
Date: Wed Jul 3 21:50:59 2013
New Revision: 1499571
URL: http://svn.apache.org/r1499571
Log:
Added changelog entry for changes in functional spec twikis
Modified:
oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki
oozie/trunk/docs/src/site/twiki/WorkflowFunctionalSpec.twiki
Modified: oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki
URL:
http://svn.apache.org/viewvc/oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki?rev=1499571&r1=1499570&r2=1499571&view=diff
==============================================================================
--- oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki (original)
+++ oozie/trunk/docs/src/site/twiki/CoordinatorFunctionalSpec.twiki Wed Jul 3
21:50:59 2013
@@ -11,66 +11,55 @@ The goal of this document is to define a
%TOC%
---++ Changelog
+---+++!! 03/JUL/2013
+ * #Appendix A, Added new coordinator schema 0.4 and changed schemas
ordering to newest first
---+++!! 07/JAN/2013
* #6.8 Added section on new EL functions for datasets defined with HCatalog
-
---+++!! 26/JUL/2012
* #Appendix A, updated XML schema 0.4 to include =parameters= element
* #6.5 Updated to mention about =parameters= element as of schema 0.4
-
---+++!! 23/NOV/2011:
* Update execution order typo
-
---+++!! 05/MAY/2011:
* Update coordinator schema 0.2
-
---+++!! 09/MAR/2011:
* Update coordinator status
-
---+++!! 02/DEC/2010:
* Update coordinator done-flag
-
---+++!! 26/AUG/2010:
* Update coordinator rerun
-
---+++!! 09/JUN/2010:
* Clean up unsupported functions
-
---+++!! 02/JUN/2010:
* Update all EL functions in CoordFunctionSpec with "coord:" prefix
-
---+++!! 02/OCT/2009:
* Added Appendix A, Oozie Coordinator XML-Schema
* Change #5.3., Datasets definition supports 'include' element
-
---+++!! 29/SEP/2009:
* Change #4.4.1, added =${coord:endOfDays(int n)}= EL function
* Change #4.4.2, added =${coord:endOfMonths(int n)}= EL function
-
---+++!! 11/SEP/2009:
* Change #6.6.4. =${coord:tzOffset()}= EL function now returns offset in
minutes. Added more explanation on behavior
* Removed 'oozie' URL from action workflow invocation, per arch review
feedback coord&wf run on the same instance
-
---+++!! 07/SEP/2009:
* Full rewrite of sections #4 and #7
* Added sections #6.1.7, #6.6.2, #6.6.3 & #6.6.4
* Rewording through the spec definitions
* Updated all examples and syntax to latest changes
-
---+++!! 03/SEP/2009:
* Change #2. Definitions. Some rewording in the definitions
@@ -3235,6 +3224,7 @@ the notification:
</xs:simpleType>
<xs:complexType name="COORDINATOR-APP">
<xs:sequence>
+ <xs:element name="parameters" type="coordinator:PARAMETERS"
minOccurs="0" maxOccurs="1"/>
<xs:element name="controls" type="coordinator:CONTROLS"
minOccurs="0" maxOccurs="1"/>
<xs:element name="datasets" type="coordinator:DATASETS"
minOccurs="0" maxOccurs="1"/>
<xs:element name="input-events" type="coordinator:INPUTEVENTS"
minOccurs="0" maxOccurs="1"/>
@@ -3357,11 +3347,25 @@ the notification:
<xs:attribute name="end" type="xs:string" use="required"/>
<xs:attribute name="timezone" type="xs:string" use="required"/>
</xs:complexType>
+ <xs:complexType name="PARAMETERS">
+ <xs:sequence>
+ <xs:element name="property" minOccurs="1" maxOccurs="unbounded">
+ <xs:complexType>
+ <xs:sequence>
+ <xs:element name="name" minOccurs="1" maxOccurs="1"
type="xs:string"/>
+ <xs:element name="value" minOccurs="0" maxOccurs="1"
type="xs:string"/>
+ <xs:element name="description" minOccurs="0"
maxOccurs="1" type="xs:string"/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:element>
+ </xs:sequence>
+ </xs:complexType>
<xs:complexType name="CONTROLS">
<xs:sequence minOccurs="0" maxOccurs="1">
<xs:element name="timeout" type="xs:string" minOccurs="0"
maxOccurs="1"/>
<xs:element name="concurrency" type="xs:string" minOccurs="0"
maxOccurs="1"/>
<xs:element name="execution" type="xs:string" minOccurs="0"
maxOccurs="1"/>
+ <xs:element name="throttle" type="xs:string" minOccurs="0"
maxOccurs="1"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="DATASETS">
Modified: oozie/trunk/docs/src/site/twiki/WorkflowFunctionalSpec.twiki
URL:
http://svn.apache.org/viewvc/oozie/trunk/docs/src/site/twiki/WorkflowFunctionalSpec.twiki?rev=1499571&r1=1499570&r2=1499571&view=diff
==============================================================================
--- oozie/trunk/docs/src/site/twiki/WorkflowFunctionalSpec.twiki (original)
+++ oozie/trunk/docs/src/site/twiki/WorkflowFunctionalSpec.twiki Wed Jul 3
21:50:59 2013
@@ -14,6 +14,9 @@ Map/Reduce and Pig jobs.
%TOC%
---++ Changelog
+---+++!! 2013JUL03
+
+ * #Appendix A, Added new workflow schema 0.5 and SLA schema 0.2
---+++!! 2012AUG30
* #4.2.2 Added two EL functions (replaceAll and appendAll)