You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by jh...@apache.org on 2015/12/17 07:02:52 UTC

tajo git commit: TAJO-2025: HBASE_LIB/metrics-core-*.jar should be included in CLASSPATH.

Repository: tajo
Updated Branches:
  refs/heads/master 1515e388a -> d306534e9


TAJO-2025: HBASE_LIB/metrics-core-*.jar should be included in CLASSPATH.

Closes #915

Signed-off-by: Jinho Kim <jh...@apache.org>


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

Branch: refs/heads/master
Commit: d306534e9a5605b5b6cd1c38a670ec4942c82a1a
Parents: 1515e38
Author: Dongkyu Hwangbo <hw...@gmail.com>
Authored: Thu Dec 17 15:01:50 2015 +0900
Committer: Jinho Kim <jh...@apache.org>
Committed: Thu Dec 17 15:01:50 2015 +0900

----------------------------------------------------------------------
 CHANGES                     | 3 +++
 tajo-dist/src/main/bin/tajo | 4 ++++
 2 files changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/d306534e/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 406e56a..8b18949 100644
--- a/CHANGES
+++ b/CHANGES
@@ -61,6 +61,9 @@ Release 0.12.0 - unreleased
 
   BUG FIXES
 
+    TAJO-2025: HBASE_LIB/metrics-core-*.jar should be included in CLASSPATH.
+    (Contributed by Dongkyu Hwangbo, committed by jinho)
+
     TAJO-2016: Fix storage tests hangs. (jinho)
 
     TAJO-2013: FilterPushDownRule fails due to the unsupported index. (jinho)

http://git-wip-us.apache.org/repos/asf/tajo/blob/d306534e/tajo-dist/src/main/bin/tajo
----------------------------------------------------------------------
diff --git a/tajo-dist/src/main/bin/tajo b/tajo-dist/src/main/bin/tajo
index 8dbd760..e6edf14 100755
--- a/tajo-dist/src/main/bin/tajo
+++ b/tajo-dist/src/main/bin/tajo
@@ -260,6 +260,10 @@ if [ ! -z ${HBASE_HOME} ] && [ -d ${HBASE_HOME} ] && [ -d ${HBASE_LIB} ]; then
     CLASSPATH=${CLASSPATH}:$f;
   done
 
+  for f in ${HBASE_LIB}/metrics-core-*.jar; do
+    CLASSPATH=${CLASSPATH}:$f;
+  done
+
 fi
 
 ##############################################################################