zeppelin-env.sh, , JVM .
$ZEPPELIN_HOME/conf/zeppelin-env.sh
:
export ZEPPELIN_MEM="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=8111"
, zeppelin-env.sh, Apache Zeppelin 8111.
, envrionment ZEPPELIN_INTP_MEM.
, , - .
IntelliJ IDE Apache Zeppelin
Run- > Edit Configuration
IntelliJ IDE:

IntelliJ
Go to Run-> View Breakpoints Enable "Java Exclusion Checkpoints" Set the condition and add the following condition:
!(this instanceof java.lang.ClassNotFoundException ||
this instanceof java.util.MissingResourceException ||
this instanceof javax.naming.NoInitialContextException ||
this instanceof java.lang.NoSuchMethodException)
You should now have exception control points, for example:

Full credit belongs to Luciano Resende - see the full article here:
http://lresende.blogspot.com/2016/08/launching-apache-zeppelin-in-debug-mode.html
Tagar source
share