You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by ve...@apache.org on 2014/05/02 22:55:04 UTC

[1/2] git commit: FALCON-425 src/bin/package.sh is broken for hadoop 2.* versions. Contributed by Sowmya Ramesh

Repository: incubator-falcon
Updated Branches:
  refs/heads/master f25e6c916 -> 49c0df4bc


FALCON-425 src/bin/package.sh is broken for hadoop 2.* versions. Contributed by Sowmya Ramesh


Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/dc0958c2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/dc0958c2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/dc0958c2

Branch: refs/heads/master
Commit: dc0958c28799d87a3806ba0da16aaec9d1406808
Parents: f25e6c9
Author: Venkatesh Seetharam <ve...@apache.org>
Authored: Fri May 2 13:51:20 2014 -0700
Committer: Venkatesh Seetharam <ve...@apache.org>
Committed: Fri May 2 13:51:20 2014 -0700

----------------------------------------------------------------------
 CHANGES.txt        | 3 +++
 src/bin/package.sh | 6 ++++--
 2 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/dc0958c2/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index dbb7455..4bccd1f 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -28,6 +28,9 @@ Trunk (Unreleased)
     Venkatesh Seetharam)
    
   IMPROVEMENTS
+    FALCON-425 src/bin/package.sh is broken for hadoop 2.* versions
+    (Sowmya Ramesh via Venkatesh Seetharam)
+
     FALCON-421 Upgrade Hadoop to 2.4.0 (Sowmya Ramesh via Venkatesh Seetharam)
 
     FALCON-386 Upgrade to oozie 4.0.1. (Sowmya Ramesh via Venkatesh Seetharam)

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/dc0958c2/src/bin/package.sh
----------------------------------------------------------------------
diff --git a/src/bin/package.sh b/src/bin/package.sh
index 3a8ebee..9aff1c7 100755
--- a/src/bin/package.sh
+++ b/src/bin/package.sh
@@ -46,9 +46,11 @@ FALCON_SRC=${BASEDIR}/../..
 HADOOP_VERSION=$1
 OOZIE_VERSION=$2
 
+HADOOP_PROFILE="hadoop-""$(echo ${HADOOP_VERSION} | cut -d'.' -f 1)"
+
 pushd ${FALCON_SRC}
 echo "Builing oozie-el-extension and oozie"
-mvn clean install -pl build-tools,hadoop-dependencies,oozie-el-extensions -am -Dhadoop.version=$HADOOP_VERSION -Doozie.version=$OOZIE_VERSION -Doozie.forcebuild=true -DskipTests
+mvn clean install -P $HADOOP_PROFILE -pl build-tools,hadoop-dependencies,oozie-el-extensions -am -Dhadoop.version=$HADOOP_VERSION -Doozie.version=$OOZIE_VERSION -Doozie.forcebuild=true -DskipTests
 pushd target/oozie-$OOZIE_VERSION
 bin/mkdistro.sh -DskipTests
 pushd distro/target/oozie-*
@@ -61,7 +63,7 @@ tar -zcvf ${FALCON_SRC}/target/oozie-$OOZIE_VERSION-distro.tar.gz oozie-*
 
 popd
 popd
-mvn assembly:assembly -Dhadoop.version=$HADOOP_VERSION -Doozie.version=$OOZIE_VERSION -Doozie.forcebuild=true -DskipTests -DskipCheck=true
+mvn assembly:assembly -P $HADOOP_PROFILE -Dhadoop.version=$HADOOP_VERSION -Doozie.version=$OOZIE_VERSION -Doozie.forcebuild=true -DskipTests -DskipCheck=true
 
 echo "Falcon pacakge is available in ${FALCON_SRC}/target/falcon-<<version>>-bin.tar.gz"
 echo "Oozie pacakge is available in ${FALCON_SRC}/target/oozie-$OOZIE_VERSION-distro.tar.gz"


[2/2] git commit: FALCON-427 Update default falcon endpoint URL in runtime.properties for prism setup to work out of box. Contributed by Satish Mittal

Posted by ve...@apache.org.
FALCON-427 Update default falcon endpoint URL in runtime.properties for prism setup to work out of box. Contributed by Satish Mittal


Project: http://git-wip-us.apache.org/repos/asf/incubator-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-falcon/commit/49c0df4b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-falcon/tree/49c0df4b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-falcon/diff/49c0df4b

Branch: refs/heads/master
Commit: 49c0df4bc12c4bbe4c9c86991f06ac641213f102
Parents: dc0958c
Author: Venkatesh Seetharam <ve...@apache.org>
Authored: Fri May 2 13:52:43 2014 -0700
Committer: Venkatesh Seetharam <ve...@apache.org>
Committed: Fri May 2 13:52:43 2014 -0700

----------------------------------------------------------------------
 CHANGES.txt                 | 11 +++++++----
 src/conf/runtime.properties |  2 +-
 2 files changed, 8 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/49c0df4b/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 4bccd1f..5435b1d 100755
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -28,9 +28,6 @@ Trunk (Unreleased)
     Venkatesh Seetharam)
    
   IMPROVEMENTS
-    FALCON-425 src/bin/package.sh is broken for hadoop 2.* versions
-    (Sowmya Ramesh via Venkatesh Seetharam)
-
     FALCON-421 Upgrade Hadoop to 2.4.0 (Sowmya Ramesh via Venkatesh Seetharam)
 
     FALCON-386 Upgrade to oozie 4.0.1. (Sowmya Ramesh via Venkatesh Seetharam)
@@ -125,7 +122,13 @@ Trunk (Unreleased)
     FALCON-123 Improve build speeds in falcon. (Srikanth Sundarrajan via Shwetha GS)
 
   BUG FIXES
-    FALCON-426 Prism unable to connect to falcon server if falcon endpoint URL ends with 
+    FALCON-427 Update default falcon endpoint URL in runtime.properties for
+    prism setup to work out of box (Satish Mittal via Venkatesh Seetharam)
+
+    FALCON-425 src/bin/package.sh is broken for hadoop 2.* versions
+    (Sowmya Ramesh via Venkatesh Seetharam)
+
+    FALCON-426 Prism unable to connect to falcon server if falcon endpoint URL ends with
     '/' character. (Satish Mittal via Shwetha GS)
 
     FALCON-401 replicate hcat table to two targets can fail with export dir

http://git-wip-us.apache.org/repos/asf/incubator-falcon/blob/49c0df4b/src/conf/runtime.properties
----------------------------------------------------------------------
diff --git a/src/conf/runtime.properties b/src/conf/runtime.properties
index 608aa46..89e871d 100644
--- a/src/conf/runtime.properties
+++ b/src/conf/runtime.properties
@@ -30,7 +30,7 @@
 #### To configure falcon servers with prism ####
 #prism should have the following properties
 prism.all.colos=local
-prism.falcon.local.endpoint=http://localhost:16000/
+prism.falcon.local.endpoint=https://localhost:15443
 #falcon server should have the following properties
 falcon.current.colo=local