我有一个Zeppelin安装程序,并且正在使用Spark解释器。但是,如果遇到语法错误或运行时错误,除“错误”一词外,我找不到其他详细信息。
例如,我有以下代码:
我只在右上角看到“错误”字样。
在我自己的计算机上,scala会打印以下内容:
$ scala example.sc
./example.sc:1: error: recursive value a needs type
val a = this is an error
^
.example.sc:1: error: not found: value an
val a = this is an error
^
two errors found
我正在使用版本0.7.3。
答案 0 :(得分:2)
您需要在zeppelin.spark.printREPLOutput
标签中将true
设置为Interpreter
。
其缺点是它将显示REPL显示的所有内容。