Github user cloverhearts commented on the issue:

    https://github.com/apache/zeppelin/pull/1799
  
    @rasehorn 
    Thank you for your opinion.
    I have a question.
    In fact, there is a little confusion in the sense of `wait`.
    It is difficult to understand because it is a mixture of parallel and 
sequential.
    If you enter the code in one paragraph, the paragraph will be executed 
sequentially from the top.
    If so, you have to wait under the z.wait function, even if it is declared 
in parallel.
    Which of the following does it mean?
    
    Case 1
    `` `
    Z.run ("paragraph") // parallel run (currently support)
    `` `
    
    `` `
    Z.runForWait ("paragraphID-A") // waiting for job of paragraphID-A, 
finished or error
    `` `
    
    Or
    
    Case 2
    `` `
    Z.run ("paragraphID-A") // parallel run (currently support)
    Z.wait ("paragraphID-A") // waiting for job finished or error
    `` `
    
    And would you please more explain regarding `cancel`?
    "cancel" mean is "next job cancel"?


---
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.
---

Reply via email to