Re: Get stack Tooltip Value

2016-06-09 Thread moon soo Lee
Thanks for the explain. Currently, we can not attach event handler to chart generated by the app via spark sql query. When you display custom chart using d3 or any other javascript library in Zeppelin notebook, then you can leverage angulardisplay system and use z.runParagraph to run paragraph B.

Re: Failure in building web package

2016-06-09 Thread Corneau Damien
@atreya90, can you try building only zeppelin-web? Try both methods inside zeppelin-web folder: * mvn package -DskipTests *./grunt build On Fri, Jun 10, 2016 at 12:12 AM, atreya90 wrote: > I tried compiling on two separate machines (windows 10 64 bit) and got the > same error. I don't think that

Re: Github Integration

2016-06-09 Thread Khalid Huseynov
As it was mentioned, existing "git" repository is local and setup is described here . Once setup, you can also do checkpoints (commits) from Zeppelin version control menu with your commit message. On Thu, Jun 9, 2

Re: How to disable google analytics

2016-06-09 Thread George Webster
I am by no means pointing fingers. For background, it is illegal to have tracking software enabled at the University. As such, the admins flagged me that they were seeing URL requests to "google analytics" that were coming from the Server hosting Zeppelin. (they unfortunately did not send the logs

Re: How to disable google analytics

2016-06-09 Thread Alexander Bezzubov
Hi, first, plese let me the confusion. As PMC member of the project, I can assure you that there is NO any tracking facilities build into Apache Zeppelin source or binary distribution that I'm aware of. Nither enabled nor disabled. The parameter that you are referring, as everything under the /

Re: How to disable google analytics

2016-06-09 Thread Charles Givre
All, Just my .02 but this REALLY should be disabled by default. —C > On Jun 9, 2016, at 12:27, George Webster wrote: > > Hey guys and gals, > > Google Analytics appears to be built into Zeppelin and is active. Is > their a way to disable this without rebuilding? > > https://github.com/apach

How to disable google analytics

2016-06-09 Thread George Webster
Hey guys and gals, Google Analytics appears to be built into Zeppelin and is active. Is their a way to disable this without rebuilding? https://github.com/apache/incubator-zeppelin/blob/84d25a8eabfe8efce0170e43a7b3c5a715e5104d/docs/_config.yml # Settings for analytics helper # Set 'provider' to

Re: Github Integration

2016-06-09 Thread Jeff Steinmetz
I believe it actually uses a local “git” repository, not necessarily “github” If you want it to sync to origin (stash), you could set up a `git push` cron job on a schedule. On 6/9/16, 8:40 AM, "Benjamin Kim" wrote: >I heard that Zeppelin 0.6.0 is able to use its local notebook directory as a

Github Integration

2016-06-09 Thread Benjamin Kim
I heard that Zeppelin 0.6.0 is able to use its local notebook directory as a Github repo. Does anyone know of a way to have it work (workaround) with our company’s Github (Stash) repo server? Any advice would be welcome. Thanks, Ben

Re: Failure in building web package

2016-06-09 Thread atreya90
I tried compiling on two separate machines (windows 10 64 bit) and got the same error. I don't think that it is a temporary error. -- View this message in context: http://apache-zeppelin-users-incubating-mailing-list.75479.x6.nabble.com/Failure-in-building-web-package-tp3173p3221.html Sent from

Re: hive remote megastore

2016-06-09 Thread Mohit Jaggi
from logs: java.sql.SQLException: No suitable driver found for jdbc:hive2://:port/default at java.sql.DriverManager.getConnection…… Error message in notebook: No suitable driver found for jdbc:hive2://:port/default Interpreter config: common.max_count 1000 defa

Re: hive remote megastore

2016-06-09 Thread Jongyoul Lee
Hi Mohit, Could you please show me your settings of interpreter tab and detail error messages? JL On Thu, Jun 9, 2016 at 10:31 PM, Mohit Jaggi wrote: > Same error except it includes the url in the error message now > > Sent from my iPhone > > On Jun 9, 2016, at 6:06 PM, Hyung Sung Shim wrote:

Re: hive remote megastore

2016-06-09 Thread Mohit Jaggi
Same error except it includes the url in the error message now Sent from my iPhone > On Jun 9, 2016, at 6:06 PM, Hyung Sung Shim wrote: > > Hi. > Did you also set up the "default.url" value in the Hive interpreter setting? > > [0] > http://zeppelin.apache.org/docs/0.5.6-incubating/interpreter/

Re: hive remote megastore

2016-06-09 Thread Jongyoul Lee
Hi Mohit, hive-site.xml is used by Spark. if you use Hive Interpreter (%hive), you should set your information into interpreter tab. It would work. JL On Thu, Jun 9, 2016 at 9:36 PM, Hyung Sung Shim wrote: > Hi. > Did you also set up the "default.url" value in the Hive interpreter > setting? >

Re: Get stack Tooltip Value

2016-06-09 Thread Andrea Santurbano
Hi Lee thanks for the feedback! I try to explain better my problem: In the paragraph A i go with the mouse over a bar of d3 chart (generated by the app via spark sql query): the system show a tooltip, i have to access to all the data that creates the tooltip; On click on d3 chart bar i get that da

Re: hive remote megastore

2016-06-09 Thread Hyung Sung Shim
Hi. Did you also set up the "default.url" value in the Hive interpreter setting? [0] http://zeppelin.apache.org/docs/0.5.6-incubating/interpreter/hive.html 2016-06-09 18:28 GMT+09:00 Mohit Jaggi : > Hi, > I am using 0.5.6 to connect to Hive. I have configured Hive in remote > metastore with loca

Re: Adding Custom Data Providers in Zeppelin Classpath

2016-06-09 Thread Gerald Loeffler
setting ZEPPELIN_CLASSPATH in zeppelin-env.sh worked just fine - thank you! - gerald -- Gerald Loeffler mailto:gerald.loeff...@googlemail.com http://www.gerald-loeffler.net On Sat, Jun 4, 2016 at 2:36 AM, moon soo Lee wrote: > Hi Gerald, > > If you don't export SPARK_HOME, could you try add jar

hive remote megastore

2016-06-09 Thread Mohit Jaggi
Hi, I am using 0.5.6 to connect to Hive. I have configured Hive in remote metastore with local database mode and am running the metastore server. My hive-site.xml has hive.metastore.uris = thrift://:1. This file has been copied to zeppelin/conf and I even restarted zeppelin (do I have to?).

Re: PAM authentication

2016-06-09 Thread Eric Charles
That's the goal of shiro. Any extension should be working fine. You could test thiro-libpam4j with a toy project to validate your local env and conf, and then only apply the configs on zeppelin. On 09/06/16 11:15, Polina Marasanova wrote: Hello, Probably it will be stupid question: is it pos

PAM authentication

2016-06-09 Thread Polina Marasanova
Hello, Probably it will be stupid question: is it possible to do configure Apache Shiro to use PAM file? I found this project on github and it might be useful https://github.com/plaflamme/shiro-libpam4j Cheers Polina