You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by "Igor Drozdov (JIRA)" <ji...@apache.org> on 2017/03/30 11:46:41 UTC

[jira] [Created] (ZEPPELIN-2333) Spark interpreter mixes code results with interpreter logs

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)