GitHub user zenglinxi0615 opened a pull request: https://github.com/apache/incubator-zeppelin/pull/319
ZEPPELIN-312: use threadpoll to do broadcast in zeppelin NotebookServer as the description in https://issues.apache.org/jira/browse/ZEPPELIN-312 say, broadcaseAll function will call conn.send(serializeMessage(m)) one by one to send message, and if one conn has some problem say: closed or send message timeout, it will block the other socket to get the message, so some zeppelin web url can't show any note in home page. In this PR, we use threadpoll to do broadcast in zeppelin NotebookServer, so one bad socket connection will not affect the others. You can merge this pull request into a Git repository by running: $ git pull https://github.com/zenglinxi0615/incubator-zeppelin ZEPPELIN-312 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/incubator-zeppelin/pull/319.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 #319 ---- commit 43ff424a570cda0787b67f7f5e2a618d51d03fba Author: æ¾æè¥¿ <zengli...@meituan.com> Date: 2015-09-23T04:11:01Z ZEPPELIN-312: use threadpoll to do broadcast in zeppelin NotebookServer ---- --- 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. ---