December 2016
Beginner to intermediate
392 pages
8h 13m
English
Zeppelin supports binary build as well as source build. Let's see how to build it from source. We just ought to run one command to install it to our local machine. At the end of this recipe, we'll see how to connect Zeppelin to an external Spark master. Here is the code:
git clone https://github.com/apache/zeppelin.git cd zeppelin/ mvn clean package -Pspark-1.6 -Phadoop-2.6 -Pyarn -Ppyspark -Psparkr -Pscala-2.10 -DskipTests [INFO] Reactor Summary: [INFO] [INFO] Zeppelin .......................................... SUCCESS [1:39.666s] [INFO] Zeppelin: Interpreter ............................. SUCCESS [1:40.830s] [INFO] Zeppelin: Zengine ................................. SUCCESS [2:46.084s] [INFO] Zeppelin: Display system apis ...Read now
Unlock full access