RE: Can't run simple example with scala and spark SQL. Some non obvious syntax error in SQL

2017-05-02 Thread David Howell
va.lang.Thread.run(Thread.java:745) INFO [2017-05-02 11:50:18,811] ({pool-2-thread-14} SchedulerFactory.java[jobStarted]:131) - Job paragraph_1493724118696_868476558 started by scheduler org.apache.zeppelin.interpreter.remote.RemoteInterpretershared_session1712472970 INFO [2

Re: Can't download moderately large data or number of rows to csv

2017-05-02 Thread Kevin Niemann
We came across this issue as well, Zeppelin csv export is using the data URI scheme which is base64 encoding all the rows into a single string, Chrome seems to crash with over a few thousand rows, but Firefox has been able to handle over 100k for me. However, the Zeppelin notebook itself becomes

Can't run simple example with scala and spark SQL. Some non obvious syntax error in SQL

2017-05-02 Thread Serega Sheypak
h_1493724118696_868476558 started by scheduler org.apache.zeppelin.interpreter.remote.RemoteInterpretershared_session1712472970 INFO [2017-05-02 11:50:18,812] ({pool-2-thread-14} Paragraph.java[jobRun]:363) - run paragraph 20170502-112158_458502255 using spark org.apache.zeppelin.interpreter.LazyOpenInterpreter@24ca4045 WARN [2017-05-02 11:50:19,810] ({pool-2-th

Re: Can't run simple example with scala and spark SQL. Some non obvious syntax error in SQL

2017-05-02 Thread Serega Sheypak
; at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run( > QueuedThreadPool.java:555) > at java.lang.Thread.run(Thread.java:745) > INFO [2017-05-02 11:50:18,811] ({pool-2-thread-14} > SchedulerFactory.java[jobStarted]:131) > - Job paragraph_1493724118696_868476558 started by scheduler > org.apache

Re: Selecting z.show() text in chrome sometimes doesn't work

2017-05-02 Thread Paul Brenner
So far no one else has responded so perhaps I am the only one who has experienced this. If I can figure out steps to reproduce then I’ll definitely open a ticket. http://www.placeiq.com/ http://www.placeiq.com/ http://www.placeiq.com/ Paul Brenner https://twitter.com/placeiq

Re: Using R intrepreter in zeppelin

2017-05-02 Thread Jeff Zhang
Yes, you need to install R in all the nodes Meethu Mathew 于2017年5月3日周三 下午12:51写道: > Hi, > > I am using zeppelin 0.7.1 with mesos. I installed R on the master node > where zeppelin is installed( as mentioned in the documentation here >

RE: Can't run simple example with scala and spark SQL. Some non obvious syntax error in SQL

2017-05-02 Thread David Howell
nterpretershared_session1712472970 INFO [2017-05-02 11:50:18,812] ({pool-2-thread-14} Paragraph.java[jobRun]:363) - run paragraph 20170502-112158_458502255 using spark org.apache.zeppelin.interpreter.LazyOpenInterpreter@24ca4045 WARN [2017-05-02 11:50:19,810] ({pool-2-thread-14} NotebookServer.jav

Selecting z.show() text in chrome sometimes doesn't work

2017-05-02 Thread Paul Brenner
Has anyone else encountered this? Sometimes when I use z.show to show a data frame I can select the text that is shown (for easy copy and pasting into a .filter() for example). However, other times I just can’t select the text. I have no idea what causes the problem to come or go away. Can

Can't download moderately large data or number of rows to csv

2017-05-02 Thread Paul Brenner
There are limits to how much data the download to csv button will download (1.5MB? 3500 rows?) which limit zeppelin’s usefulness for our BI teams. This limit comes up far before we run into issues with showing too many rows of data in zeppelin. Unfortunately (fortunately?) Hue is the other

Re: Can't download moderately large data or number of rows to csv

2017-05-02 Thread Ruslan Dautkhanov
Good idea to introduce in Zeppelin a way to download full datasets without actually visualizing them. Not sure if this helps, we taught our users to use %sh hadoop fs -getmerge /hadoop/path/dir/ /some/nfs/mount/ for large files (they sometimes have to download datasets with millions of records).