RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang, Last commit id for the zeppelin repo is 685eb9249d1c1d821ce57f1ed0559f1539dfbe69 Regards Naveen -Original Message- From: Jeff Zhang [mailto:zjf...@gmail.com] Sent: Monday, April 30, 2018 3:23 PM To: dev@zeppelin.apache.org Subject: Re: pspark interpreter not working for mat

[GitHub] zeppelin pull request #2951: ZEPPELIN-3435. Interpreter timeout lifecycle le...

2018-04-30 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/zeppelin/pull/2951 ---

[GitHub] zeppelin issue #2880: [ZEPPELIN-3351] Fix to build for spark 2.3

2018-04-30 Thread jongyoul
Github user jongyoul commented on the issue: https://github.com/apache/zeppelin/pull/2880 For now, we already had a `spark-2.3` profile on `spark/pom.xml`. Please close this PR if correct. ---

[GitHub] zeppelin issue #2848: [Zeppelin-3307] - Improved shared browsing/editing for...

2018-04-30 Thread jongyoul
Github user jongyoul commented on the issue: https://github.com/apache/zeppelin/pull/2848 I think this PR might be not bad for a small number of users, but, I'm not sure users increase. What do you think of it? It looks like calling websockets everytime whenever all users make changes

[GitHub] zeppelin issue #2951: ZEPPELIN-3435. Interpreter timeout lifecycle leads to ...

2018-04-30 Thread zjffdu
Github user zjffdu commented on the issue: https://github.com/apache/zeppelin/pull/2951 Thanks @weand will merge if no more comments ---

[GitHub] zeppelin issue #2951: ZEPPELIN-3435. Interpreter timeout lifecycle leads to ...

2018-04-30 Thread weand
Github user weand commented on the issue: https://github.com/apache/zeppelin/pull/2951 :+1: no more orphans were spotted since applying changes of this PR. ---

[GitHub] zeppelin issue #2953: [Zeppelin 3388] Refactor documentation for ZeppelinCon...

2018-04-30 Thread sanjaydasgupta
Github user sanjaydasgupta commented on the issue: https://github.com/apache/zeppelin/pull/2953 Hi @felixcheung, have addressed your comments above. Documentation written by a worldwide team of contributors can be notoriously ambiguous, and am happy to get a thorough review of

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang There are number of commits which are available in got log which commit I need check. Regards Naveen -Original Message- From: Jeff Zhang [mailto:zjf...@gmail.com] Sent: Monday, April 30, 2018 3:23 PM To: dev@zeppelin.apache.org Subject: Re: pspark interpreter not working for

Re: pspark interpreter not working for matplot library

2018-04-30 Thread Jeff Zhang
Which commit are you in ? I suspect you may mix with different zeppelin versions. Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore) < naveenakumar_gurushantap.panchappana...@nokia.com>于2018年4月30日周一 下午5:48写道: > Hi Zhang, > > When I use the following code for matplot lib > > %pyspark

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang, When I use the following code for matplot lib %pyspark import matplotlib.pyplot as plt plt.close() # Added here to reset the plot when rerunning the paragraph z.configure_mpl(angular=True, close=False) plt.plot([1, 2, 3], label=r'$y=x$') its giving the following error. Fail to execu

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang, Do we have any sample pyspark notebook which uses matplot library for 0.9.0 So that it will be clear like how we have to use instructions to plot the graph. Regards Naveen -Original Message- From: Jeff Zhang [mailto:zjf...@gmail.com] Sent: Monday, April 30, 2018 1:46 PM To:

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang, We have set the property what you have mentioned to false, I mean I have used 2nd approach still no luck. Regards Naveen -Original Message- From: Jeff Zhang [mailto:zjf...@gmail.com] Sent: Monday, April 30, 2018 1:46 PM To: dev@zeppelin.apache.org Subject: Re: pspark interpr

Re: pspark interpreter not working for matplot library

2018-04-30 Thread Jeff Zhang
2 Approaches for you. 1. Use the ipython approach I mentioned above 2. Disable ipython by setting zeppelin.pyspark.useIPython to false Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore) < naveenakumar_gurushantap.panchappana...@nokia.com>于2018年4月30日周一 下午4:09写道: > Hi Zhang > > In t

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Hi Zhang In the link what you have given there they are not using pyspark only they are using python interpreter We are facing the problem when we are using pyspark interpreter. Regards Naveen -Original Message- From: Jeff Zhang [mailto:zjf...@gmail.com] Sent: Monday, April 30, 2018

Re: pspark interpreter not working for matplot library

2018-04-30 Thread Jeff Zhang
Here's one sample notebook for your reference https://www.zepl.com/viewer/notebooks/bm90ZTovL3pqZmZkdS9lN2Q3ODNiODRkNjA0ZjVjODM1OWZlMWExZjM4OTk3Zi9ub3RlLmpzb24 Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore) < naveenakumar_gurushantap.panchappana...@nokia.com>于2018年4月30日周一 下午3:43

RE: pspark interpreter not working for matplot library

2018-04-30 Thread Panchappanavar, Naveenakumar Gurushantap (Nokia - IN/Bangalore)
Do we have any sample notebook where the following code is being used. %matplotlib inline Just to understand how it is being used, and one more thing like we are not using any ipython , we are using plan python2.X And one thing what we saw is when we use z.show(plt) instruction its able to sh

Re: pspark interpreter not working for matplot library

2018-04-30 Thread Jeff Zhang
Zeppelin has unit test for that guaranteed it could use matplotlib in both pyspark & python interpreter. The only change starting from 0.8 is that zeppelin would use ipython for python interpreter and pyspark interpreter if it is available. In that case, you can use mtpplotlib the same way in zepp

[GitHub] zeppelin issue #2950: ZEPPELIN-3432 Fix results object when throwing excepti...

2018-04-30 Thread jongyoul
Github user jongyoul commented on the issue: https://github.com/apache/zeppelin/pull/2950 I've checked this PR finally. ---