Repository: hadoop Updated Branches: refs/heads/trunk bd166f0ee -> 25e82b4eb
HADOOP-12575. Add build instruction for docker toolbox instead of boot2docker. Contributed by Kai Sasaki. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/25e82b4e Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/25e82b4e Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/25e82b4e Branch: refs/heads/trunk Commit: 25e82b4eb92262d56e543621cd7db6c0bf218690 Parents: bd166f0 Author: Tsuyoshi Ozawa <oz...@apache.org> Authored: Thu Nov 19 17:44:10 2015 +0900 Committer: Tsuyoshi Ozawa <oz...@apache.org> Committed: Thu Nov 19 17:44:10 2015 +0900 ---------------------------------------------------------------------- BUILDING.txt | 10 +++++----- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ 2 files changed, 8 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/25e82b4e/BUILDING.txt ---------------------------------------------------------------------- diff --git a/BUILDING.txt b/BUILDING.txt index c7be7a3..91281be 100644 --- a/BUILDING.txt +++ b/BUILDING.txt @@ -28,11 +28,11 @@ On Linux: $ ./start-build-env.sh On Mac: - First make sure Homebrew has been installed ( http://brew.sh/ ) - $ brew install docker boot2docker - $ boot2docker init -m 4096 - $ boot2docker start - $ $(boot2docker shellinit) + First make sure Virtualbox and docker toolbox are installed. + You can use docker toolbox as described in http://docs.docker.com/mac/step_one/. + $ docker-machine create --driver virtualbox \ + --virtualbox-memory "4096" hadoopdev + $ eval $(docker-machine env hadoopdev) $ ./start-build-env.sh The prompt which is then presented is located at a mounted version of the source tree http://git-wip-us.apache.org/repos/asf/hadoop/blob/25e82b4e/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index 087ba75..3bb8620 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -965,6 +965,9 @@ Release 2.8.0 - UNRELEASED HADOOP-12582. Using BytesWritable's getLength() and getBytes() instead of get() and getSize(). (Akira AJISAKA via ozawa) + HADOOP-12575. Add build instruction for docker toolbox instead of + boot2docker(Kai Sasaki via ozawa) + OPTIMIZATIONS HADOOP-11785. Reduce the number of listStatus operation in distcp