You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tajo.apache.org by bl...@apache.org on 2014/09/27 09:08:53 UTC

git commit: TAJO-1061: Update build documentation. (jaehwa)

Repository: tajo
Updated Branches:
  refs/heads/master d384cf00d -> 52e554390


TAJO-1061: Update build documentation. (jaehwa)

Closes #157


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

Branch: refs/heads/master
Commit: 52e554390fa2b953304ee38006d74beac488f5c0
Parents: d384cf0
Author: Jaehwa Jung <bl...@apache.org>
Authored: Sat Sep 27 16:07:08 2014 +0900
Committer: Jaehwa Jung <bl...@apache.org>
Committed: Sat Sep 27 16:08:11 2014 +0900

----------------------------------------------------------------------
 CHANGES                                                |  2 ++
 tajo-docs/src/main/sphinx/getting_started/building.rst | 10 +++++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/52e55439/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 59c3ba9..d18085a 100644
--- a/CHANGES
+++ b/CHANGES
@@ -469,6 +469,8 @@ Release 0.9.0 - unreleased
 
   SUB TASKS
 
+    TAJO-1061: TAJO-1061: Update build documentation. (jaehwa)
+
     TAJO-1060: Apply updated hadoop versions to README and BUILDING files.
     (jinho)
 

http://git-wip-us.apache.org/repos/asf/tajo/blob/52e55439/tajo-docs/src/main/sphinx/getting_started/building.rst
----------------------------------------------------------------------
diff --git a/tajo-docs/src/main/sphinx/getting_started/building.rst b/tajo-docs/src/main/sphinx/getting_started/building.rst
index 1d9fdee..a538397 100644
--- a/tajo-docs/src/main/sphinx/getting_started/building.rst
+++ b/tajo-docs/src/main/sphinx/getting_started/building.rst
@@ -11,9 +11,17 @@ You can compile source code and get a binary archive as follows:
 .. code-block:: bash
 
   $ cd tajo-x.y.z
-  $ mvn clean install -DskipTests -Pdist -Dtar
+  $ mvn clean install -DskipTests -Pdist -Dtar -Dhadoop.version=2.X.X
   $ ls tajo-dist/target/tajo-x.y.z-SNAPSHOT.tar.gz
 
+.. note::
+
+  If you don't specify the hadoop version, tajo cluster may not run correctly. Thus, we highly recommend that you specify your hadoop version with maven build command.
+
+  Example:
+
+    $ mvn clean install -DskipTests -Pdist -Dtar -Dhadoop.version=2.5.1
+
 Then, after you move some proper directory, discompress the tar.gz file as follows:
 
 .. code-block:: bash