You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by zjffdu <gi...@git.apache.org> on 2017/10/11 06:25:05 UTC

[GitHub] zeppelin issue #2619: Run all paragraphs sequentially

Github user zjffdu commented on the issue:

    https://github.com/apache/zeppelin/pull/2619
  
    @namanmishra91 Thanks for the contribution. But the implementation is a little complicated to me. I think the easiest implementation is just run paragraphs sequentially in backend. Look at the following code.
    https://github.com/apache/zeppelin/blob/master/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java#L1681
    `persistAndExecuteSingleParagraph` run paragraph in non-blocking way. What we need to do it to run it blocking way. 


---