CloverHearts created ZEPPELIN-1886:
--------------------------------------
Summary: Codebased job workflow
Key: ZEPPELIN-1886
URL: https://issues.apache.org/jira/browse/ZEPPELIN-1886
Project: Zeppelin
Issue Type: Improvement
Reporter: CloverHearts
Assignee: CloverHearts
Hello, Zeppelin users.
I am creating a Zeppelin workflow.
workflow means each interpreter paragraph to run in order on codebase.
And, I find better User Interface part.
all of first, my think about workflow is here.
```
if (z.getZeppelinJobStatus("execute note id", "execute paragraph
id").getJobStatus().isFinished() == true) {
z.run("execute note id", "execute paragraph id")
}
```
or
```
val result = z.runSync("execute note id", "execute paragraph id")
if (result.isFinished == true) {
println("job is done")
}
```
or
```
z.run("execute note id", "execute paragraph id")
while (z.getZeppelinJobStatus("execute note id", "execute paragraph
id").getJobStatus().isRunning) {
// loop
}
println("next job or done.");
```
if can you see more detail or running example then you can test here
https://github.com/apache/zeppelin/pull/1799
I need opinion with zeppelin users and developers.
if you have good idea or my sample is difficult or not good then
you can anytime write to comment.
Thank you.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)