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

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

https://github.com/apache/zeppelin/pull/2510
  
LG, I guess we go back to 2474 then


---
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 #2474: [ZEPPELIN-2753] Basic Implementation of IPython...

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

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


---
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 #2422: [WIP] [ZEPPELIN-2627] Interpreter refactor

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

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


---
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 #2422: [WIP] [ZEPPELIN-2627] Interpreter refactor

2017-08-04 Thread zjffdu
GitHub user zjffdu reopened a pull request:

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

[WIP] [ZEPPELIN-2627] Interpreter refactor

### What is this PR for?

I didn't intended to make such large change at the beginning, but found 
many things are coupled together that I have to make such large change. Several 
suggestions for you how to review and read it.

* I move the interpreter package from zeppelin-zengine to 
zeppelin-interpreter, this is needed for this refactoring.
* The overall change is the same as I described in the design doc. I would 
suggest you to read the unit test first. These unit test is very readable and 
easy to understand what the code is doing now. `InterpreterFactoryTest`, 
`InterpreterGroupTest`, `InterpreterSettingTest`, 
`InterpreterSettingManagerTest`, `RemoteInterpreterTest`.
* Remove the referent counting logic. Now I will kill the interpreter 
process as long as all the sessions in the same interpreter group is closed. (I 
plan to add another kind of policy for the interpreter process lifecycle 
control, ZEPPELIN-2197)
* The `RemoteFunction` I introduced is for reducing code duplicates when we 
use RPC.
* The changes in Job.java and RemoteScheduler is for fixing the race issue 
bug. This bug cause the flaky test we see often in 
`ZeppelinSparkClusterTest.pySparkTest`

### What type of PR is it?
[Bug Fix | Refactoring]

### Todos
* [ ] - Task

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

### How should this be tested?
Unit test is added

### Screenshots (if appropriate)

### 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/zjffdu/zeppelin interpreter_refactor

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

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


commit ca60c5f3b33420ae48f2128daa4f4492301f083b
Author: Jeff Zhang 
Date:   2017-05-23T07:52:15Z

[ZEPPELIN-2627] Interpreter Component Refactoring




---
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 #2474: [ZEPPELIN-2753] Basic Implementation of IPython...

2017-08-04 Thread zjffdu
GitHub user zjffdu reopened a pull request:

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

[ZEPPELIN-2753] Basic Implementation of IPython Interpreter

### What is this PR for?
This is the first step for implement IPython Interpreter in Zeppelin.  I 
just use the jupyter_client to create and manage the ipython kernel. We don't 
need to care about python compilation and execution, all the things are 
delegated to ipython kernel. Ideally all the features of ipython should be 
available in Zeppelin as well.  

For now, user can use %python.ipython for IPython Interpreter. And if 
ipython is available, the default python interpreter will use ipython. But user 
can still set `zeppelin.python.useIPython` as false to enforce to use the old 
implementation of python interpreter. 

Main features:
* IPython interpreter support
** All the ipython features are available, including visualization, ipython 
magics. 
* ZeppelinContext support
* Streaming output support
* Support Ipython in PySpark

Regarding the visualization, ideally all the visualization libraries work 
in jupyter should also work here.
In unit test, I only verify the following 3 popular visualization library. 
could add more later.
* matplotlib
* bokeh
* ggplot

### What type of PR is it?
[Feature ]

### Todos
* [ ] - Task

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

### How should this be tested?
Unit test is added. 

### Screenshots (if appropriate)
Verify bokeh in IPython Interpreter

![image](https://user-images.githubusercontent.com/164491/27999716-756d749e-6552-11e7-90bb-4c6b08f4ab5c.png)

Verify matplotlib

![image](https://user-images.githubusercontent.com/164491/28046960-e881b28e-6619-11e7-9e1f-7f4662f842f3.png)

Verify ZeppelinContext


![image](https://user-images.githubusercontent.com/164491/28119378-4212620c-6747-11e7-89d5-3b5e609593ce.png)

Verify Streaming

![streaming](https://user-images.githubusercontent.com/164491/28950974-8f92fe1e-78fa-11e7-841f-3174da198bb7.gif)

### 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/zjffdu/zeppelin ZEPPELIN-2753

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

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


commit 78fde23c39a9fef36cea3d074b09a4748bdc17c9
Author: Jeff Zhang 
Date:   2017-07-02T07:51:14Z

[ZEPPELIN-2753] Basic Implementation of IPython Interpreter

commit bb4d35451e3a7e83d20a2a7f66f303f2258bdd16
Author: Jeff Zhang 
Date:   2017-07-17T00:29:59Z

Add cursor for completion

commit 3df231497a2b4b4bd0e3703151d25a0b0a932073
Author: Jeff Zhang 
Date:   2017-07-27T11:10:27Z

use IPython first, otherwise fallback to the old PythonInterpreter

commit 6d1f69bb74639ebe7c826a2ed807acfa8b02619e
Author: Jeff Zhang 
Date:   2017-07-28T07:49:29Z

IPython Support for PySparkInterpreter

commit 3179e9abb71ea63051c1dbb918276c9c24aba6e7
Author: Jeff Zhang 
Date:   2017-07-30T09:54:23Z

Support streaming output

commit 4c129c66e0eca39157a742d20bed7773ffedc0d5
Author: Jeff Zhang 
Date:   2017-08-04T02:01:34Z

add more docs




---
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 #2503: [ZEPPELIN-2808] remember me support

2017-08-04 Thread herval
Github user herval commented on the issue:

https://github.com/apache/zeppelin/pull/2503
  
Hmm It shouldn’t work without the Cookie manager. The checkbox will still 
show, though, which begs the question if it should be a default? (Otherwise 
we’ll have to hide the checkbox based on some shiro config)


From: Kun 
Sent: Friday, August 4, 2017 7:24:19 PM
To: apache/zeppelin
Cc: Herval Freire; Author
Subject: Re: [apache/zeppelin] [ZEPPELIN-2808] remember me support (#2503)


@1ambda commented on this pull request.



In 
conf/shiro.ini.template:

> @@ -46,6 +46,12 @@ user3 = password4, role2
 #ldapRealm.userDnTemplate = uid={0},ou=Users,dc=COMPANY,dc=COM
 #ldapRealm.contextFactory.authenticationMechanism = simple

+### If you want "remember me" to keep used logged in between sessions


Hi, without enalbing these lines, remember me feature works. Is it intended?

—
You are receiving this because you authored the thread.
Reply to this email directly, view it on 
GitHub,
 or mute the 
thread.



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

https://github.com/apache/zeppelin/pull/2506
  
regarding UX, 

- `Choose` box is too big compared to the text inside
- It would be nice to have the list-like view for each item. For example,


![image](https://user-images.githubusercontent.com/4968473/28992236-d2836aba-79d1-11e7-8c7f-125dfa80e47e.png)



---
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-04 Thread 1ambda
Github user 1ambda commented on the issue:

https://github.com/apache/zeppelin/pull/2483
  
CI passed https://travis-ci.org/nokia/zeppelin/builds/256876805

merge if no more discussion.


---
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 #2513: fix non import of java.util.Collections of bran...

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

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


---
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 #2490: [Zeppelin-2718] Find and replace code in note

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

https://github.com/apache/zeppelin/pull/2490
  
LGTM merge if no more discussion.


---
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 #2462: ZEPPELIN-2527 Changed editor cursor to thin

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

https://github.com/apache/zeppelin/pull/2462
  
Great! 

LGTM, let's merge if no more discussion.


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

https://github.com/apache/zeppelin/pull/2510
  
@zjffdu is right. This is based on #2474 as described in the PR 
description. Please review last 2 commits except for @zjffdu's commits.

- 80ecfba
- dd97d00




---
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-2834) Show Interpreter list as expand collapse blocks

2017-08-04 Thread Malay Majithia (JIRA)
Malay Majithia created ZEPPELIN-2834:


 Summary: Show Interpreter list as expand collapse blocks
 Key: ZEPPELIN-2834
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2834
 Project: Zeppelin
  Issue Type: New Feature
Reporter: Malay Majithia






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


[GitHub] zeppelin issue #2145: [ZEPPELIN-2271] encoding password of credentials

2017-08-04 Thread herval
Github user herval commented on the issue:

https://github.com/apache/zeppelin/pull/2145
  
I've implemented something slightly similar here, except I'm actually 
encrypting the entire file using AES, using a passphrase you provide (which can 
live in memory)

it's not ideal, but as others stated, it's better than no protection at all.

thoughts?


---
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-2833) JDBC Interpreter doesn't follow JDBC specification when getting the results.

2017-08-04 Thread Sergey Soldatov (JIRA)
Sergey Soldatov created ZEPPELIN-2833:
-

 Summary: JDBC Interpreter doesn't follow JDBC specification when 
getting the results.
 Key: ZEPPELIN-2833
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2833
 Project: Zeppelin
  Issue Type: Bug
  Components: Interpreters
Reporter: Sergey Soldatov


According to the documentation for ResultSet#next:
{noformat}
When a call to the next method returns false, the cursor is positioned after 
the last row. Any invocation of a ResultSet method which requires a current row 
will result in a SQLException being thrown. If the result set type is 
TYPE_FORWARD_ONLY, it is vendor specified whether their JDBC driver 
implementation *will return false or throw an SQLException on a subsequent call 
to next.*
{noformat}
In JDBCInterpreter getResults method is iterating till it reaches the max limit 
or next() returns false.
In executeSql that calls getResults the next() method is called again. 
According to the JDBC specification this may produce SQL Exception if end of 
the result set is already reached. 
That may be reproducible with Apache Phoenix 4.7+  jdbc driver. 



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


[GitHub] zeppelin issue #2484: [ZEPPELIN-2711] basic metrics for paragraphs & noteboo...

2017-08-04 Thread herval
Github user herval commented on the issue:

https://github.com/apache/zeppelin/pull/2484
  
@jongyoul good q. I tried another stats libraries I've seen used around 
(airlift), but had a hard time reconciling dependencies, so went with the 
smallest footprint one + implementing the servlet myself. It looks like 
metrics-core is [pretty self contained 
too](https://mvnrepository.com/artifact/com.codahale.metrics/metrics-core/3.0.2)
 - I'd be fine giving it a try, if folks prefer it for some reason (I'm 
honestly not super up-to-speed on what's popular these days, so I'm glad to 
defer this decision :-))


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

https://github.com/apache/zeppelin/pull/2514
  
@cloverhearts Test fails with

```
Tests run: 3, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.714 sec 
<<< FAILURE! - in org.apache.zeppelin.jupyter.nbformat.JupyterUtilTest
getNoteAndVerifyData(org.apache.zeppelin.jupyter.nbformat.JupyterUtilTest)  
Time elapsed: 0.141 sec  <<< FAILURE!
java.lang.AssertionError: null
at org.junit.Assert.fail(Assert.java:86)
at org.junit.Assert.assertTrue(Assert.java:41)
at org.junit.Assert.assertTrue(Assert.java:52)
at 
org.apache.zeppelin.jupyter.nbformat.JupyterUtilTest.getNoteAndVerifyData(JupyterUtilTest.java:89)


Results :

Failed tests: 
  JupyterUtilTest.getNoteAndVerifyData:89 null

Tests run: 3, Failures: 1, Errors: 0, Skipped: 0
```

Could you take a look?


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

https://github.com/apache/zeppelin/pull/2514
  
> Is there any plan to integrate jupyter converter into zeppelin UI (like 
import from jupyter note) ? Otherwise I will doubt how many people will use 
this feature.

Right, this can be the next step

> BTW, it seems pegdown is duplicated according its official github repo. 
https://github.com/sirthias/pegdown

Good to know!


---
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 #2513: fix non import of java.util.Collections of branch-0.7

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

https://github.com/apache/zeppelin/pull/2513
  
Just merged to `branch-0.7` but @asfgit does not close this one 
automatically.
@reminia Could you close this guy manually?



---
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 #2513: fix non import of java.util.Collections of branch-0.7

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

https://github.com/apache/zeppelin/pull/2513
  
Merge to `branch-0.7` as a hotfix


---
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-2832) An angular error occurs when reading a stored date object

2017-08-04 Thread Andreas Koch (JIRA)
Andreas Koch created ZEPPELIN-2832:
--

 Summary: An angular error occurs when reading a stored date object
 Key: ZEPPELIN-2832
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2832
 Project: Zeppelin
  Issue Type: Bug
  Components: front-end
Affects Versions: 0.7.2
Reporter: Andreas Koch


The following is my interpretation of what is going on, but please note that I 
am not very familiar with angular, so I may very well be wrong.

If an input form with a field of type "date" is bound to an angular variable an 
error occurs when the stored variable is later read from the note.json file. I 
think, this is because the variable is stored as a string and that string and 
angular does not convert the string back to a date.

The error can be reproduced by creating a paragraph like this:

{code:javascript}
%angular

Test date: 
Bind
{code}

The variable is then stored in note.json as:
{code:javascript}
 {
"name": "dateObject",
"object": "2017-08-01T22:00:00.000Z",
    "noteId": "2CQ2X4TT7",
"paragraphId": "20170804-135619_1160533068"
  }
{code}

But when the variable is reloaded from the note.json file an error occurs:

Error: [ngModel:datefmt] Expected `2017-07-03T22:00:00.000Z` to be a date
http://errors.angularjs.org/1.5.0/ngModel/datefmt?p0=2017-07-03T22%3A00%3A00.000Z
at vendor.e3a582fbf25541aa.js:34
at Array. (vendor.e3a582fbf25541aa.js:34)
at vendor.e3a582fbf25541aa.js:34
at n.$digest (vendor.e3a582fbf25541aa.js:34)
at n.$apply (vendor.e3a582fbf25541aa.js:34)
at vendor.e3a582fbf25541aa.js:34
at e (vendor.e3a582fbf25541aa.js:34)
at vendor.e3a582fbf25541aa.js:34



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


[jira] [Created] (ZEPPELIN-2831) Markdown paragraph output hidden in report mode after double click

2017-08-04 Thread Krystian Nowak (JIRA)
Krystian Nowak created ZEPPELIN-2831:


 Summary: Markdown paragraph output hidden in report mode after 
double click
 Key: ZEPPELIN-2831
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2831
 Project: Zeppelin
  Issue Type: Bug
  Components: front-end, Interpreters
Affects Versions: 0.7.2, 0.7.1, 0.7.0
Reporter: Krystian Nowak


When a Markdown paragraph is double clicked in notebook's _report_ mode it 
disappear - it seems its output switches to hidden mode then.

Steps to reproduce:
http://localhost:8080/#/notebook/2A94M5J1Z

* open built-in tutorial notebook at 
[http://localhost:8080/#/notebook/2A94M5J1Z]
(Zeppelin Tutorial/Basic Features (Spark) notebook)
* switch to _report_ mode
* double click on Markdown paragraph with _Welcome to Zeppelin_ text displayed
* Markdown paragraph disappears (output gets hidden)
* go back to _default_ mode of the notebook
* you should see output of the Markdown paragraph being in hidden mode
* run this paragraph
* output of this Markdown paragraph should be back back in display mode




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


[GitHub] zeppelin issue #2484: [ZEPPELIN-2711] basic metrics for paragraphs & noteboo...

2017-08-04 Thread jongyoul
Github user jongyoul commented on the issue:

https://github.com/apache/zeppelin/pull/2484
  
Hi, I have a simple question. AFAIK, dropwizard metrics are more popular 
and have powerful features. Have you consider 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 #658: Switch to Java 8

2017-08-04 Thread pmleveque
Github user pmleveque commented on the issue:

https://github.com/apache/zeppelin/pull/658
  
[Spark 2.2](https://spark.apache.org/docs/2.2.0/) requires Java 1.8


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

https://github.com/apache/zeppelin/pull/2455
  
Also add HADOOP_CONF_DIR in zeppelin.sh, but it looks like there's some 
code duplication between `zeppelin.sh` and `zeppelin-daemon.sh`, we need a 
followup PR to remove these duplication. 


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

https://github.com/apache/zeppelin/pull/2506
  
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 #2442: [ZEPPELIN-2679] JDBC. precode for session

2017-08-04 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 #2490: [Zeppelin-2718] Find and replace code in note

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

https://github.com/apache/zeppelin/pull/2490
  
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 #2449: [Zeppelin-2676] recent notes list

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

https://github.com/apache/zeppelin/pull/2449
  
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 #2495: [HOTFIX] JDBC completions. fix cursor position

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

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