问题描述
我刚刚在我的 Mac (Yosemite 10.10.3) 上安装了以下内容:
I have just installed the following on my Mac (Yosemite 10.10.3):
- Oracle Java 1.8 更新 45
- scala 2.11.6
- spark 1.4(预编译版本:http://d3kbcqa49mib13.cloudfront.net/spark-1.4.0-bin-hadoop2.6.tgz)
- 来自源代码的 zeppelin (https://github.com/apache/incubator-zeppelin)没有额外的配置,只是从模板复制了创建的 zeppelin-env.sh 和 zeppelin-site.xml.没有编辑.
- oracle java 1.8 update 45
- scala 2.11.6
- spark 1.4 (precompiled release: http://d3kbcqa49mib13.cloudfront.net/spark-1.4.0-bin-hadoop2.6.tgz)
- zeppelin from source (https://github.com/apache/incubator-zeppelin)no additional config, just copied created zeppelin-env.sh and zeppelin-site.xml from templates. no edits.
我遵循了安装指南:https://zeppelin.incubator.apache.org/docs/install/install.html
我已经没有问题地构建了 zeppelin:
I have build zeppelin without problems:
mvn clean install -DskipTests
开始
./bin/zeppelin-daemon.sh start
打开 http://localhost:8080 并打开教程笔记本.这是我刷新代码段时发生的情况:
Opened http://localhost:8080 and opened the Tutorial Notebook.Here is what happens when I refresh the snippets:
这是 webapp 日志中 md 解释器的例外:
Here is the exception for the md interpreter in the webapp logs:
ERROR [2015-06-19 11:44:37,410] ({WebSocketWorker-8} NotebookServer.java[runParagraph]:534) - Exception from run
org.apache.zeppelin.interpreter.InterpreterException: **Interpreter md not found**
at org.apache.zeppelin.notebook.Note.run(Note.java:269)
at org.apache.zeppelin.socket.NotebookServer.runParagraph(NotebookServer.java:531)
at org.apache.zeppelin.socket.NotebookServer.onMessage(NotebookServer.java:119)
at org.java_websocket.server.WebSocketServer.onWebsocketMessage(WebSocketServer.java:469)
at org.java_websocket.WebSocketImpl.decodeFrames(WebSocketImpl.java:368)
at org.java_websocket.WebSocketImpl.decode(WebSocketImpl.java:157)
at org.java_websocket.server.WebSocketServer$WebSocketWorker.run(WebSocketServer.java:657)
重新启动解释器似乎不会导致错误.
Restarting the interpreter doesn't seem to cause errors.
推荐答案
好的,我刚刚找到答案,教程顶部有一段关于解释器绑定的片段,点击保存按钮并开始正常工作.
Ok I have just found the answer, at the top of the tutorial there is a snippet about interpreter binding, click the save button and all start to work normally.
这篇关于Zeppelin 没有口译员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!