[GitHub] zeppelin issue #2511: [ZEPPELIN-2821] Fix Missing import

2017-08-08 Thread Sdedelbrock
Github user Sdedelbrock commented on the issue:

https://github.com/apache/zeppelin/pull/2511
  
it.
finally..
happened!
😄 


---
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 #2521: [ZEPPELIN-2841] fix a problem in shell interpreter . W...

2017-08-08 Thread vistep
Github user vistep commented on the issue:

https://github.com/apache/zeppelin/pull/2521
  
Jenkins said that "Can't find build for commit 
e8cbdd180a22d1d53366c94c5432c217d70a5727 from vistep".
I have no idea about what happened. How to  fix it?


---
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 #2514: replace pegdown to markdown zeppelin interpreter

2017-08-08 Thread cloverhearts
Github user cloverhearts commented on the issue:

https://github.com/apache/zeppelin/pull/2514
  
Sorry for the delay.
@Leemoonsoo I will fix it.


---
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 #2445: ZEPPELIN-2674 Ignite version upgraded up to 2.0

2017-08-08 Thread 1ambda
Github user 1ambda commented on the issue:

https://github.com/apache/zeppelin/pull/2445
  
@agura Hi, you don't need to setup CI on your laptop.

1. Signup travis-ci.org
2. Change your repository incubator-zeppelin to `zeppelin`: 
https://github.com/agura?tab=repositories
3. Configure forked repository `zeppelin`in travis CI
4. Close and reopen this PR.

it takes 5-10 mins.


---
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: [ZEPPELIN-2821] Fix Missing import

2017-08-08 Thread Sdedelbrock
GitHub user Sdedelbrock reopened a pull request:

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

[ZEPPELIN-2821] 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 2627e709d54c3613d59b5f6d1d127fe0dabdc470
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.
---


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

2017-08-08 Thread Sdedelbrock
Github user Sdedelbrock closed the pull request at:

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


---
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 #2522: Fix Missing import

2017-08-08 Thread Sdedelbrock
GitHub user Sdedelbrock opened a pull request:

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

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/2522.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 #2522


commit 2627e709d54c3613d59b5f6d1d127fe0dabdc470
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.
---


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

2017-08-08 Thread Sdedelbrock
Github user Sdedelbrock closed the pull request at:

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


---
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: [ZEPPELIN-2821] Fix Missing import

2017-08-08 Thread Sdedelbrock
GitHub user Sdedelbrock reopened a pull request:

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

[ZEPPELIN-2821] 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 2627e709d54c3613d59b5f6d1d127fe0dabdc470
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.
---


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

2017-08-08 Thread Sdedelbrock
Github user Sdedelbrock closed the pull request at:

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


---
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 #2516: [ZEPPELIN-2827] Spark's pyspark fails if unsupp...

2017-08-08 Thread asfgit
Github user asfgit closed the pull request at:

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


---
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-2842) Add close notebook support in Notebook and Job page when using Per Note isolated interpreter settings

2017-08-08 Thread LEI ZHANG (JIRA)
LEI ZHANG created ZEPPELIN-2842:
---

 Summary: Add close notebook support in Notebook and Job page when 
using Per Note isolated interpreter settings
 Key: ZEPPELIN-2842
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2842
 Project: Zeppelin
  Issue Type: Wish
  Components: GUI
Affects Versions: 0.7.2
Reporter: LEI ZHANG


Wish to have close notebook (Release all the interpreter and resources) in 
Notebook and Job page. I already implemented one but still have some issues. 
Can someone explain to me how to contribute my work into main? first time 
working with such project.

The one I implemented have close button after run all in both notebook and job.



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


[GitHub] zeppelin issue #2445: ZEPPELIN-2674 Ignite version upgraded up to 2.0

2017-08-08 Thread agura
Github user agura commented on the issue:

https://github.com/apache/zeppelin/pull/2445
  
@1ambda Hi! I still don't have time for set up CI on my laptop. But my 
changes are so small and related with Ignite interpreter only. All Ignite 
interpreter tests are passed. Could you please merge this PR?

Thanks for comment about fork name. I'll create new fork for future PRs.


---
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 #2416: [ZEPPELIN-2647] Set admin user as owner when user crea...

2017-08-08 Thread 1ambda
Github user 1ambda commented on the issue:

https://github.com/apache/zeppelin/pull/2416
  
@bhavintandel I haven't checked this can be merged into the 0.7 branch. But 
if there is no problem to merge, and we can include this PR in 0.7.3

- even if there's conflict, we can create a separate PR.


---
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 #2416: [ZEPPELIN-2647] Set admin user as owner when user crea...

2017-08-08 Thread 1ambda
Github user 1ambda commented on the issue:

https://github.com/apache/zeppelin/pull/2416
  
@yu74n Could you resolve conflict and check my last comment? Thanks.


---
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 #2512: [ZEPPELIN-2823] Notebook saved status is wrong if ther...

2017-08-08 Thread 1ambda
Github user 1ambda commented on the issue:

https://github.com/apache/zeppelin/pull/2512
  
I missed the notification for a while. Sorry for the late response. Let me 
check and reply ASAP.


---
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 #2511: [ZEPPELIN-2821] Fix Missing import

2017-08-08 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/2511
  
You can close/open this PR to trigger Jenkins. Then Jenkins will check last 
build result and update this PR build status. Or just leaving message would be 
okay too, like you just did.

I checked the build result manually 
https://travis-ci.org/Sdedelbrock/zeppelin/builds/261941334.

LGTM and merge to master and branch-0.7 if no further comments.


---
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 #2511: [ZEPPELIN-2821] Fix Missing import

2017-08-08 Thread Sdedelbrock
Github user Sdedelbrock commented on the issue:

https://github.com/apache/zeppelin/pull/2511
  
I've force pushed the PR twice to re-trigger the build, and one of the jobs 
consistently times out.  I have disabled test concurrency to no avail.  I have 
manually re-run the (failed) test with success, however Jenkins still shows a 
failure.

Please let me know how you would like me to proceed.


---
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-08-08 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/2474
  
Tried last commit.

I installed jupyter, IPython, ipykernel, grpcio in my conda environment and 
i configured my python interpreter like

![image](https://user-images.githubusercontent.com/1540981/29084421-c7df43a8-7c20-11e7-9299-2d7ab88d17fd.png)

And then i'm getting `No module named py4j.java_gateway` error on first 
`%python.ipython` execution


![image](https://user-images.githubusercontent.com/1540981/29084458-da47f3b4-7c20-11e7-8ab7-6c281f0c3d54.png)

And second execution, `z` is not available.


![image](https://user-images.githubusercontent.com/1540981/29084488-f49a8358-7c20-11e7-8b99-47605981faa3.png)

Looks like py4j library is not in python path. @zjffdu Do you have any idea 
on this?


---
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 #2518: Fixing zeppelin-2281 by clearing output when data is a...

2017-08-08 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/2518
  
Thanks @SachinJanani for contribution.
Could you try setup CI and see it this PR passes the CI build?

```
Looks like travis-ci is not configured for your fork.
Please setup by swich on 'zeppelin' repository at 
https://travis-ci.org/profile and travis-ci.
And then make sure 'Build branch updates' option is enabled in the settings 
https://travis-ci.org/SachinJanani/zeppelin/settings.

To trigger CI after setup, you will need ammend your last commit with
git commit --amend
git push your-remote HEAD --force

See 
http://zeppelin.apache.org/contribution/contributions.html#continuous-integration.
```


---
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-2841) shell interpreter complained that working directory '.' can not be found in docker enviroment

2017-08-08 Thread Jiaming Shu (JIRA)
Jiaming Shu created ZEPPELIN-2841:
-

 Summary: shell interpreter complained that working directory '.' 
can not be found in docker enviroment
 Key: ZEPPELIN-2841
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2841
 Project: Zeppelin
  Issue Type: Bug
  Components: Interpreters
Affects Versions: 0.7.2, 0.7.1, 0.7.0
 Environment: v7.0
Reporter: Jiaming Shu
 Fix For: 0.6.3, 0.7.3, 0.8.0


I installed zeppelin v7.0 on a centos6.5 based image, which made an new image.
I started the new image with CMD  +_${ZEPPELIN_HOME}/bin/zeppelin.sh --config 
${ZEPPELIN_CONF_DIR} _+ . It stared and work normally until I run an shell 
script.
An script as simple as 'ls'. It failed and the log said that working directory 
'.' can not be
found.
I add a line of code to set current working directory to USER`s home, and it 
works.



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


[GitHub] zeppelin issue #2512: [ZEPPELIN-2823] Notebook saved status is wrong if ther...

2017-08-08 Thread prabhjyotsingh
Github user prabhjyotsingh commented on the issue:

https://github.com/apache/zeppelin/pull/2512
  
@felixcheung, @AhyoungRyu any views on this one?


---
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-2840) combined git and azure storage classes is wrong in documentation

2017-08-08 Thread Frank vissing (JIRA)
Frank vissing created ZEPPELIN-2840:
---

 Summary: combined git and azure storage classes is wrong in 
documentation
 Key: ZEPPELIN-2840
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2840
 Project: Zeppelin
  Issue Type: Improvement
  Components: documentation
Affects Versions: 0.7.2, 0.7.1, 0.7.0, 0.6.2, 0.6.1, 0.6.0
Reporter: Frank vissing
Priority: Trivial


on 
https://zeppelin.apache.org/docs/0.7.2/storage/storage.html#notebook-storage-in-azure
ther is a missing org. on org.apache.zeppelin.notebook.repo.AzureNotebookRepo 
the code

{code:xml}

  zeppelin.notebook.storage
  org.apache.zeppelin.notebook.repo.GitNotebookRepo, 
apache.zeppelin.notebook.repo.AzureNotebookRepo
  notebook persistence layer implementation

{code}
should be
{code:xml}

  zeppelin.notebook.storage
  org.apache.zeppelin.notebook.repo.GitNotebookRepo, 
org.apache.zeppelin.notebook.repo.AzureNotebookRepo
  notebook persistence layer implementation

{code}



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


[GitHub] zeppelin issue #1645: [ZEPPELIN-1671] Conda interpreter

2017-08-08 Thread edgarson
Github user edgarson commented on the issue:

https://github.com/apache/zeppelin/pull/1645
  
The same error occurs when User Impersonation is enabled for Python.


---
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 #2478: [ZEPPELIN-2761] - Neo4j Interpreter

2017-08-08 Thread jexp
Github user jexp commented on the issue:

https://github.com/apache/zeppelin/pull/2478
  
@1ambda any update on the review progress? 
We really would love to see this feature in Apache Zeppelin :)

Thanks a lot.


---
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-2837) Cannot jump to the old address after login

2017-08-08 Thread zhouqi (JIRA)
zhouqi created ZEPPELIN-2837:


 Summary: Cannot jump to the old address after login
 Key: ZEPPELIN-2837
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2837
 Project: Zeppelin
  Issue Type: Bug
  Components: front-end, security
Affects Versions: 0.7.2
Reporter: zhouqi


copy notebook(or others) address to browser will jump to the home page,but 
cannot jump to the old address after login 



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


[jira] [Created] (ZEPPELIN-2836) link or export notebook report type without login

2017-08-08 Thread zhouqi (JIRA)
zhouqi created ZEPPELIN-2836:


 Summary: link or export notebook report type without login
 Key: ZEPPELIN-2836
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2836
 Project: Zeppelin
  Issue Type: Wish
  Components: front-end, GUI
Reporter: zhouqi


I need link or export notebook report type to someone without account , but now 
I cant't do that.



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


[GitHub] zeppelin issue #2373: [ZEPPELIN-2598] Securing Zeppelin with OpenID Connect

2017-08-08 Thread SarunasG
Github user SarunasG commented on the issue:

https://github.com/apache/zeppelin/pull/2373
  
Hi @andreaTP 

Having this line `/** = oidcSecurityFilter` in  [urls] section fixed 
everything, now it works totally fine! Thank You very much for such a quick 
response and all the help to get it working!!


---
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 #2507: [ZEPPELIN-2815] Improve interpreter dependencie...

2017-08-08 Thread necosta
GitHub user necosta reopened a pull request:

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

[ZEPPELIN-2815] Improve interpreter dependencies logging

### What is this PR for?
As a developer, I want to be able to debug issues on dependency resolution 
"easier". 
To achieve this, making available (in debug mode), existing listeners. 
Also, exposing exceptions on dependency resolver.

### What type of PR is it?
Improvement

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

### How should this be tested?
Enable DEBUG logging mode. Import dependencies. Check detailed info. from 
dependency loading being logged.

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


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

$ git pull https://github.com/nokia/zeppelin zeppelin2815

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

https://github.com/apache/zeppelin/pull/2507.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 #2507


commit b773d8a775540509018e6be268980964538c4858
Author: Nelson Costa 
Date:   2017-07-27T20:55:22Z

[ZEPPELIN-2815] Improve interpreter dependencies logging

commit d381f3b31ec9a6c95538324ef6d9383ea2acaff1
Author: Nelson Costa 
Date:   2017-08-07T06:41:37Z

[ZEPPELIN-2815] Improve interpreter dependencies logging

commit ea353fa2c16c38f8408b922bb61a9dfa269afdea
Author: Nelson Costa 
Date:   2017-08-08T07:11:17Z

[ZEPPELIN-2815] Improve interpreter dependencies logging




---
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 #2507: [ZEPPELIN-2815] Improve interpreter dependencie...

2017-08-08 Thread necosta
Github user necosta closed the pull request at:

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


---
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-08-08 Thread andreaTP
Github user andreaTP commented on the issue:

https://github.com/apache/zeppelin/pull/2483
  
thanks! :+1: 


---
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 #2373: [ZEPPELIN-2598] Securing Zeppelin with OpenID Connect

2017-08-08 Thread andreaTP
Github user andreaTP commented on the issue:

https://github.com/apache/zeppelin/pull/2373
  
Hi @SarunasG , yes I'm using Zeppelin with Keycloak from what I can see the 
only missing bit in your configuration is:
```
/** = oidcSecurityFilter
```


---
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 #2507: [ZEPPELIN-2815] Improve interpreter dependencies loggi...

2017-08-08 Thread necosta
Github user necosta commented on the issue:

https://github.com/apache/zeppelin/pull/2507
  
Makes sense @felixcheung . Changed warn message to 
`logger.warn("Unsuccessful transfer", event.getException());`


---
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 #2495: [HOTFIX] JDBC completions. fix cursor position

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

https://github.com/apache/zeppelin/pull/2495
  
fix is very important, because auto complete not works. And if you have 
many shemas and tables it it hell.


---
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 #2449: [Zeppelin-2676] recent notes list

2017-08-08 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/2449
  
I think we have a comment thread on this PR
https://github.com/apache/zeppelin/pull/2449#discussion_r127705438



---
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.
---