[GitHub] zeppelin pull request #2124: [ZEPPELIN-2154] Support zeppelin.server.port in...

2017-03-11 Thread soralee
GitHub user soralee opened a pull request: https://github.com/apache/zeppelin/pull/2124 [ZEPPELIN-2154] Support zeppelin.server.port in dev mode (branch-0.7) ### What is this PR for? If user change `zeppelin.server.port` variable in zeppelin-site.xml, zeppelin doesn't work in

[GitHub] zeppelin issue #1582: [ZEPPELIN-1604] Add Neo4j interpreter and Network visu...

2017-03-11 Thread jexp
Github user jexp commented on the issue: https://github.com/apache/zeppelin/pull/1582 @conker84 @felixcheung I looked at the java-driver Neo4j bits and made some comments. In general it looks great and I really like the ideas. If you need anything else from me to

Re: Spell as Display?

2017-03-11 Thread Park Hoon
Awesome! On Sun, 12 Mar 2017 at 00:20 Eric Charles wrote: > I have a hacky implementation that works (I needed it by Monday... (1]) > > println(s"""%spell %json $j""") displays the json editor with content > built in spark. > > I understand your 2 options. What I have done is

[GitHub] zeppelin issue #2112: [ZEPPELIN-2228] precode for SparkRInterpreter

2017-03-11 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue: https://github.com/apache/zeppelin/pull/2112 Ready to review --- 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

[GitHub] zeppelin issue #2096: [ZEPPELIN-2194] precode for PySparkInterpreter

2017-03-11 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue: https://github.com/apache/zeppelin/pull/2096 Ready to review --- 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

[GitHub] zeppelin pull request #2123: Rinterpreter

2017-03-11 Thread GurchetanBir
Github user GurchetanBir closed the pull request at: https://github.com/apache/zeppelin/pull/2123 --- 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

[GitHub] zeppelin issue #2117: ZEPPELIN-2241: JDBC interpreter throws npe on connecti...

2017-03-11 Thread 1ambda
Github user 1ambda commented on the issue: https://github.com/apache/zeppelin/pull/2117 I will test and give you feed back soon! --- 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

Re: Spell as Display?

2017-03-11 Thread Park Hoon
That's because InterpreterResult in backend doesn't understand custom display types. - https://github.com/apache/zeppelin/blob/master/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/InterpreterOutput.java#L224 There are many way to implement it, but i am thinking about -

[GitHub] zeppelin issue #2123: Rinterpreter

2017-03-11 Thread AhyoungRyu
Github user AhyoungRyu commented on the issue: https://github.com/apache/zeppelin/pull/2123 @GurchetanBir Seems you pushed by mistake. Could you close this PR? --- 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

[GitHub] zeppelin pull request #2118: [ZEPPELIN-2242] Toggle helium type buttons

2017-03-11 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/zeppelin/pull/2118 --- 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

[GitHub] zeppelin pull request #2111: [ZEPPELIN-2230] clear bower_contents if bower.j...

2017-03-11 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/zeppelin/pull/2111 --- 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

[GitHub] zeppelin pull request #2123: Rinterpreter

2017-03-11 Thread GurchetanBir
GitHub user GurchetanBir opened a pull request: https://github.com/apache/zeppelin/pull/2123 Rinterpreter ### What is this PR for? A few sentences describing the overall goals of the pull request's commits. First time? Check out the contributing guide -

Re: Spell as Display?

2017-03-11 Thread Eric Charles
ZEPPELIN-2089 talks about this if I understand well. @ParkHoon Were you thinking to InterpreterResult.Type.SPELL? On 11/03/17 10:23, Eric Charles wrote: My use case is running a spark paragraph with println(s"""%sigma $graph""") that is supposed to call my spell and display the graph. Is

Spell as Display?

2017-03-11 Thread Eric Charles
My use case is running a spark paragraph with println(s"""%sigma $graph""") that is supposed to call my spell and display the graph. Is there a way to use existing spell module as display systems? There is in result.controller.js#324 heliumService.executeSpellAsDisplaySystem(type, data) which