Repository: falcon Updated Branches: refs/heads/master 9ae20e025 -> c75f0f446
FALCON-1582 Documentation for globally disabling retries Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/c75f0f44 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/c75f0f44 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/c75f0f44 Branch: refs/heads/master Commit: c75f0f4465d4c3a105fe5e896edf9c7e86f4877e Parents: 9ae20e0 Author: Pallavi Rao <[email protected]> Authored: Tue Nov 3 15:20:12 2015 +0530 Committer: Pallavi Rao <[email protected]> Committed: Tue Nov 3 15:20:12 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ docs/src/site/twiki/Configuration.twiki | 1 + src/conf/runtime.properties | 4 +++- 3 files changed, 6 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/c75f0f44/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 142d7dd..69b01b6 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -14,6 +14,8 @@ Trunk (Unreleased) FALCON-1213 Base framework of the native scheduler(Pallavi Rao) IMPROVEMENTS + FALCON-1582 Documentation for globally disabling retries (Pallavi Rao) + FALCON-1517 Instance Management Api in Falcon Unit (Narayan Periwal via Pallavi Rao) FALCON-1520 Delete, update, Validate entity operations support in Falcon Unit (Pavan Kolamuri via Pallavi Rao) http://git-wip-us.apache.org/repos/asf/falcon/blob/c75f0f44/docs/src/site/twiki/Configuration.twiki ---------------------------------------------------------------------- diff --git a/docs/src/site/twiki/Configuration.twiki b/docs/src/site/twiki/Configuration.twiki index 743ce40..74da49a 100644 --- a/docs/src/site/twiki/Configuration.twiki +++ b/docs/src/site/twiki/Configuration.twiki @@ -99,6 +99,7 @@ Some Falcon features such as late data handling, retries, metadata service, depe * In Falcon runtime.properties, set *.falcon.jms.notification.enabled to false. This will turn off JMS notification in post-processing. * Copy notification related properties in oozie/conf/oozie-site.xml to oozie-site.xml of the Oozie installation. Restart Oozie so changes get reflected. +*NOTE : If you disable Falcon post-processing JMS notification and not enable Oozie JMS notification, features such as failure retry, late data handling and metadata service will be disabled for all entities on the server.* ---+++Adding Extension Libraries Library extensions allows users to add custom libraries to entity lifecycles such as feed retention, feed replication http://git-wip-us.apache.org/repos/asf/falcon/blob/c75f0f44/src/conf/runtime.properties ---------------------------------------------------------------------- diff --git a/src/conf/runtime.properties b/src/conf/runtime.properties index 25333fe..4bc1bc0 100644 --- a/src/conf/runtime.properties +++ b/src/conf/runtime.properties @@ -45,7 +45,9 @@ falcon.current.colo=local *.falcon.skip.dryrun=false # If set to false, the post processing action of Oozie workflows will not generate JMS notification for Falcon. -# If you are setting this to false, ensure you have enable Oozie JMS notifications in oozie-site.xml +# If you are setting this to false, ensure you have enabled Oozie JMS notifications in oozie-site.xml. +# Else, all features such as failure retry, late data handling and metadata service will be disabled for +# all entities on the Falcon server. *.falcon.jms.notification.enabled=true ######### Proxyuser Configuration Start #########
