Sign inSign up

47deg/yarn-cluster

By 47deg

Updated about 11 years ago

Dockerfile of Yarn Cluster for Docker's automated build.

Image
0

1.3K

47deg/yarn-cluster repository overview

Apache Yarn 2.4.0 Cluster Docker image

This repository contains a set of scripts and configuration files to run a Apache Hadoop in a YARN cluster from Docker containers.

Installation

Docker

Build Docker Image

docker build --rm --no-cache -t 47deg/yarn-cluster .

Push Image

docker push 47deg/yarn-cluster

Run

Start an Apache Yarn namenode container

In order to use the Docker image you have just build or pulled use:

docker run -i -t --name namenode -h namenode 47deg/yarn-cluster /etc/bootstrap.sh -bash -namenode

You should now be able to access the Hadoop Admin UI at

http://:8088/cluster

Make sure that SELinux is disabled on the host. If you are using boot2docker you don't need to do anything.

Start an Apache Yarn datanode container

In order to add data nodes to the Apache Yarn cluster, use:

docker run -i -t --link namenode:namenode --dns=namenode 47deg/yarn-cluster /etc/bootstrap.sh -bash -datanode

You should now be able to access the HDFS Admin UI at

http://:50070

Make sure that SELinux is disabled on the host. If you are using boot2docker you don't need to do anything.

Testing

You can run one of the stock examples:

cd $HADOOP_PREFIX

# add input files
bin/hdfs dfs -mkdir -p /user/root
bin/hdfs dfs -put $HADOOP_PREFIX/etc/hadoop/ input

# run the mapreduce
bin/hadoop jar share/hadoop/mapreduce/hadoop-mapreduce-examples-2.4.0.jar grep input output 'dfs[a-z.]+'

# check the output
bin/hdfs dfs -cat output/*

Acknowledgements

This docker image is based on @sequenceiq work, in his excellent repository https://github.com/sequenceiq/hadoop-docker .

Tag summary

Content type

Image

Digest

sha256:7cc196e2d

Size

733.9 MB

Last updated

about 11 years ago

docker pull 47deg/yarn-cluster