[GitHub] [zeppelin] liuxunorg commented on a change in pull request #3314: [ZEPPELIN-4019] Interpreter process get note from server

2019-03-04 Thread GitBox
liuxunorg commented on a change in pull request #3314: [ZEPPELIN-4019] 
Interpreter process get note from server
URL: https://github.com/apache/zeppelin/pull/3314#discussion_r262346545
 
 

 ##
 File path: 
zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
 ##
 @@ -1844,6 +1849,61 @@ public void onParaInfosReceived(String noteId, String 
paragraphId,
 }
   }
 
+  @Override
+  public List getParagraphList(String user, String noteId)
+  throws TException, ServiceException {
+try {
+  AuthenticationInfo authInfo = new AuthenticationInfo();
+  authInfo.setUser(user);
+
+  Set userAndRoles = new HashSet<>();
+  userAndRoles.add(user);
+
+  ServiceContext serviceContext = new ServiceContext(authInfo, 
userAndRoles);
+  Note note = getNotebookService().getNote(noteId, serviceContext,
 
 Review comment:
   @zjffdu  Done. CI pass. 
https://travis-ci.org/liuxunorg/zeppelin/builds/501825407


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


Re: Zeppelin in GSOC 2019

2019-03-04 Thread Xun Liu
Hi, Vasiliy Morkovkin 

Welcome to the zeppelin community! :-)

> 在 2019年3月5日,上午11:49,Jongyoul Lee  写道:
> 
> Thanks for contacting Zeppelin with your interest.
> 
> I added FE topics for GSOC because FE is the most urgent issue I have
> thought about. We always encourage to contribute Zeppelin with several
> topics including your idea.
> 
> Please describe something more.
> 
> Thanks.
> JL
> 
> On Tue, Mar 5, 2019 at 10:41 AM moon soo Lee  wrote:
> 
>> Hi,
>> 
>> Great to see your interest to project. Thanks!
>> Looks like we need volunteers for a mentor and some backend subject for
>> GSoC2019.
>> Any ideas?
>> 
>> Best,
>> moon
>> 
>> 
>> 
>> 
>> On Mon, Mar 4, 2019 at 3:05 PM Vasiliy Morkovkin <
>> morkovkin...@phystech.edu>
>> wrote:
>> 
>>> Hi everyone, I'm pursuing bachelor degree at Moscow institute of physics
>>> and technology and eager to contribute to Zeppelin in context of GSOC
>>> 2019. I've become a real fan of Zeppelin over the past couple of months,
>>> using it at my job. But I have found out only one ticket (front-end
>>> task) with label of GSOC 2019 on your Jira. Perhaps you may have any
>>> ideas for new features or improvements in Zeppelin, but you don't have
>>> enough hands on them. It would be wonderful if anyone agreed to mentor
>>> these ideas within GSOC :)
>>> Currently I am in a position of Scala developer (back-end) for 1.5 year.
>>> I also can write in Java or Python without any problems if necessary.
>>> Really fond of databases and highload. Also I have experience with some
>>> other great Apache projects like Cassandra, Kafka and Spark.
>>> 
>>> Best regards, Basil Morkovkin.
>>> 
>>> 
>> 
> 
> 
> -- 
> 이종열, Jongyoul Lee, 李宗烈
> http://madeng.net



Re: Zeppelin in GSOC 2019

2019-03-04 Thread Jongyoul Lee
Thanks for contacting Zeppelin with your interest.

I added FE topics for GSOC because FE is the most urgent issue I have
thought about. We always encourage to contribute Zeppelin with several
topics including your idea.

Please describe something more.

Thanks.
JL

On Tue, Mar 5, 2019 at 10:41 AM moon soo Lee  wrote:

> Hi,
>
> Great to see your interest to project. Thanks!
> Looks like we need volunteers for a mentor and some backend subject for
> GSoC2019.
> Any ideas?
>
> Best,
> moon
>
>
>
>
> On Mon, Mar 4, 2019 at 3:05 PM Vasiliy Morkovkin <
> morkovkin...@phystech.edu>
> wrote:
>
> > Hi everyone, I'm pursuing bachelor degree at Moscow institute of physics
> > and technology and eager to contribute to Zeppelin in context of GSOC
> > 2019. I've become a real fan of Zeppelin over the past couple of months,
> > using it at my job. But I have found out only one ticket (front-end
> > task) with label of GSOC 2019 on your Jira. Perhaps you may have any
> > ideas for new features or improvements in Zeppelin, but you don't have
> > enough hands on them. It would be wonderful if anyone agreed to mentor
> > these ideas within GSOC :)
> > Currently I am in a position of Scala developer (back-end) for 1.5 year.
> > I also can write in Java or Python without any problems if necessary.
> > Really fond of databases and highload. Also I have experience with some
> > other great Apache projects like Cassandra, Kafka and Spark.
> >
> > Best regards, Basil Morkovkin.
> >
> >
>


-- 
이종열, Jongyoul Lee, 李宗烈
http://madeng.net


[GitHub] [zeppelin] zjffdu commented on a change in pull request #3314: [ZEPPELIN-4019] Interpreter process get note from server

2019-03-04 Thread GitBox
zjffdu commented on a change in pull request #3314: [ZEPPELIN-4019] Interpreter 
process get note from server
URL: https://github.com/apache/zeppelin/pull/3314#discussion_r262324196
 
 

 ##
 File path: 
zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
 ##
 @@ -1844,6 +1849,61 @@ public void onParaInfosReceived(String noteId, String 
paragraphId,
 }
   }
 
+  @Override
+  public List getParagraphList(String user, String noteId)
+  throws TException, ServiceException {
+try {
+  AuthenticationInfo authInfo = new AuthenticationInfo();
+  authInfo.setUser(user);
+
+  Set userAndRoles = new HashSet<>();
+  userAndRoles.add(user);
+
+  ServiceContext serviceContext = new ServiceContext(authInfo, 
userAndRoles);
+  Note note = getNotebookService().getNote(noteId, serviceContext,
 
 Review comment:
   NotebookService is usually for external call (such as websocket or rest 
api). Because only websocket & rest api needs callback. Here we can directly 
call notebook() to get Note and check permission.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [zeppelin] zjffdu commented on issue #3308: [ZEPPELIN-3986]. Cannot access any JAR in yarn cluster mode

2019-03-04 Thread GitBox
zjffdu commented on issue #3308: [ZEPPELIN-3986]. Cannot access any JAR in yarn 
cluster mode
URL: https://github.com/apache/zeppelin/pull/3308#issuecomment-469506673
 
 
   Will merge if no more comments


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


Re: Zeppelin in GSOC 2019

2019-03-04 Thread moon soo Lee
Hi,

Great to see your interest to project. Thanks!
Looks like we need volunteers for a mentor and some backend subject for
GSoC2019.
Any ideas?

Best,
moon




On Mon, Mar 4, 2019 at 3:05 PM Vasiliy Morkovkin 
wrote:

> Hi everyone, I'm pursuing bachelor degree at Moscow institute of physics
> and technology and eager to contribute to Zeppelin in context of GSOC
> 2019. I've become a real fan of Zeppelin over the past couple of months,
> using it at my job. But I have found out only one ticket (front-end
> task) with label of GSOC 2019 on your Jira. Perhaps you may have any
> ideas for new features or improvements in Zeppelin, but you don't have
> enough hands on them. It would be wonderful if anyone agreed to mentor
> these ideas within GSOC :)
> Currently I am in a position of Scala developer (back-end) for 1.5 year.
> I also can write in Java or Python without any problems if necessary.
> Really fond of databases and highload. Also I have experience with some
> other great Apache projects like Cassandra, Kafka and Spark.
>
> Best regards, Basil Morkovkin.
>
>


[GitHub] [zeppelin] Leemoonsoo commented on issue #3295: Fix misspelled word

2019-03-04 Thread GitBox
Leemoonsoo commented on issue #3295: Fix misspelled word
URL: https://github.com/apache/zeppelin/pull/3295#issuecomment-469489864
 
 
   I'll merge this to master and branch-0.8 if no further discussions


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[jira] [Created] (ZEPPELIN-4029) Data retention policy for Zeppelin

2019-03-04 Thread zhixia dai (JIRA)
zhixia dai created ZEPPELIN-4029:


 Summary: Data retention policy for Zeppelin 
 Key: ZEPPELIN-4029
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4029
 Project: Zeppelin
  Issue Type: Improvement
Reporter: zhixia dai






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


Zeppelin in GSOC 2019

2019-03-04 Thread Vasiliy Morkovkin
Hi everyone, I'm pursuing bachelor degree at Moscow institute of physics 
and technology and eager to contribute to Zeppelin in context of GSOC 
2019. I've become a real fan of Zeppelin over the past couple of months, 
using it at my job. But I have found out only one ticket (front-end 
task) with label of GSOC 2019 on your Jira. Perhaps you may have any 
ideas for new features or improvements in Zeppelin, but you don't have 
enough hands on them. It would be wonderful if anyone agreed to mentor 
these ideas within GSOC :)
Currently I am in a position of Scala developer (back-end) for 1.5 year. 
I also can write in Java or Python without any problems if necessary. 
Really fond of databases and highload. Also I have experience with some 
other great Apache projects like Cassandra, Kafka and Spark.


Best regards, Basil Morkovkin.



Apache Zeppelin First Community Meeting + TGI Zeppelin

2019-03-04 Thread Mei Long
Heya Zeppeliners,

Friendly reminder: We're having our first community meeting today at 3pm
pt/6pm et. https://zoom.us/j/2098012301

Also, please join us for TGI Zeppelin episode 1 on March 8th 1pm pt/4pm et,
live on YouTube. https://youtu.be/9B9VoN8Hff0 Moon will be sharing Apache
Zeppelin + Kubernetes.

See you all soon!
Mei


[jira] [Created] (ZEPPELIN-4028) New zpln notes impossible to delete

2019-03-04 Thread Maziyar PANAHI (JIRA)
Maziyar PANAHI created ZEPPELIN-4028:


 Summary: New zpln notes impossible to delete
 Key: ZEPPELIN-4028
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4028
 Project: Zeppelin
  Issue Type: Bug
  Components: zeppelin-server, zeppelin-zengine
Affects Versions: 0.9.0
Reporter: Maziyar PANAHI
 Attachments: zeppelin-ghost-notes-bug.gif

Hi,

I am using 0.9.0 which has zpln as the new supported note format. However, I 
have a couple of problems:

1- If everyone at the same time creates a note with the same name, even though 
there is a unique ID after the name on HDFS, it still messes up all the 
permissions! An empty note I created just needs to wait a few seconds and then 
it says I don't have enough permission to view it. 

 

2- It becomes impossible to remove these notes! It says it doesn't exist!

!zeppelin-ghost-notes-bug.gif!

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (ZEPPELIN-4027) Reload notes from storage displays user's notes to everyone

2019-03-04 Thread Maziyar PANAHI (JIRA)
Maziyar PANAHI created ZEPPELIN-4027:


 Summary: Reload notes from storage displays user's notes to 
everyone
 Key: ZEPPELIN-4027
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4027
 Project: Zeppelin
  Issue Type: Bug
  Components: zeppelin-zengine
Affects Versions: 0.9.0
Reporter: Maziyar PANAHI
 Attachments: zeppelin-reload-notebooks-bug.gif

Hi,

 

If a user clicks on "Reload notes from storage", everyone else will see his/her 
notes on their homepage instead of their own notes! 

 

!zeppelin-reload-notebooks-bug.gif!

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] [zeppelin] liuxunorg commented on issue #3314: [ZEPPELIN-4019] Interpreter process get note from server

2019-03-04 Thread GitBox
liuxunorg commented on issue #3314: [ZEPPELIN-4019] Interpreter process get 
note from server
URL: https://github.com/apache/zeppelin/pull/3314#issuecomment-469211957
 
 
   @zjffdu , CI pass. https://travis-ci.org/liuxunorg/zeppelin/builds/501368001
   Please help me review the code. Thanks!


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services