HADOOP-12575. Add build instruction for docker toolbox instead of boot2docker. Contributed by Kai Sasaki.

This commit is contained in:
Tsuyoshi Ozawa 2015-11-19 17:44:10 +09:00
parent bd166f0eed
commit 25e82b4eb9
2 changed files with 8 additions and 5 deletions

View File

@ -28,11 +28,11 @@ On Linux:
$ ./start-build-env.sh $ ./start-build-env.sh
On Mac: On Mac:
First make sure Homebrew has been installed ( http://brew.sh/ ) First make sure Virtualbox and docker toolbox are installed.
$ brew install docker boot2docker You can use docker toolbox as described in http://docs.docker.com/mac/step_one/.
$ boot2docker init -m 4096 $ docker-machine create --driver virtualbox \
$ boot2docker start --virtualbox-memory "4096" hadoopdev
$ $(boot2docker shellinit) $ eval $(docker-machine env hadoopdev)
$ ./start-build-env.sh $ ./start-build-env.sh
The prompt which is then presented is located at a mounted version of the source tree The prompt which is then presented is located at a mounted version of the source tree

View File

@ -965,6 +965,9 @@ Release 2.8.0 - UNRELEASED
HADOOP-12582. Using BytesWritable's getLength() and getBytes() instead HADOOP-12582. Using BytesWritable's getLength() and getBytes() instead
of get() and getSize(). (Akira AJISAKA via ozawa) of get() and getSize(). (Akira AJISAKA via ozawa)
HADOOP-12575. Add build instruction for docker toolbox instead of
boot2docker(Kai Sasaki via ozawa)
OPTIMIZATIONS OPTIMIZATIONS
HADOOP-11785. Reduce the number of listStatus operation in distcp HADOOP-11785. Reduce the number of listStatus operation in distcp