FALCON-456 Custom DistCp conflict with core DistCp in container classpath fails falcon workflows. Contributed by Venkatesh Seetharam
Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/91704c6a Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/91704c6a Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/91704c6a Branch: refs/heads/master Commit: 91704c6aed86bdc8e5f2dc7981d69ade75048973 Parents: 5ac7544 Author: Venkatesh Seetharam <[email protected]> Authored: Fri May 30 21:40:18 2014 -0700 Committer: Venkatesh Seetharam <[email protected]> Committed: Fri May 30 21:40:18 2014 -0700 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ .../main/resources/config/workflow/replication-workflow.xml | 8 ++++++++ 2 files changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/91704c6a/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index d851109..075744a 100755 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -16,6 +16,9 @@ Trunk (Unreleased) OPTIMIZATIONS BUG FIXES + FALCON-456 Custom DistCp conflict with core DistCp in container classpath + fails falcon workflows (Venkatesh Seetharam) + FALCON-446 Hive Replications fail because of permissions issue (Venkatesh Seetharam) http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/91704c6a/feed/src/main/resources/config/workflow/replication-workflow.xml ---------------------------------------------------------------------- diff --git a/feed/src/main/resources/config/workflow/replication-workflow.xml b/feed/src/main/resources/config/workflow/replication-workflow.xml index a7acfe1..0748acf 100644 --- a/feed/src/main/resources/config/workflow/replication-workflow.xml +++ b/feed/src/main/resources/config/workflow/replication-workflow.xml @@ -100,6 +100,14 @@ <job-tracker>${jobTracker}</job-tracker> <name-node>${nameNode}</name-node> <configuration> + <property> <!-- hadoop 2 parameter --> + <name>oozie.launcher.mapreduce.job.user.classpath.first</name> + <value>true</value> + </property> + <property> <!-- hadoop 1 parameter --> + <name>oozie.launcher.mapreduce.user.classpath.first</name> + <value>true</value> + </property> <property> <name>mapred.job.queue.name</name> <value>${queueName}</value>
