Return-Path: X-Original-To: apmail-falcon-commits-archive@minotaur.apache.org Delivered-To: apmail-falcon-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E6C2C18129 for ; Tue, 3 Nov 2015 10:01:15 +0000 (UTC) Received: (qmail 25999 invoked by uid 500); 3 Nov 2015 10:01:15 -0000 Delivered-To: apmail-falcon-commits-archive@falcon.apache.org Received: (qmail 25956 invoked by uid 500); 3 Nov 2015 10:01:15 -0000 Mailing-List: contact commits-help@falcon.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@falcon.apache.org Delivered-To: mailing list commits@falcon.apache.org Received: (qmail 25947 invoked by uid 99); 3 Nov 2015 10:01:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Nov 2015 10:01:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 933EBE0B28; Tue, 3 Nov 2015 10:01:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pallavi@apache.org To: commits@falcon.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: falcon git commit: FALCON-1582 Documentation for globally disabling retries Date: Tue, 3 Nov 2015 10:01:15 +0000 (UTC) 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 Authored: Tue Nov 3 15:13:22 2015 +0530 Committer: Pallavi Rao 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 #########