[jira] [Created] (ZEPPELIN-4345) Python Interpreter is not working in Windows

2019-09-23 Thread Ananth Kumar (Jira)
Ananth Kumar created ZEPPELIN-4345:
--

 Summary: Python Interpreter is not working in Windows
 Key: ZEPPELIN-4345
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4345
 Project: Zeppelin
  Issue Type: Bug
  Components: Interpreters
Affects Versions: 0.8.1
Reporter: Ananth Kumar


I am getting this error when I run the python code in notebook. I have defined 
path in environment variables and also tried defining path in zeppelin-env.cmd 

g.apache.thrift.TApplicationException: Internal error processing 
createInterpreter at 
org.apache.thrift.TApplicationException.read(TApplicationException.java:111) at 
org.apache.thrift.TServiceClient.receiveBase(TServiceClient.java:71) at 
org.apache.zeppelin.interpreter.thrift.RemoteInterpreterService$Client.recv_createInterpreter(RemoteInterpreterService.java:209)
 at 
org.apache.zeppelin.interpreter.thrift.RemoteInterpreterService$Client.createInterpreter(RemoteInterpreterService.java:192)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreter$2.call(RemoteInterpreter.java:169)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreter$2.call(RemoteInterpreter.java:165)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreterProcess.callRemoteFunction(RemoteInterpreterProcess.java:135)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreter.internal_create(RemoteInterpreter.java:165)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreter.open(RemoteInterpreter.java:132)
 at 
org.apache.zeppelin.interpreter.remote.RemoteInterpreter.getFormType(RemoteInterpreter.java:299)
 at org.apache.zeppelin.notebook.Paragraph.jobRun(Paragraph.java:407) at 
org.apache.zeppelin.scheduler.Job.run(Job.java:188) at 
org.apache.zeppelin.scheduler.RemoteScheduler$JobRunner.run(RemoteScheduler.java:315)
 at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at 
java.util.concurrent.FutureTask.run(FutureTask.java:266) at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
 at 
java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
 at 
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) 
at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) 
at java.lang.Thread.run(Thread.java:745)



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (ZEPPELIN-4346) Please Update the Documentation

2019-09-23 Thread John (Jira)
John created ZEPPELIN-4346:
--

 Summary: Please Update the Documentation
 Key: ZEPPELIN-4346
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-4346
 Project: Zeppelin
  Issue Type: Improvement
  Components: documentation
Affects Versions: 0.9.0
 Environment: 0.9.0-SNAPSHOT
Reporter: John


Hey,

I like your product a lot!
Nevertheless, I the Documentation regard the *ZeppelinContext and its Object 
Exchange*

[https://zeppelin.apache.org/docs/0.9.0-SNAPSHOT/usage/other_features/zeppelin_context.html#object-exchange]

Needs to be updated.

It's not working to retrieve

{code:java}
val myPythonDataFrame = z.get("myPythonDataFrame").asInstanceOf[DataFrame]
{code}

If I remove `.asInstanceOf[DataFrame]`, then it's fine. Maybe I am missing some 
libs to import.

Another issue is
{code:java}
# Exchanging data frames
myPythonDataFrame = ...
z.put("myPythonDataFrame", postsDf._jdf)
{code}

It should be 

{code:java}
# Exchanging data frames
myPythonDataFrame = ...
z.put("myPythonDataFrame", myPythonDataFrame )
{code}

Right?
Maybe I miss something and don't understand `._jdf`



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[GitHub] [zeppelin] Leemoonsoo commented on issue #3456: [ZEPPELIN-3984] Flaky test NotebookRestApiTest.testRunWithServerRestart

2019-09-23 Thread GitBox
Leemoonsoo commented on issue #3456: [ZEPPELIN-3984] Flaky test 
NotebookRestApiTest.testRunWithServerRestart
URL: https://github.com/apache/zeppelin/pull/3456#issuecomment-534183688
 
 
   Thanks @prabhjyotsingh @felixcheung. Merge to master


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] asfgit closed pull request #3456: [ZEPPELIN-3984] Flaky test NotebookRestApiTest.testRunWithServerRestart

2019-09-23 Thread GitBox
asfgit closed pull request #3456: [ZEPPELIN-3984] Flaky test 
NotebookRestApiTest.testRunWithServerRestart
URL: https://github.com/apache/zeppelin/pull/3456
 
 
   


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: [DISCUSS] Release 0.8.2

2019-09-23 Thread Eric Pugh
The iPython related fixes would address some issues I’ve run into!

> On Sep 22, 2019, at 11:31 PM, Jeff Zhang  wrote:
> 
> Hi Folks,
> 
> 0.8.1 is released half year ago (Jan 2019), I'd to start the discussion about 
> releasing of 0.8.2 which fixed several critical issues. Let me know your 
> thoughts, thanks.
> 
> https://jira.apache.org/jira/issues/?jql=project%20%3D%20ZEPPELIN%20AND%20fixVersion%20%3D%200.8.2
>  
> 
> 
> 
> 
> -- 
> Best Regards
> 
> Jeff Zhang

___
Eric Pugh | Founder & CEO | OpenSource Connections, LLC | 434.466.1467 | 
http://www.opensourceconnections.com  | 
My Free/Busy   
Co-Author: Apache Solr Enterprise Search Server, 3rd Ed 


This e-mail and all contents, including attachments, is considered to be 
Company Confidential unless explicitly stated otherwise, regardless of whether 
attachments are marked as such.



[GitHub] [zeppelin] Leemoonsoo commented on issue #3451: [ZEPPELIN-4226] Fix "View in Spark web UI" in kubernetes mode

2019-09-23 Thread GitBox
Leemoonsoo commented on issue #3451: [ZEPPELIN-4226] Fix "View in Spark web UI" 
in kubernetes mode
URL: https://github.com/apache/zeppelin/pull/3451#issuecomment-534304140
 
 
   Merge to master


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] asfgit closed pull request #3451: [ZEPPELIN-4226] Fix "View in Spark web UI" in kubernetes mode

2019-09-23 Thread GitBox
asfgit closed pull request #3451: [ZEPPELIN-4226] Fix "View in Spark web UI" in 
kubernetes mode
URL: https://github.com/apache/zeppelin/pull/3451
 
 
   


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: [DISCUSS] Release 0.8.2

2019-09-23 Thread Prabhjyot Singh
+1

I see a lot of issues are fixed in the past few months. This sounds a
good intermediate step before 0.9 release.

On Tue, 24 Sep 2019 at 00:23, Eric Pugh 
wrote:

> The iPython related fixes would address some issues I’ve run into!
>
> On Sep 22, 2019, at 11:31 PM, Jeff Zhang  wrote:
>
> Hi Folks,
>
> 0.8.1 is released half year ago (Jan 2019), I'd to start the discussion
> about releasing of 0.8.2 which fixed several critical issues. Let me know
> your thoughts, thanks.
>
>
> https://jira.apache.org/jira/issues/?jql=project%20%3D%20ZEPPELIN%20AND%20fixVersion%20%3D%200.8.2
>
>
>
> --
> Best Regards
>
> Jeff Zhang
>
>
> ___
> *Eric Pugh **| *Founder & CEO | OpenSource Connections, LLC | 434.466.1467
> | http://www.opensourceconnections.com | My Free/Busy
> 
> Co-Author: Apache Solr Enterprise Search Server, 3rd Ed
> 
> This e-mail and all contents, including attachments, is considered to be
> Company Confidential unless explicitly stated otherwise, regardless
> of whether attachments are marked as such.
>
>

-- 
Regards,
Prabhjyot Singh


[GitHub] [zeppelin] prabhjyotsingh commented on a change in pull request #3425: [ZEPPELIN-4301] js double precision loss problem

2019-09-23 Thread GitBox
prabhjyotsingh commented on a change in pull request #3425: [ZEPPELIN-4301]  js 
double precision loss problem
URL: https://github.com/apache/zeppelin/pull/3425#discussion_r327418103
 
 

 ##
 File path: zeppelin-web/src/app/tabledata/tabledata.js
 ##
 @@ -60,7 +60,7 @@ export default class TableData extends Dataset {
 } else {
   let valueOfCol;
   if (!(col[0] === '0' || col[0] === '+' || col.length > 
float64MaxDigits)) {
-if (!isNaN(valueOfCol = parseFloat(col)) && isFinite(col)) {
+if (!isNaN(valueOfCol = col) && isFinite(col)) {
 
 Review comment:
   Will changing this (removing `parseFloat`) matter in this case? If I 
understand it right, ideally it should not even come to this if.
   Which makes me wonder what is `typeof col`, ideally that should be string, 
and if it was a string and `col.length` in this case should have been 19, which 
is greater than 16 (float64MaxDigits). 
   Also if it is not a string then that a limitation of JS itself, as this is 
what I see on my browser console:
   ```
   let col=6703273802681287331;
   console.log(col);
   6703273802681288000
   ```
   
   Will try to repro this using JDBC interpreter,  what I used to test is the 
following paragraph:
   ```
   %sh
   echo -e "%table id\tage"
   echo -e "6703273802681287331\t2"
   ```


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] santosh1994 opened a new pull request #3438: [ZEPPELIN-4320] fix packages to bundle list

2019-09-23 Thread GitBox
santosh1994 opened a new pull request #3438: [ZEPPELIN-4320] fix packages to 
bundle list
URL: https://github.com/apache/zeppelin/pull/3438
 
 
   ### What is this PR for?
   Enabled Helium packages are not getting installed/bundled on zeppelin 
startup. Instead getting bundled later on paragraph with bundle dependency are 
loaded.
   
   
   ### What type of PR is it?
   Bug Fix
   
   ### Todos
   * [ ] - Task
   
   ### What is the Jira issue?
   https://issues.apache.org/jira/browse/ZEPPELIN-4320
   
   ### How should this be tested?
   * Enable some helium packages
   * Remove helium cache folder(local-repo)
   * Restart zeppelin and verify, enabled packages are getting bundled on 
zeppelin server start
   
   ### Screenshots (if appropriate)
   
   ### Questions:
   * Does the licenses files need update?
   * Is there breaking changes for older versions?
   * Does this needs documentation?
   


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] santosh1994 closed pull request #3438: [ZEPPELIN-4320] fix packages to bundle list

2019-09-23 Thread GitBox
santosh1994 closed pull request #3438: [ZEPPELIN-4320] fix packages to bundle 
list
URL: https://github.com/apache/zeppelin/pull/3438
 
 
   


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] santosh1994 commented on issue #3438: [ZEPPELIN-4320] fix packages to bundle list

2019-09-23 Thread GitBox
santosh1994 commented on issue #3438: [ZEPPELIN-4320] fix packages to bundle 
list
URL: https://github.com/apache/zeppelin/pull/3438#issuecomment-534410108
 
 
   @Leemoonsoo Tried closing and reopen PR . Seems like Jenkins is not picking 
travis build job - https://travis-ci.org/santosh1994/zeppelin/builds/588287134


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] santosh1994 commented on issue #3437: [ZEPPELIN-4319] Fix spell interpreter parse text logic

2019-09-23 Thread GitBox
santosh1994 commented on issue #3437: [ZEPPELIN-4319] Fix spell interpreter 
parse text logic
URL: https://github.com/apache/zeppelin/pull/3437#issuecomment-534410436
 
 
   @Leemoonsoo Tried closing and reopen PR . Seems like Jenkins is not picking 
travis build job - https://travis-ci.org/santosh1994/zeppelin/builds/588286857


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