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 5D16E17DFA for ; Thu, 16 Apr 2015 15:59:58 +0000 (UTC) Received: (qmail 23586 invoked by uid 500); 16 Apr 2015 15:59:58 -0000 Delivered-To: apmail-falcon-commits-archive@falcon.apache.org Received: (qmail 23488 invoked by uid 500); 16 Apr 2015 15:59:58 -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 23469 invoked by uid 99); 16 Apr 2015 15:59:58 -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; Thu, 16 Apr 2015 15:59:58 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 228C4E09FB; Thu, 16 Apr 2015 15:59:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: suhasv@apache.org To: commits@falcon.apache.org Date: Thu, 16 Apr 2015 15:59:59 -0000 Message-Id: <305a1f1805cd4a4ab72c78a7cbfdb12d@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] falcon git commit: FALCON-1154 Replication is broken. Contributed by Sowmya Ramesh FALCON-1154 Replication is broken. Contributed by Sowmya Ramesh Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/71cfc47b Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/71cfc47b Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/71cfc47b Branch: refs/heads/master Commit: 71cfc47b8ee6e9cfd8794c09748abbde44f8fd70 Parents: 0a38955 Author: Suhas Vasu Authored: Thu Apr 16 21:29:33 2015 +0530 Committer: Suhas Vasu Committed: Thu Apr 16 21:29:33 2015 +0530 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ .../src/main/resources/hdfs-replication-workflow.xml | 4 ++++ oozie/src/main/resources/action/feed/eviction-action.xml | 4 ++++ oozie/src/main/resources/action/feed/replication-action.xml | 4 ++++ oozie/src/main/resources/action/pre-process.xml | 4 ++++ 5 files changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/71cfc47b/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index b64cecb..859bad0 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -161,6 +161,8 @@ Branch: 0.6.1 (Proposed Release Version: 0.6.1) (Suhas vasu) BUG FIXES + FALCON-1154 Replication is broken (Sowmya Ramesh via Suhas Vasu) + FALCON-1159 Falcon build is broken (Suhas Vasu) FALCON-1146 feed retention policy deleted everything all the way up http://git-wip-us.apache.org/repos/asf/falcon/blob/71cfc47b/addons/recipes/hdfs-replication/src/main/resources/hdfs-replication-workflow.xml ---------------------------------------------------------------------- diff --git a/addons/recipes/hdfs-replication/src/main/resources/hdfs-replication-workflow.xml b/addons/recipes/hdfs-replication/src/main/resources/hdfs-replication-workflow.xml index 4ef8fc7..145d489 100644 --- a/addons/recipes/hdfs-replication/src/main/resources/hdfs-replication-workflow.xml +++ b/addons/recipes/hdfs-replication/src/main/resources/hdfs-replication-workflow.xml @@ -43,6 +43,10 @@ oozie.action.sharelib.for.java distcp + + oozie.launcher.oozie.libpath + ${wf:conf("falcon.libpath")} + org.apache.falcon.replication.FeedReplicator -Dmapred.job.queue.name=${queueName} http://git-wip-us.apache.org/repos/asf/falcon/blob/71cfc47b/oozie/src/main/resources/action/feed/eviction-action.xml ---------------------------------------------------------------------- diff --git a/oozie/src/main/resources/action/feed/eviction-action.xml b/oozie/src/main/resources/action/feed/eviction-action.xml index 64d5793..4ab67d2 100644 --- a/oozie/src/main/resources/action/feed/eviction-action.xml +++ b/oozie/src/main/resources/action/feed/eviction-action.xml @@ -33,6 +33,10 @@ oozie.action.sharelib.for.java hcatalog + + oozie.launcher.oozie.libpath + ${wf:conf("falcon.libpath")} + org.apache.falcon.retention.FeedEvictor -feedBasePath http://git-wip-us.apache.org/repos/asf/falcon/blob/71cfc47b/oozie/src/main/resources/action/feed/replication-action.xml ---------------------------------------------------------------------- diff --git a/oozie/src/main/resources/action/feed/replication-action.xml b/oozie/src/main/resources/action/feed/replication-action.xml index beedd57..ff8f4f3 100644 --- a/oozie/src/main/resources/action/feed/replication-action.xml +++ b/oozie/src/main/resources/action/feed/replication-action.xml @@ -37,6 +37,10 @@ oozie.action.sharelib.for.java distcp + + oozie.launcher.oozie.libpath + ${wf:conf("falcon.libpath")} + org.apache.falcon.replication.FeedReplicator -Dfalcon.include.path=${sourceRelativePaths} http://git-wip-us.apache.org/repos/asf/falcon/blob/71cfc47b/oozie/src/main/resources/action/pre-process.xml ---------------------------------------------------------------------- diff --git a/oozie/src/main/resources/action/pre-process.xml b/oozie/src/main/resources/action/pre-process.xml index 50306e5..fc4125c 100644 --- a/oozie/src/main/resources/action/pre-process.xml +++ b/oozie/src/main/resources/action/pre-process.xml @@ -33,6 +33,10 @@ oozie.action.sharelib.for.java hcatalog + + oozie.launcher.oozie.libpath + ${wf:conf("falcon.libpath")} + org.apache.falcon.workflow.LateDataHandler -out