Repository: falcon Updated Branches: refs/heads/0.8 f68f7e20d -> 75f7a93a1
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/75f7a93a Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/75f7a93a Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/75f7a93a Branch: refs/heads/0.8 Commit: 75f7a93a13ba55746d64f8516a1f13abf367308a Parents: f68f7e2 Author: Pallavi Rao <[email protected]> Authored: Tue Nov 3 15:13:22 2015 +0530 Committer: Pallavi Rao <[email protected]> Committed: Tue Nov 3 15:13:22 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/75f7a93a/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 4e1593f..619270c 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -27,6 +27,8 @@ Release version: 0.8 FALCON-1027 Falcon proxy user support(Sowmya Ramesh) IMPROVEMENTS + FALCON-1582 Documentation for globally disabling retries (Pallavi Rao) + FALCON-1574 Document behavior of lifecycle retention stage frequency behavior(Sowmya Ramesh via Ajay Yadava). FALCON-1564 Provide an option for users to disable system post-processing JMS notification (Pallavi Rao) http://git-wip-us.apache.org/repos/asf/falcon/blob/75f7a93a/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/75f7a93a/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 #########
