Printing notes

2016-06-10 Thread Anton Bubna-Litic
Hi All, I really like the report mode feature but I would like to print it out so that I can share it with others. However, it renders terribly when I try to print it. Has anyone found a nice way to print the notes? Or should I raise it as a feature request? Cheers, Anton Anton Bubna-Litic QU

Re: Printing notes

2016-06-10 Thread Corneau Damien
Hi, It seems the Zeppelin header went rogue, and graphs don't take 100% width in the print css. Except for that, is there something else that doesn't render well? On Fri, Jun 10, 2016 at 4:22 PM, Anton Bubna-Litic < anton.bubna-li...@quantium.com.au> wrote: > Hi All, > > > > I really like the r

Shiro Hides Interpreter Settings

2016-06-10 Thread Tom Norden
I have been trying to figure out how to get shiro to hide the Interpreter settings page for certain users but can't seem to figure it out. I have tried using roles and have my shiro.ini looking something like this. [users] admin = admin123, admin user = user123 [urls] /api/version = anon /interp

JDBC interpreter is not concurrent

2016-06-10 Thread Boris Schminke
Hi all, when I used the Hive interpreter I could send several queries in parallel. Now in Zeppelin 0.6 Hive Interpreter is merged into JDBC (which is very good) but I can not execute concurrent Hive queries (which is not so good). How can I run concurrent queries to Hive using JDBC interpreter now

Re: Shiro Hides Interpreter Settings

2016-06-10 Thread Tom Norden
I think i answered my own question. I had to block the calls to the api to make it work. [users] admin = admin123, admin user = user123 [urls] /api/version = anon /api/interpreter/** = authc, roles[admin] /api/configurations/** = authc, roles[admin] /api/credential/** = authc, roles[admin] /** =

Re: Failure in building web package

2016-06-10 Thread atreya90
I got the same error with the first method. When I tried the second one, I got the following error - $ ./grunt build module.js:340 throw err; ^ Error: Cannot find module 'C:\Users\atreya\Downloads\zeppelin-0.5.6-incubating\zeppelin-web\node_modules\.bin\grunt' at Function.Modu

Re: JDBC interpreter is not concurrent

2016-06-10 Thread Prasad Wagle
Hi Boris, You can run concurrent queries by overriding the getScheduler function in JDBCInterpreter to return ParallelScheduler like HiveInterpreter. @jongyoul - should we change JDBCInterpreter. getScheduler to return ParallelScheduler? It would also be nice to make maxConcurrency configurable.

Re: Shiro Hides Interpreter Settings

2016-06-10 Thread Ahyoung Ryu
Hi Tom, Yeah it really makes sense i think. Not only you but many other people want to do that. So I tested this case and created a issue in Jira and created a patch for this. It would be appreciate