[GitHub] zeppelin issue #2506: [ZEPPELIN-2813] revisions comparator

2017-07-31 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue:

https://github.com/apache/zeppelin/pull/2506
  
@zjffdu 
made a separate window because I think that it's more convenient (when a 
lot of code) and now rewritten for a long time as it is necessary to rewrite 
all the layout


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2506: [ZEPPELIN-2813] revisions comparator

2017-07-31 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2506
  
@tinkoff-dwh  It looks great. One suggestion is that is it possible to show 
the revision comparison inline instead of popping up a new window. Because I 
think we can some followup work for this feature, like revert to some revision, 
doing it is inline is more convenient for users.  



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2506: [ZEPPELIN-2813] revisions comparator

2017-07-31 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/2506
  
re: doc - I see what you mean. I think it'll be great to have doc on 
import/export, and this, maybe like 
https://zeppelin.apache.org/docs/0.7.2/manual/notebookashomepage.html


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2506: [ZEPPELIN-2813] revisions comparator

2017-07-31 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/2506
  
+1 to that 
https://github.com/apache/zeppelin/pull/2506#pullrequestreview-53385386



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2474: [ZEPPELIN-2753] Basic Implementation of IPython Interp...

2017-07-31 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2474
  
Push another commit to support streaming output


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2455: ZEPPELIN-1515. Notebook: HDFS as a backend storage (Us...

2017-07-31 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2455
  
Thanks for review. @hayssams I did that in zeppelin-daemon.sh. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin pull request #2511: Fix Missing import

2017-07-31 Thread Sdedelbrock
GitHub user Sdedelbrock opened a pull request:

https://github.com/apache/zeppelin/pull/2511

Fix Missing import

### What is this PR for?
The python interpreter has a bug when trying to render matplotlib images 
from the z.show() function.  Line 139 of 
`python/src/main/resources/python/zeppelin_python.py` references un-imported 
package `base64`.  `import base64` was added to the file to prevent this error 
in the future.


### What type of PR is it?
Bug Fix

### Todos
* [x] - Add missing `base64` module to 
`python/src/main/resources/python/zeppelin_python.py`

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-2821

* Open an issue on Jira https://issues.apache.org/jira/browse/ZEPPELIN/
* Put link here, and add [ZEPPELIN-*Jira number*] in PR title, eg. 
[ZEPPELIN-533]

### How should this be tested?
Display a matplotlib image with zeppelin:
```python
import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
z.show(plt)
```

### Questions:
* Does the licenses files need update?
no
* Is there breaking changes for older versions?
no
* Does this needs documentation?
no


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Sdedelbrock/zeppelin patch-1

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zeppelin/pull/2511.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #2511


commit 969d82ff97419d928a7a462f2e0c236bf38099b5
Author: Shiem Edelbrock 
Date:   2017-07-31T20:19:30Z

Fix Missing import

line 139 references un-imported package `base64`, added import statement




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Created] (ZEPPELIN-2821) Error

2017-07-31 Thread Shiem Edelbrock (JIRA)
Shiem Edelbrock created ZEPPELIN-2821:
-

 Summary: Error 
 Key: ZEPPELIN-2821
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2821
 Project: Zeppelin
  Issue Type: Bug
  Components: python-interpreter
Affects Versions: 0.7.2
Reporter: Shiem Edelbrock


The python interpreter has a bug when trying to render matplotlib images from 
the z.show() function.  Line 139 of 
`python/src/main/resources/python/zeppelin_python.py` references un-imported 
package `base64`.  `import base64` was added to the file to prevent this error 
in the future.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[GitHub] zeppelin issue #2416: [ZEPPELIN-2647] Set admin user as owner when user crea...

2017-07-31 Thread bhavintandel
Github user bhavintandel commented on the issue:

https://github.com/apache/zeppelin/pull/2416
  
Have you guys planned to merge this request anytime soon ? If Yes, for 
which release have you planned 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2455: ZEPPELIN-1515. Notebook: HDFS as a backend storage (Us...

2017-07-31 Thread hayssams
Github user hayssams commented on the issue:

https://github.com/apache/zeppelin/pull/2455
  
@zjffdu I think that the zeppelin.sh file should be updated with the 
HADOOP_CONF_DIR in the classpath 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2509: [ZEPPELIN-2818] Improve to better rendering from jupyt...

2017-07-31 Thread cloverhearts
Github user cloverhearts commented on the issue:

https://github.com/apache/zeppelin/pull/2509
  
https://travis-ci.org/cloverhearts/zeppelin

ci pass :)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[jira] [Created] (ZEPPELIN-2820) Cancellation python or pyspark paragraph does not always work

2017-07-31 Thread Tinkoff DWH (JIRA)
Tinkoff DWH created ZEPPELIN-2820:
-

 Summary: Cancellation python or pyspark paragraph does not always 
work
 Key: ZEPPELIN-2820
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2820
 Project: Zeppelin
  Issue Type: Bug
  Components: Interpreters, pySpark, python-interpreter
Reporter: Tinkoff DWH
Assignee: Tinkoff DWH
Priority: Minor


When cancellation doesn't work: 
run endless loop

{code:java}
%python
i = 1
while True:
i = i + 1
{code}

and try to cancel it (it will continue to run, if it has already running)



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[GitHub] zeppelin issue #2502: [ZEPPELIN-2807] Passing Z variables to SQL Interpreter...

2017-07-31 Thread sanjaydasgupta
Github user sanjaydasgupta commented on the issue:

https://github.com/apache/zeppelin/pull/2502
  
I can have a go at creating/updating the documentation if someone can help 
me with any guideance on where/how to begin.

My familiarity with Jupyter is very limited, so while I will dig around, I 
would also request @Tagar to help if possible.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2509: [ZEPPELIN-2818] Improve to better rendering from jupyt...

2017-07-31 Thread cloverhearts
Github user cloverhearts commented on the issue:

https://github.com/apache/zeppelin/pull/2509
  
And Zeppelin changed Markdown4j to the default interpreter Pegdown to rende.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2509: [ZEPPELIN-2818] Improve to better rendering from jupyt...

2017-07-31 Thread cloverhearts
Github user cloverhearts commented on the issue:

https://github.com/apache/zeppelin/pull/2509
  
I was Improved test case.
and I was fixed command line bug. 
(https://github.com/apache/zeppelin/pull/2509/files#diff-fde78c9194e779309be4036e9a31904cR187)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2483: [ZEPPELIN-2766] Make online resources url configurable...

2017-07-31 Thread andreaTP
Github user andreaTP commented on the issue:

https://github.com/apache/zeppelin/pull/2483
  
ping


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2442: [ZEPPELIN-2679] JDBC. precode for session

2017-07-31 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue:

https://github.com/apache/zeppelin/pull/2442
  
Ready to review


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] zeppelin issue #2510: [ZEPPELIN-2756] Support ansi escape code for colorizin...

2017-07-31 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2510
  
Great, Thanks @1ambda 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---