PeinYu / docker-zeppelin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker container for zeppelin

This repository contains a set of scripts and configuration files to run a Apache Zeppelin(incubating) from Docker containers.

To run zeppelin from script, execute:

./start-zeppelin-linked.sh

It will run and link your zeppelin instance with spark_master container. You can create spark cluster from image.

To run zeppelin manually:

Pull container:

	docker pull epahomov/docker-zeppelin

Run container:

	docker run -i -t -p 8080:8080 -p 8081:8081 epahomov/docker-zeppelin /bin/bash

Currently Zeppelin do not support -P version due to websocket functionality. There is ticket for it.

Go to zeppelin folder and build with you hadoop and spark version. Out of the box it build with

	mvn clean package -Pspark-1.2.1 -Dhadoop.version=2.2.0 -Phadoop-2.2 -Pyarn -DskipTests

Different build versions you can see on zeppelin site

Run zeppelin by executing:

	/incubator-zeppelin/bin/zeppelin-daemon.sh start

For all zeppelin realted documentation, please see zeppelin official documentation.

About

License:Apache License 2.0


Languages

Language:Shell 100.0%