GitHub user zenglinxi0615 opened a pull request: https://github.com/apache/incubator-zeppelin/pull/267
fix remoteinterpreterserver deadlock problem After using zeppelin server for some days, we often found that paragraph can't run while the zeppelin server process is on, restart interpreter is just not work. Then we find out that the RemoteInterpreterServer is in deadlock, and can't be stopped by zeppelin server. Unfortunately, this deadlocked RemoteInterpreterServer will still hold the hadoop resources, we need to kill the process manually each time. The detail Info shows in: https://issues.apache.org/jira/browse/ZEPPELIN-271 We figure out that the deadlock is caused by the lack of synchronized (intpGroup) in SparkSqlInterpreter.java You can merge this pull request into a Git repository by running: $ git pull https://github.com/zenglinxi0615/incubator-zeppelin fix-remoteinterpreterserver-deadlock Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-zeppelin/pull/267.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #267 ---- commit 4ec953b67b287946899a2f165ab4898dbaae6df2 Author: æ¾æè¥¿ <zengli...@meituan.com> Date: 2015-08-31T06:58:49Z fix remoteinterpreterserver deadlock problem ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---