Github user prabhjyotsingh commented on the pull request:
https://github.com/apache/incubator-zeppelin/pull/611#issuecomment-169911338
I tried the default example it works awesomely well.
I might not have understood what all this PR is supposed to cover;
1) I tried pyspark, which does not stream.
%pyspark
import time
print("1")
time.sleep(1)
print("2")
time.sleep(1)
print("3")
time.sleep(1)
print("4")
2) also when I run following
import org.apache.commons.io.IOUtils
import java.net.URL
import java.nio.charset.Charset
(1 to 2).foreach{ i=>
Thread.sleep(1000)
println("Hello " + i)
}
before this PR the output was
import org.apache.commons.io.IOUtils
import java.net.URL
import java.nio.charset.Charset
Hello 1
Hello 2
but now its just
Hello 1
Hello 2
---
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 [email protected] or file a JIRA ticket
with INFRA.
---