Re: Spark External JAR and Netty issue

2016-09-12 Thread moon soo Lee
Hi, Such error can be raised when you have multiple version of Netty in the classpath. You can try exclude netty from dependency management gui. Thanks, moon On Mon, Sep 5, 2016 at 9:53 AM Michael Pedersen wrote: > Hello, > > I'm trying to include an external JAR file

Re: Hbase configuration storage without data

2016-09-12 Thread moon soo Lee
Right big note.json file is a problem. But at the same time, i think having data in the note.json helps make import/export simple and make notebook renderable without run it. So far, i didn't see much discussion about this subject on mailing list or on the issue tracker. If there's an good idea

Re: Completion

2016-09-12 Thread Cyril Scetbon
https://issues.apache.org/jira/browse/ZEPPELIN-1429 > On Sep 12, 2016, at 11:49, Hyung Sung Shim wrote: > > Maybe it was my misunderstood, I thought that doesn't work pop-up for > completion. > I just tested spark auto completion but it doesn't work as you said. > I think

Re: Making bookmarks for zeppelin notes work after authentication

2016-09-12 Thread Eric Charles
On Thu, Sep 8, 2016 at 8:05 AM, Prasad Wagle wrote: > Thanks Damien! I created ZEPPELIN-1418 > - Making bookmarks > for zeppelin notes work after authentication. > > BTW, would it be possible to do websocket connection

Re: Completion

2016-09-12 Thread Cyril Scetbon
sure > On Sep 12, 2016, at 11:49, Hyung Sung Shim wrote: > > Maybe it was my misunderstood, I thought that doesn't work pop-up for > completion. > I just tested spark auto completion but it doesn't work as you said. > I think this issue is from spark-2.0 supporting. > Do you

Re: Completion

2016-09-12 Thread Hyung Sung Shim
Maybe it was my misunderstood, I thought that doesn't work pop-up for completion. I just tested spark auto completion but it doesn't work as you said. I think this issue is from spark-2.0 supporting. Do you mind creating jira issue for this? 2016-09-13 0:11 GMT+09:00 Cyril Scetbon

Plot empty points in Line chart

2016-09-12 Thread Ayestaran Nerea
Hi everyone! I have multiple variables in a Spark Dataset that I need to plot in Zeppelin. Those variables consist of a timestamp and a value but not all the variables have the same timestamps. For example: 1. Variable a has values at: |10:00|10:05| |10:25|

Re: Completion

2016-09-12 Thread Cyril Scetbon
Hey, not working too :( I tried "ctrl.", "cmd.", "alt.", nothing works > On Sep 12, 2016, at 10:00, Hyung Sung Shim wrote: > > Hello. > Could you put the key "Ctrl ." (Ctrl + dot) for the completion? > > 2016-09-12 22:43 GMT+09:00 Cyril Scetbon

Re: Completion

2016-09-12 Thread Hyung Sung Shim
Hello. Could you put the key "Ctrl ." (Ctrl + dot) for the completion? 2016-09-12 22:43 GMT+09:00 Cyril Scetbon : > Hi, > > I'm testing Zeppelin 0.6.0 and I've not been able to use completion on > OSX. I tried the combination ctrl+ with both Safari and Chrome without >

Completion

2016-09-12 Thread Cyril Scetbon
Hi, I'm testing Zeppelin 0.6.0 and I've not been able to use completion on OSX. I tried the combination ctrl+ with both Safari and Chrome without success. Am I missing something ? Does it work only with some interpreters and not others ? I tried to use only with the default interpreter

Re: Is it possible to have output that is mixed with multiple types (e.g. plain text + html)

2016-09-12 Thread Mina Lee
Zeppelin prints only one type of display system at one time. Since your example doesn't start with magic keyword(such as %html %table) Zeppelin will print it as plain text. There are several rules which type gets priority than others, [1] Comment on pr #164 will help you to understand how Zeppelin

Is it possible to have output that is mixed with multiple types (e.g. plain text + html)

2016-09-12 Thread Jeff Zhang
Part of my interpreter output is plain text, and another part is html. Is it possible to display them correctly in zeppelin now ? e.g. the following code can not display both plain text and html together. println("Jeff, %html Hello") -- Best Regards Jeff Zhang