Return-Path: X-Original-To: apmail-tajo-commits-archive@minotaur.apache.org Delivered-To: apmail-tajo-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 169D217662 for ; Sat, 27 Sep 2014 07:08:54 +0000 (UTC) Received: (qmail 45399 invoked by uid 500); 27 Sep 2014 07:08:53 -0000 Delivered-To: apmail-tajo-commits-archive@tajo.apache.org Received: (qmail 45364 invoked by uid 500); 27 Sep 2014 07:08:53 -0000 Mailing-List: contact commits-help@tajo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tajo.apache.org Delivered-To: mailing list commits@tajo.apache.org Received: (qmail 45355 invoked by uid 99); 27 Sep 2014 07:08:53 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 27 Sep 2014 07:08:53 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 3CACB9B6D8F; Sat, 27 Sep 2014 07:08:53 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: blrunner@apache.org To: commits@tajo.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: TAJO-1061: Update build documentation. (jaehwa) Date: Sat, 27 Sep 2014 07:08:53 +0000 (UTC) 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 Authored: Sat Sep 27 16:07:08 2014 +0900 Committer: Jaehwa Jung 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