Klaus Ma
Klaus Ma

Reputation: 404

Is there any official Docker images for Hadoop?

Does anyone where's the official docker images for Hadoop, e.g. YARN, HDFS? I'd like to use them within a docker image.

Upvotes: 16

Views: 27141

Answers (6)

Sascha
Sascha

Reputation: 357

It seems like the Apache Foundation has added an image for hadoop to docker-hub. https://hub.docker.com/r/apache/hadoop

Upvotes: 1

cxx ocm
cxx ocm

Reputation: 61

Yes, there is an official one now: https://hub.docker.com/r/apache/hadoop

Upvotes: 6

Rotem jackoby
Rotem jackoby

Reputation: 22198

It's important to check if the chosen image includes only Hadoop.
(I'm not sure about Cloudera image mentioned above).

Check out the alternatives below:

  1. Sequenceiq:
    Image (+1M pulls)
    Github repo.
    Site
    Pull with:
    docker pull sequenceiq/hadoop-docker

  2. Uhopper:
    Image(1M+ pulls)
    Bitbucket repo
    Site
    Pull with:
    docker pull uhopper/hadoop

  3. Big data europe:
    Image (10K+ pulls)
    Github repo
    Site
    Pull with:
    docker pull bde2020/hadoop-base

  4. Parrot Stream:
    Image (1.2K+ pulls)
    Github repo
    Site
    Pull with:
    docker pull parrotstream/hadoop


Bonus:
Check out this tutorial on how to build Hadoop docker image.

Upvotes: 6

Cecília Assis
Cecília Assis

Reputation: 169

I don't know if it is an official image, but you can take a look at https://github.com/big-data-europe/docker-hadoop.

This blog post teaches how to use it !

Upvotes: 1

Binary Nerd
Binary Nerd

Reputation: 13937

Cloudera now provide their Quickstart VM as a Docker image for single-node deployments:

Upvotes: 10

Kyle Anderson
Kyle Anderson

Reputation: 7041

There is not currently an official Hadoop Docker image, but there are many User contributed images on the Docker Hub, including this one with over 100K Pulls.

Upvotes: 10

Related Questions