Re: Paragraph text editor is very slow when number of notes is large (> 1000)

2016-10-01 Thread Corneau Damien
Might be hard to reproduce if we need to have 1000 notes. And its also difficult to figure it out without more informations. I don't think there is a real short-term workaround, If the issue is from the notebook list, then using bind-once on that list could maybe have an impact. Otherwise things w

Re: command execution time measure

2016-09-28 Thread Corneau Damien
Hi Herman, This issue was fixed some time ago. ( https://issues.apache.org/jira/browse/ZEPPELIN-1161) It should be fixed in 0.6.1 It is fixed in Master right now for sure. On Wed, Sep 28, 2016 at 10:54 PM, Herman Yu wrote: > Hi, > > with Zeppelin 0.6, it only shows the time measure as "Took a

Re: Adding main and access titles to Zeppelin's chart

2016-09-27 Thread Corneau Damien
Hi, For some charts, the legend of the Yaxis has the name of the data. However there is currently no option to add a Title, or Axis Title. You can probably create a Jira Issue for that On Tue, Sep 27, 2016 at 4:40 PM, Mich Talebzadeh wrote: > Hi, > > Is there anyway one can add the main and axi

Re: Import notebook

2016-09-25 Thread Corneau Damien
Hi Herman, I think this PR: https://github.com/apache/zeppelin/pull/1430 is trying to give us a better input on file size issue On Mon, Sep 26, 2016 at 5:51 AM, Herman Yu wrote: > > Thanks Mark and Ahyoung. > > It turns out that the notebook json I was trying to import was too large, > this is

Re: Unable to change the height of paragraphs after upgrade 0.5.6 to 0.6.1

2016-09-23 Thread Corneau Damien
There was an issue open recently with the same problem. https://issues.apache.org/jira/browse/ZEPPELIN-1467 It has been confirmed that there is an issue with 0.6.1, but the bug isn't in master or branch 0.6, so next release will have it fixed. On Sep 24, 2016 12:03 AM, "tolomaus" wrote: > Hi D

Re: Unable to change the height of paragraphs after upgrade 0.5.6 to 0.6.1

2016-09-23 Thread Corneau Damien
Hi, The way it worked may have changed between 0.5.6 and 0.6.1 in the way that only the result size can be changed instead of the whole paragraph. In the case of the Table and Graph, you can resize up or down as much as you want (there is still a minimum height though). For basic Text type, you ca

Re: Is there any more angular display system examples ?

2016-09-14 Thread Corneau Damien
Hi Jeff, I think there might be some examples here: https://www.zeppelinhub.com/viewer/showcases/Visualization But I'm sure others that have some of their own, would post it here too On Wed, Sep 14, 2016 at 5:43 PM, Jeff Zhang wrote: > I looked at the following link about angular display syste

Re: table render string to long

2016-09-08 Thread Corneau Damien
Hi dengjh, It seems to be an effect of a recent commit that try to detect Numbers.( https://github.com/apache/zeppelin/pull/1371) I think this PR https://github.com/apache/zeppelin/pull/1363, would be able to fix this issue as it would allow users to specify the type by themselves. However keep i

Re: How to use web sockets with Zeppellin

2016-09-08 Thread Corneau Damien
format "product\tprice\nbanana\t12\napple\t8") // z.runParagraph(paragrpahID) (The one with the graphData1, the ID is in the paragraph dropdown settings) // etc... //} On Thu, Sep 8, 2016 at 5:31 PM, Corneau Damien wrote: > To reply to 1) > > The type of charts and its

Re: How to use web sockets with Zeppellin

2016-09-08 Thread Corneau Damien
guys say it is not possible and I would understand that >> and probably pick a different route. >> >> Thanks much, >> Kant >> >> >> On Thu, Sep 8, 2016 at 12:10 AM, Corneau Damien >> wrote: >> >>> You will probably need to mak

Re: How to use web sockets with Zeppellin

2016-09-08 Thread Corneau Damien
;> server and I need the graph to be updated every second. thats it. >> >> please let me know if that is feasible. >> >> Thanks, >> Kant >> >> On Wed, Sep 7, 2016 at 6:59 PM, spacewalk...@163.com < >> spacewalk...@163.com> wrote: >> >>> i

Re: How to use web sockets with Zeppellin

2016-09-07 Thread Corneau Damien
This change wouldn't solve your issue, it is the address where the front-end send his API requests and listen to WS (zeppelin server) I guess your requirements are different. The way Zeppelin works is usually pretty simple: 1) You type your code in the front-end 2) That code is sent to Zeppelin s

Re: Can't download zeppelin 0.6.1 binary

2016-09-06 Thread Corneau Damien
Hi York, Thanks for reporting it, seems we had a small problem when compiling the website last time. We are working on a Hotfix right now, shouldn't take long before it's back up again. We will post in this thread once its done. On Wed, Sep 7, 2016 at 8:50 AM, York Huang wrote: > Hi, > > I go

Re: ajax call

2016-09-03 Thread Corneau Damien
The CORS actually needs to be set where he is trying to fetch the XML, not on Zeppelin side. On Sun, Sep 4, 2016 at 4:58 AM, tolomaus wrote: > There is an option zeppelin.server.allowed.origins in zeppelin-site.xml to > configure the origin you want to allow, but I never got it to work. If I > r

Re: Making bookmarks for zeppelin notes work after authentication

2016-09-02 Thread Corneau Damien
Hi Prasad Removing the # might not solve the use case you are talking about (cf. http://stackoverflow.com/a/30669503) However, redirecting to the right page can probably be done on the front-end side (cf. http://nadeemkhedr.com/redirect-to-the-original-requested-page-after-login-using-angularjs/ )

Re: ajax call

2016-09-01 Thread Corneau Damien
jQuery("#info").html("<p>Error</p>"); > alert(request.responseXML); > }); > > request.done( function() { >alert('done'); > }); > > > > On Fri, Sep 2, 2016 at 11:28 AM, Corneau D

Re: ajax call

2016-09-01 Thread Corneau Damien
Hi, I've been using jQuery.when() inside an %angular paragraph ( https://www.zeppelinhub.com/viewer/notebooks/aHR0cHM6Ly9yYXcuZ2l0aHVidXNlcmNvbnRlbnQuY29tL2Nvcm5lYWRvdWcvWmVwcGVsaW4tTm90ZWJvb2tzL21hc3Rlci9BdXRvLUNvbXBsZXRlLU11bHRpU2VsZWN0L25vdGUuanNvbg ) I don't know if $ keyword would be usable,

Re: zeppelin front-end extensibility

2016-08-25 Thread Corneau Damien
Thanks for providing some ideas to the topic. I guess this architecture could be explored when trying to improve Helium, or the overall plugin concept. On Thu, Aug 25, 2016 at 6:12 PM, Andreas Weise wrote: > Hi, > > This is about the UI extensibility of zeppelin. > > I've read the Helium Proposa

Re: is there way to update(push latest data to) Zeppelin dashboard ?

2016-08-24 Thread Corneau Damien
yshu...@gmail.com wrote: > >> Kant, >> >> Moon referred to the attached feature. You can have the entire note run >> on a scheduled basis. See the attached screenshot. >> >> You might say it refreshes the entire note, not just selected cells, that >> is true

Re: is there way to update(push latest data to) Zeppelin dashboard ?

2016-08-24 Thread Corneau Damien
gt; > On Wed, Aug 24, 2016 6:53 PM, Corneau Damien cornead...@gmail.com wrote: > >> Wouldn't angular bind work in that case? >> >> On Thu, Aug 25, 2016 at 6:13 AM, moon soo Lee wrote: >> >> Try find small 'clock' icon on any particular Note n

Re: is there way to update(push latest data to) Zeppelin dashboard ?

2016-08-24 Thread Corneau Damien
Wouldn't angular bind work in that case? On Thu, Aug 25, 2016 at 6:13 AM, moon soo Lee wrote: > Try find small 'clock' icon on any particular Note next to 'Remove' button. > This scheduler feature will help you auto refresh Note. > > Thanks, > moon > > > On Wed, Aug 24, 2016 at 11:31 AM kant kod

Re: donut chart

2016-08-22 Thread Corneau Damien
at 3:31 PM, Teik Hooi Beh wrote: > >> I have re import the notebook, so the back-end shows the graph but the >> front-end still showing blank and no errors showing on graph's paragraph. >> >> On Fri, Aug 19, 2016 at 3:22 PM, Corneau Damien >> wrote: >> >

Re: donut chart

2016-08-18 Thread Corneau Damien
s with my pyspark but I am not using it). > > Any possibilities that the nvd3 lib is not available? > > On Fri, Aug 19, 2016 at 2:43 PM, Corneau Damien > wrote: > >> I just tried it on Master and branch-0.6 and have no problem rendering >> this Notebook. >>

Re: donut chart

2016-08-18 Thread Corneau Damien
#x27; paragraph. I am using v0.6.0 > > Any advice? > > On Fri, Aug 19, 2016 at 12:45 PM, Corneau Damien > wrote: > >> No, it wasn't merged. >> Is there some special use cases to use donut instead of pie chart? >> >> On Fri, Aug 19, 2016 at 9:34 AM, Te

Re: donut chart

2016-08-18 Thread Corneau Damien
No, it wasn't merged. Is there some special use cases to use donut instead of pie chart? On Fri, Aug 19, 2016 at 9:34 AM, Teik Hooi Beh wrote: > I notice that back in Sept 2015, there was a donut chart added to Zeppelin > (adding donut chart #290). Was it committed coz I seem to have seen it in

Re: Stickers

2016-08-12 Thread Corneau Damien
Seems it takes some time to be accepted by Stickermule. However I made this PR in case anybody would like to make their own: https://github.com/apache/zeppelin/pull/1325 On Thu, Aug 11, 2016 at 9:45 AM, Corneau Damien wrote: > Thanks Trevor, > I will take care of that today then. >

Re: Stickers

2016-08-10 Thread Corneau Damien
eone else in the community- I > just want to rep some zeppelin ;) > > lmk > > tg > > > > Trevor Grant > Data Scientist > https://github.com/rawkintrevo > http://stackexchange.com/users/3002022/rawkintrevo > http://trevorgrant.org > > *"Fortunate

Re: Stickers

2016-08-10 Thread Corneau Damien
We don't have any official sticker to order from. And I'm not sure about the rules for printing your own stickers. Although I found this: http://www.apache.org/foundation/marks/merchandise.html If you need it, I can send you the logo .svg (I really need to host it on the website) On Thu, Aug 11,

Re: editing font / size

2016-08-01 Thread Corneau Damien
There is no way of doing it from UI, maybe this PR would solve it: https://github.com/apache/zeppelin/pull/1256 If you want to it by default, you would have to change the source code then rebuild. Best way would be to change the font-family and font-size of the Ace text through CSS. (You have to fi

Re: Paragraph opened as IFrame in multiple browsers

2016-07-27 Thread Corneau Damien
Kinda related to all the issues posted about changing a Notebook with 2 different users to some degree. It could be possible to block Iframe from sending websocket events. And eventually from receiving any. However this would make impossible some features that always persist the result: Filters a

Re: Filter query results by current user

2016-07-25 Thread Corneau Damien
from data where user="${userName}" >> """)) >> >> Thanks, >> moon >> >> On Sun, Jul 24, 2016 at 3:25 PM Panayotis Trapatsas < >> p.trapat...@pamediakopes.gr> wrote: >> >>> Does the angular way work even if the use

Re: Filter query results by current user

2016-07-22 Thread Corneau Damien
Hi, Maybe Dynamic Forms ( https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/manual/dynamicform.html) could help in this case? It allows you to add some conditioning in your queries. In this case, the user would be able to select themselves and rerun the query. If you want to do it on a whole Notebo

Re: integrate authorization

2016-07-20 Thread Corneau Damien
Hi, I know this PR https://github.com/apache/zeppelin/pull/1173 is implementing something a bit similar. Maybe that will give you some leads On Wed, Jul 20, 2016 at 9:18 PM, Hyung Sung Shim wrote: > Hi. > Unfortunetely There is no way to solve your problem on zeppelin level but > it seems like

Re: Does zeppelin use angular 1 or angular 2 ?

2016-07-11 Thread Corneau Damien
Angular 1 On Tue, Jul 12, 2016 at 12:10 PM, canan chen wrote: > > Anyone know that ? Thanks > > >

Re: [ANNOUNCE] Apache Zeppelin 0.6.0 released

2016-07-07 Thread Corneau Damien
FYI, the Helium logs in the console should be on master, but not on 0.6.0 branch. Those 500 errors should not have any effect when running. On Fri, Jul 8, 2016 at 8:01 AM, Randy Gelhausen wrote: > I don't- I hoped providing that information may help finding & fixing the > problem. > > On Thu, J

Re: How to remove uglify operation from zeppelin-web

2016-06-20 Thread Corneau Damien
*Vikash Kumar* > > -- > *From:* Corneau Damien > *Sent:* 18 June 2016 07:27:46 > *To:* users@zeppelin.apache.org > *Subject:* Re: How to remove uglify operation from zeppelin-web > > > This is happening in the grunt.js > > But why would you

Re: paragraph ordering/removal broken?

2016-06-19 Thread Corneau Damien
The culprit is this commit: https://github.com/apache/zeppelin/commit/4a0dce525304ddee8a69bffc3eee20f4bbf4f209 On Mon, Jun 20, 2016 at 11:33 AM, Hyung Sung Shim wrote: > Hi. > I'll take care of this issue. give me a minute. > > 2016-06-20 9:14 GMT+09:00 Randy Gelhausen : > >> Anyone else seeing

Re: How to remove uglify operation from zeppelin-web

2016-06-17 Thread Corneau Damien
This is happening in the grunt.js But why would you want to remove it? This is a basic production build rule. On Jun 17, 2016 22:27, "Vikash Kumar" wrote: > Hi all, > > How to remove uglify operation from zeppelin-web that I can remove the > functionality of compression. > > > > *Thanks & Regard

Re: Zeppelin multi-user dashboards

2016-06-17 Thread Corneau Damien
state of the notebook in the user > session at the server side might resolve this? > > Regards, > Ashish > On Jun 17, 2016 1:09 PM, "Corneau Damien" wrote: > > The easy way to do that would be: > Have an option on the notebook (automatic-save vs manual save), manual

Re: Zeppelin multi-user dashboards

2016-06-17 Thread Corneau Damien
m> wrote: > >> Isnt it acheivable via git repository ? A kind of git clone to get an >> indépendant copy of the notebook? >> Le 17 juin 2016 4:18 AM, "Corneau Damien" a >> écrit : >> >>> It is simple Read/Write >>> Some people can edit,

Re: Zeppelin multi-user dashboards

2016-06-16 Thread Corneau Damien
the notebook > in report mode and not interact with it, perhaps an interactive-read is > required for a typical dashboard use case. > > Regards, > Ashish > > On Thu, Jun 16, 2016 at 7:51 PM, Corneau Damien > wrote: > >> Using Authentication in Zeppelin, you can set

Re: Zeppelin multi-user dashboards

2016-06-16 Thread Corneau Damien
Using Authentication in Zeppelin, you can set Read/Write rules to Notebooks On Thu, Jun 16, 2016 at 10:29 PM, ashish rawat wrote: > Yeah, I thought the same, but this is quite unmanageable for a changing > dashboard and changing user list. > > Perhaps, a clean solution could be to introduce a re

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

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: Cannot copy data in tables in Zeppelin 0.6.0

2016-06-08 Thread Corneau Damien
received this email > in error, we would be grateful if you would notify us immediately by email > reply, phone (+ 61 2 9292 6400) or fax (+ 61 2 9292 6444) and delete the > message from your system. > > > > *From:* Corneau Damien [mailto:cornead...@gmail.com] > *Sent:* Thursda

Re: Cannot copy data in tables in Zeppelin 0.6.0

2016-06-08 Thread Corneau Damien
Hi Anton, The bug was already reported, and is soon to be merged into Apache Zeppelin's master branch: https://github.com/apache/incubator-zeppelin/pull/973 On Thu, Jun 9, 2016 at 2:23 PM, Anton Bubna-Litic < anton.bubna-li...@quantium.com.au> wrote: > Hi All, > > > > I am trying out a mapr buil

Re: Angular scope - compiledScope issues in latest master

2016-06-01 Thread Corneau Damien
Hi Balachandar, Some times ago, there was a few changes to the angular display system. The main change code wise was to remove the compiledScope from the global app variables. You can find the breaking change in this PRs [1] While there we try to make it backward compatible to some degree afterwar

Re: Input Controls and Visualizations in Zeppelin

2016-05-24 Thread Corneau Damien
If you want to have another 'switch' button just like the chart one, it has to be done internally. However if it's just to use occasionally, you could make a component using %angular interpreter. But, what you are thinking about is pretty much the goal behind Helium On Tue, May 24, 2016 at 9:47 P

Re: Regarding NVD3 charts

2016-05-24 Thread Corneau Damien
I think there was originally some issues with the nvd3 directives, so we used the javascript library. Might have changed since, however it wouldn't be an easy change On Tue, May 24, 2016 at 3:32 AM, Chirag Sharma wrote: > Hi there > > Is there any specific advantage that javascript library of ch