Igor Drozdov created ZEPPELIN-2333:
--------------------------------------

             Summary: Spark interpreter mixes code results with interpreter logs
                 Key: ZEPPELIN-2333
                 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2333
             Project: Zeppelin
          Issue Type: Bug
            Reporter: Igor Drozdov
            Assignee: Igor Drozdov


For example

{code}
%spark
println("%table")
val a = 1
println("1")
val b = 2
println("2")
val c = 3
println("3")
{code}

results to 

||a: Int = 1||
|1|
|b: Int = 2|
|2|
|c: Int = 3|
|3|
(some rows are interpreter logs)

I expect to see two messages in result: table with 1, 2, 3 and text with 
interpreter details



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to