[jira] [Created] (ZEPPELIN-1714) Build error of scio Intepreter on Centos

2016-11-25 Thread Shim HyungSung (JIRA)
Shim HyungSung created ZEPPELIN-1714:


 Summary: Build error of scio Intepreter on Centos
 Key: ZEPPELIN-1714
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-1714
 Project: Zeppelin
  Issue Type: Bug
Reporter: Shim HyungSung
 Fix For: 0.7.0


I got following build error on CentOS 
{code}
[INFO] --- maven-scala-plugin:2.15.2:compile (default) @ zeppelin-scio_2.10 ---
[INFO] Checking for multiple versions of scala
[WARNING]  Expected all dependencies to require Scala version: 2.10.5
[WARNING]  com.spotify:scio-repl_2.10:0.2.4 requires scala version: 2.10.6
[WARNING] Multiple versions of scala libraries detected!
[INFO] includes = [**/*.scala,**/*.java,]
[INFO] excludes = []
[INFO] /home/centos/zeppelin/scio/target/generated-sources/avro:-1: info: 
compiling
[INFO] /home/centos/zeppelin/scio/src/main/scala:-1: info: compiling
[INFO] Compiling 6 source files to /home/centos/zeppelin/scio/target/classes at 
1480142252830
[ERROR] 
/home/centos/zeppelin/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala:164:
 error: object nsc is not a member of package tools
[INFO]   import tools.nsc.interpreter.Results._
[INFO]^
[ERROR] 
/home/centos/zeppelin/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala:166:
 error: not found: value Success
[INFO] case Success => {
[INFO]  ^
[ERROR] 
/home/centos/zeppelin/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala:170:
 error: object java.lang.Error is not a value
[ERROR] case Error => {
[INFO]  ^
[ERROR] 
/home/centos/zeppelin/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala:174:
 error: not found: value Incomplete
[INFO] case Incomplete => {
[INFO]  ^
[ERROR] four errors found
[INFO] 
[INFO] Reactor Summary:
[INFO]
[INFO] Zeppelin: Interpreter .. SUCCESS [ 12.150 s]
[INFO] Zeppelin: Zengine .. SUCCESS [  4.946 s]
[INFO] Zeppelin: Display system apis .. SUCCESS [ 13.549 s]
[INFO] Zeppelin: Scio . FAILURE [  7.596 s]
[INFO] Zeppelin: Server ... SKIPPED
[INFO] 
[INFO] BUILD FAILURE
[INFO] 
[INFO] Total time: 38.912 s
[INFO] Finished at: 2016-11-26T06:37:37+00:00
[INFO] Final Memory: 87M/1851M
[INFO] 
[ERROR] Failed to execute goal 
org.scala-tools:maven-scala-plugin:2.15.2:compile (default) on project 
zeppelin-scio_2.10: wrap: org.apache.commons.exec.ExecuteException: Process 
exited with an error: 1(Exit value: 1) -> [Help 1
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[GitHub] zeppelin pull request #1684: Fix filter icon not displaying problem

2016-11-25 Thread marchpig
GitHub user marchpig opened a pull request:

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

Fix filter icon not displaying problem

### What is this PR for?
Filter icon is not displayed properly due to the css font-family order.

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

### Todos

### What is the Jira issue?

### How should this be tested?
See filter input box in the home page or navbar.

### Screenshots (if appropriate)
[Before]

![before](https://cloud.githubusercontent.com/assets/17305893/20638381/8ee71fb2-b3e9-11e6-9604-4344239d65c3.png)
[After]

![after](https://cloud.githubusercontent.com/assets/17305893/20638382/93b9155e-b3e9-11e6-8dde-534806ec0193.png)

### 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/marchpig/zeppelin fix-filter-icon

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

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


commit bc92c4ec0efb48ab80a65bac19b55a7828db7757
Author: Sangwoo Lee 
Date:   2016-11-26T05:47:22Z

Fix filter icon not displaying problem




---
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 #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
GitHub user cloverhearts reopened a pull request:

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

[ZEPPELIN-1665] Z.run with external note executable and access resource for 
zeppelin in each interpreter

### What is this PR for?
Currently, the z.run command is restricted.
Only paragraphs in a single note can be executed.
I have modified this to allow you to freely execute paragraphs of other 
notes.
This PR provides the basis for the freeful use of Zeppelin's resources at 
each Interpreter implementation.

### What type of PR is it?
Improvement, Feature

### Todos
- [x] extends z.run
- [x] run all paragraph in external note
- [x] run paragraph for external note.
- [x] get resource for zeppelin in each interpreter.
- [x] improve test case.
- [x] how to use docuement

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

### How should this be tested?
Currently under development.

run paragraph in same note
```
%spark
z.run("paragraphID")
```

run paragraph with external note
```
z.run("noteid", "paragraphid");
```

all note run
```
z.runNote("noteid");
```

### Screenshots (if appropriate)
- paragraph run

![zrun](https://cloud.githubusercontent.com/assets/10525473/20304857/ca056300-ab75-11e6-8276-0fe0667a5a24.gif)

- noterun

![runnote](https://cloud.githubusercontent.com/assets/10525473/20472104/527cd8de-affa-11e6-9587-0438140e264f.gif)

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


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

$ git pull https://github.com/cloverhearts/zeppelin 
extends-zrun-remote-transaction

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

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


commit 6e1f219993d4d98f27cdba697b69a0a641f116f6
Author: CloverHearts 
Date:   2016-11-11T03:14:12Z

code base workflow for remote zeppelin server control default thrift 
transaction.

commit 0570ae804b8c39e0b2e74c23ad13c57ee4c5a213
Author: CloverHearts 
Date:   2016-11-14T12:22:51Z

add remote works controller class and include interpreter factory

commit 25232387d1693ecbaed9af98aada09bdd6b92e7b
Author: CloverHearts 
Date:   2016-11-14T14:46:26Z

Implement eventForWait class

commit 3d34f9e0bb1d88304feafa37b0a69b1601854698
Author: CloverHearts 
Date:   2016-11-15T10:49:51Z

Implement getParagraphRunner transaction.

commit 3ed556c50d858495df11065275642699c4f0a435
Author: CloverHearts 
Date:   2016-11-15T11:02:43Z

remove debug console message.

commit afb9db746593fc0aff5f2b9beb77373e69d45d66
Author: CloverHearts 
Date:   2016-11-15T11:04:39Z

Merge branch 'master' into workflow

# Conflicts:
#   spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java

commit 5a7886fd82d9dd06e1c0a39cd11f37128a9e5d46
Author: CloverHearts 
Date:   2016-11-15T11:47:38Z

fix sio support

commit 55e870403b8eb770192d36b1537c3bc90f953119
Author: CloverHearts 
Date:   2016-11-15T13:55:52Z

support spark r

commit 3f75bd572112af7f951c6b06f31b28d1c2957352
Author: CloverHearts 
Date:   2016-11-15T14:33:20Z

support scald

commit 6fbe08a8934703c5a33dcaaf82dcc1636627078b
Author: CloverHearts 
Date:   2016-11-17T08:18:35Z

Merge branch 'master' into workflow

# Conflicts:
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterEventPoller.java
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/thrift/RemoteInterpreterEventType.java

commit 2628a20052390d9b161715d9fa720c52c6a18ffc
Author: CloverHearts 
Date:   2016-11-17T08:26:47Z

fix thrift

commit 4b1ef0886713597666ae0761254d772e61c2565b
Author: CloverHearts 
Date:   2016-11-17T08:28:11Z

fix thrift interface

commit c074f0751fb5a435f216fe0147ae4942bcc59173
Author: CloverHearts 
Date:   2016-11-17T09:35:16Z

fix sio support

commit f11fed499247cd060b4d6577691a45798424d763
Author: CloverHearts 
Date:   2016-11-17T09:37:26Z

Merge branch 'workflow' into extends-zrun-remote-transaction

# Conflicts:
#   scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala

commit 

[GitHub] zeppelin pull request #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
Github user cloverhearts closed the pull request at:

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


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1682
  
I did check - I don't think they change in patch version. They have changed 
in upcoming Spark 2.1.0 though.


---
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 #1663: ZEPPELIN-1692: Ability to access Spark jobs UI ...

2016-11-25 Thread karup1990
Github user karup1990 closed the pull request at:

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


---
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 #1663: ZEPPELIN-1692: Ability to access Spark jobs UI ...

2016-11-25 Thread karup1990
GitHub user karup1990 reopened a pull request:

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

ZEPPELIN-1692: Ability to access Spark jobs UI from the paragraph

### What is this PR for?
A paragraph execution may result in spark job(s).
Adding ability to access the spark job UI(corresponding to the job 
generated by the paragraph run), directly from the paragraph.

### What type of PR is it?
Improvement

### Todos
NA

### What is the Jira issue?
ZEPPELIN-1692

### How should this be tested?
Run paragraphs with spark code(scala, pyspark, sql, R).
The paragraph will display a button on the top right corner, which on click 
will open up the corresponding job UI

### Screenshots (if appropriate)

![spark_jobs](https://cloud.githubusercontent.com/assets/5082742/20488337/a07fe35a-b02c-11e6-9400-db9f1c10df90.gif)


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


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

$ git pull https://github.com/karup1990/incubator-zeppelin ZEPPELIN-1692

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

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


commit 3dff42dd3a6d3a48cae0b112e851a018686d567f
Author: karuppayya 
Date:   2016-11-20T15:00:40Z

Ability to view spark job urls in each paragraph

commit 6252952fd0a62ac10445c892b246b837a75bc390
Author: karuppayya 
Date:   2016-11-21T14:48:59Z

Fix checkstyle

commit fde024873017d1a0e1b4561147868b5c45250801
Author: karuppayya 
Date:   2016-11-21T15:44:12Z

Fix NPE and some refactoring

commit ad509557d6253d7092e736cfd9189e14e654018d
Author: karuppayya 
Date:   2016-11-22T05:12:37Z

Fix NPE in tests

Signed-off-by: karuppayya 

commit 1778fd6edca8d5899715f58efc32a9d1df35b24b
Author: Karup 
Date:   2016-11-26T03:02:47Z

Address review comments

Signed-off-by: Karup 

commit 4fcc24e5264726a28599ebde0979e3744a5c50f2
Author: Karup 
Date:   2016-11-26T03:38:21Z

Clear job urls when we clear output

Signed-off-by: Karup 




---
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 #1663: ZEPPELIN-1692: Ability to access Spark jobs UI from th...

2016-11-25 Thread karup1990
Github user karup1990 commented on the issue:

https://github.com/apache/zeppelin/pull/1663
  
Failure seems not related
`04:09:12,112 ERROR org.apache.zeppelin.AbstractZeppelinIT:136 - Exception 
in ZeppelinIT while testAngularDisplay 
org.openqa.selenium.TimeoutException: Timed out after 60 seconds waiting 
for org.apache.zeppelin.AbstractZeppelinIT$1@4c7305e4
Build info: version: '2.48.2', revision: 
'41bccdd10cf2c0560f637404c2d96164b67d9d67', time: '2015-10-09 13:08:06'
System info: host: 'testing-docker-bcffa7c6-8593-4893-a72f-07a719f105fa', 
ip: '172.17.0.6', os.name: 'Linux', os.arch: 'amd64', os.version: 
'4.8.7-040807-generic', java.version: '1.7.0_76'
Driver info: driver.version: unknown
 `


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


SnappyData announces new cloud service,iSight with Apache Zeppelin

2016-11-25 Thread Sachin Janani
Hi,

Today we are launching a service called the iSight cloud (iSight is short
for instant insights), which combines elements of the platform to allow
users to create notebooks where you can run queries on your data, and
visualize the results in near real time. iSight uses 3 core elements to
pull this together:

   - The use of Spark as a data unification layer to create samples on
   external datasets or streaming datasets that are plugged into SnappyData
   (via Kafka or any other Spark supported mechanism)
   - The SnappyData Synopsis Data Engine
    which accepts queries
   routed to it and returns results orders of magnitude faster, along with
   accurate error estimates, while optionally running the full query in the
   background.
   - Apache Zeppelin  (which is fast becoming
   the de-facto choice for anything notebook related), which uses its
   SnappyData interpreter to interface with the database and return results
   and render them on the notebook

You can use iSight to build out your own analytic dashboard using SQL
queries or the Spark API (and the examples we have provided show you how to
build fairly powerful dashboards using the Synopsis Data Engine)

iSight runs on AWS (and we are launching it on Azure shortly) and for a
limited time (our black Friday special I suppose), we are offering a free
trial  where we let you
play with the demo notebooks that we have included (so that you can check
out these claims for yourself and build your own notebooks), *on our
hardware in AWS*. Check it out and give us some feedback.

Thanks,


[GitHub] zeppelin issue #1500: [ZEPPELIN-1371]add text/numeric conversion support to ...

2016-11-25 Thread Peilin-Yang
Github user Peilin-Yang commented on the issue:

https://github.com/apache/zeppelin/pull/1500
  
@bzz done


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/1682
  
BTW, have you checked the spark's dependencies version needs to be updated, 
like py4j & protobuf ?


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/1682
  
https://github.com/apache/zeppelin/blob/master/spark/pom.xml#L466 &
https://github.com/apache/zeppelin/blob/master/spark/pom.xml#L480 also 
needs to be updated. 


---
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 #1677: Add doc for exchanging data frames

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1677
  
well, it's a lot quicker to get doc-only PR in :)
besides we should have a JIRA for changes like this. It's your call, @m30m 


---
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 #1677: Add doc for exchanging data frames

2016-11-25 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/1677
  
If we want to support the feature I mentioned I above in another PR, then 
the document here is useless because we have to update the doc later. So it 
would be better to do it in this PR IMHO. 


---
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 #1632: [ZEPPELIN-1639] Add tests with external python depende...

2016-11-25 Thread agoodm
Github user agoodm commented on the issue:

https://github.com/apache/zeppelin/pull/1632
  
Oh for the love of... looks like I will need to update the cache again. Let 
me run this one more time.


---
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 #1683: Fix Travis build error with ls command

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1683
  
output looks fine
```
0.01s$ ls -la .spark-dist 
${HOME}/.m2/repository/.cache/maven-download-plugin || true
/home/travis/.m2/repository/.cache/maven-download-plugin:
total 0
drwxr-xr-x 2 travis travis  6 Nov  5 03:03 .
drwxr-xr-x 3 travis travis 34 Nov 20 20:13 ..
.spark-dist:
total 4
drwxr-xr-x  2 travis travis6 Nov  5 03:03 .
drwxr-xr-x 47 travis travis 4096 Nov 25 20:57 ..
```


---
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 #1582: [ZEPPELIN-1604] Add Neo4j interpreter and Network visu...

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1582
  
could you rebase this PR and see if CI passes?


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread felixcheung
GitHub user felixcheung reopened a pull request:

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

Update to Spark 1.6.3 and 2.0.2

### What is this PR for?

Update Spark versions

### What type of PR is it?
Improvement

### What is the Jira issue?
N/A - minor version updates only

### How should this be tested?
CI

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



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

$ git pull https://github.com/felixcheung/incubator-zeppelin upspark

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

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


commit 32c5ccf94778d4ba28686fc2cf8d92d4b17bf4e6
Author: Felix Cheung 
Date:   2016-11-25T19:22:11Z

update to Spark 1.6.3 and 2.0.2




---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread felixcheung
Github user felixcheung closed the pull request at:

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


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1682
  
failed, to be fixed with #1683



---
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 #1538: [ZEPPELIN-1386] Docker images for running Apache Zeppe...

2016-11-25 Thread mfelgamal
Github user mfelgamal commented on the issue:

https://github.com/apache/zeppelin/pull/1538
  
@bzz I think that we need to install `build-base make gcc g++` to build 
`knitr` package in R. And I wonder if we could remove them after building 
`knitr`. Is this right?


---
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 #1683: Fix Travis build error with ls command

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1683
  
@Leemoonsoo please have a look, 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 pull request #1683: Fix Travis error with ls command

2016-11-25 Thread felixcheung
GitHub user felixcheung opened a pull request:

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

Fix Travis error with ls command

### What is this PR for?
Fix error with

```
The command "ls -la .spark-dist 
${HOME}/.m2/repository/.cache/maven-download-plugin" failed and exited with 2 
during .
```

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

### How should this be tested?
CI

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



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

$ git pull https://github.com/felixcheung/incubator-zeppelin fixls

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

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


commit 0548861d6ce731bfd24bf41050d65904f5018168
Author: Felix Cheung 
Date:   2016-11-25T20:42:32Z

fix exit code




---
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 #1632: [ZEPPELIN-1639] Add tests with external python depende...

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1632
  
I see, I think generally if we could isolate test sets so that they don't 
overlap (ie. python tests not running docker tests), we would likely have more 
stable CI runs. I think that's really our main concerns - CI stability is kinda 
high priority since it affects everyone.

But if CI passes for these last 2 runs then I don't mind either way :)



---
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 #1593: ZEPPELIN-1613. PerUser scoped mode doesn't work

2016-11-25 Thread asfgit
Github user asfgit closed the pull request at:

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


---
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 #1677: Add doc for exchanging data frames

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1677
  
Let's keep this as documentation only and let's open a JIRA (another PR) 
for the DataFrame support?



---
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 #1656: Fix Yarn configuration of Spark2.0

2016-11-25 Thread asfgit
Github user asfgit closed the pull request at:

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


---
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 #1682: Update to Spark 1.6.3 and 2.0.2

2016-11-25 Thread felixcheung
GitHub user felixcheung opened a pull request:

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

Update to Spark 1.6.3 and 2.0.2

### What is this PR for?

Update Spark versions

### What type of PR is it?
Improvement

### What is the Jira issue?
N/A - minor version updates only

### How should this be tested?
CI

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



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

$ git pull https://github.com/felixcheung/incubator-zeppelin upspark

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

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


commit 32c5ccf94778d4ba28686fc2cf8d92d4b17bf4e6
Author: Felix Cheung 
Date:   2016-11-25T19:22:11Z

update to Spark 1.6.3 and 2.0.2




---
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 #1672: ZEPPELIN-1701: User impersonation not work with SPARK_...

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1672
  
as an aside, I'd update the JIRA/PR - it might not be obvious what "when 
SPARK_HOME is set" means. If external Spark is broken then I think it is a much 
much serious problem :)


---
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 #1632: [ZEPPELIN-1639] Add tests with external python depende...

2016-11-25 Thread agoodm
Github user agoodm commented on the issue:

https://github.com/apache/zeppelin/pull/1632
  
Correct, the main reason being that caching it actually increases the build 
time. I still have one slight nitpick myself, but I'll leave that up to others 
if that is worth pursuing right now (the newly added docker and conda tests 
have increased the build time for the python profiles by a good bit, so perhaps 
they should be excluded somehow since testing them again here has no benefit)


---
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 #1632: [ZEPPELIN-1639] Add tests with external python depende...

2016-11-25 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/1632
  
great! a few minor comments (like like you addressed one already!)
CI passed the last time. I think this is looking good.

So to recap, we are able to cache R but not miniconda, correct?

Any other comment - merging when CI complete.



---
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 #1658: [ZEPPELIN-212] Multiple paragraph results

2016-11-25 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/1658
  
I think this PR is ready to be reviewed.
While this PR includes quite a lot of changes i'm highlighting some key 
changes.

1. Display multiple types of output in a single paragraph.

   Previously, if output includes multiple display system directive (e.g. 
%html, %text, etc) only the last one was effective and all the previous output 
was ignored. After the change, a paragraph sequentially display all display 
system directive in the output result.

   To do that, on the front-end side,
   Created ResultCtrl controller under 
`zeppelin-web/src/app/notebook/paragraph/result`
   and moved paragraph result rendering related scripts/templates under 
this directory.

/notebook/paragraph/paragraph-graph.html -> 
/notebook/paragraph/result/result-graph.html
/notebook/paragraph/paragraph-pivot.html -> 
/notebook/paragraph/result/result-pivot.html
/notebook/paragraph/paragraph-result.html -> 
/notebook/paragraph/result/result-results.html
/notebook/paragraph/paragraph-chart-selector.html -> 
/notebook/paragraph/result/result-chart-selector.html

on the back-end side,
Created 
`zeppelin-interpreter/interpreter/InterpreterResultMessageOutput.java` to take 
care of single output stream and existing 
`zeppelin-interpreter/interpreter/InterpreterResultMessageOutput.java` changed 
to take care of multiple outputs through `InterpreterResultMessageOutput`

2. Compatibility between old, new notebook format.

   note.json format is changed to store multiple outputs in the paragraph.

   To read note.json created by previous versions of Zeppelin, 
[Notebook.convertFromSingleResultToMultipleResultsFormat()](https://github.com/apache/zeppelin/blob/7ab6679a87ed75f176ffa61d8cf6c73f4241c528/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/Notebook.java#L385)
 will automatically convert format when note.json is loaded in Zeppelin.

   If old version of Zeppelin reads notebook created by newer version, 
everything will be load normally except for output. Output will be empty.

   In detail, note.json is changed from

   ```
   paragraph : [
  {
  result : {
  code: "",
  type: "",
  msg: ""
  },
  config : {
 graph : {},
 ...
  },
  ...
  },
  ...
   ],
   ...
   ```

   to

   ```
   paragraph : [
  {
  results : {
 {
code: "",
msg: [
   {
type: "",
data: ""
},
{
type: "",
data: ""
 },
 ...
]
  },
  config : {
 results : [
{
graph : {},
},
{
graph : {},
},
...
 ]
  },
  ...
  },
  ...
   ],
   ...
   ```

3. Every other changes are trivial

   Most changes are trivial change due to change of InterpreterOutput and 
InterpreterResult api changes.


---
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 #1663: ZEPPELIN-1692: Ability to access Spark jobs UI from th...

2016-11-25 Thread karup1990
Github user karup1990 commented on the issue:

https://github.com/apache/zeppelin/pull/1663
  
Thanks for the feedback.  i will have them handled  some time over the 
weekend. 


---
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 #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
GitHub user cloverhearts reopened a pull request:

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

[ZEPPELIN-1665] Z.run with external note executable and access resource for 
zeppelin in each interpreter

### What is this PR for?
Currently, the z.run command is restricted.
Only paragraphs in a single note can be executed.
I have modified this to allow you to freely execute paragraphs of other 
notes.
This PR provides the basis for the freeful use of Zeppelin's resources at 
each Interpreter implementation.

### What type of PR is it?
Improvement, Feature

### Todos
- [x] extends z.run
- [x] run all paragraph in external note
- [x] run paragraph for external note.
- [x] get resource for zeppelin in each interpreter.
- [x] improve test case.
- [x] how to use docuement

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

### How should this be tested?
Currently under development.

run paragraph in same note
```
%spark
z.run("paragraphID")
```

run paragraph with external note
```
z.run("noteid", "paragraphid");
```

all note run
```
z.runNote("noteid");
```

### Screenshots (if appropriate)
- paragraph run

![zrun](https://cloud.githubusercontent.com/assets/10525473/20304857/ca056300-ab75-11e6-8276-0fe0667a5a24.gif)

- noterun

![runnote](https://cloud.githubusercontent.com/assets/10525473/20472104/527cd8de-affa-11e6-9587-0438140e264f.gif)

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


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

$ git pull https://github.com/cloverhearts/zeppelin 
extends-zrun-remote-transaction

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

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


commit 6e1f219993d4d98f27cdba697b69a0a641f116f6
Author: CloverHearts 
Date:   2016-11-11T03:14:12Z

code base workflow for remote zeppelin server control default thrift 
transaction.

commit 0570ae804b8c39e0b2e74c23ad13c57ee4c5a213
Author: CloverHearts 
Date:   2016-11-14T12:22:51Z

add remote works controller class and include interpreter factory

commit 25232387d1693ecbaed9af98aada09bdd6b92e7b
Author: CloverHearts 
Date:   2016-11-14T14:46:26Z

Implement eventForWait class

commit 3d34f9e0bb1d88304feafa37b0a69b1601854698
Author: CloverHearts 
Date:   2016-11-15T10:49:51Z

Implement getParagraphRunner transaction.

commit 3ed556c50d858495df11065275642699c4f0a435
Author: CloverHearts 
Date:   2016-11-15T11:02:43Z

remove debug console message.

commit afb9db746593fc0aff5f2b9beb77373e69d45d66
Author: CloverHearts 
Date:   2016-11-15T11:04:39Z

Merge branch 'master' into workflow

# Conflicts:
#   spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java

commit 5a7886fd82d9dd06e1c0a39cd11f37128a9e5d46
Author: CloverHearts 
Date:   2016-11-15T11:47:38Z

fix sio support

commit 55e870403b8eb770192d36b1537c3bc90f953119
Author: CloverHearts 
Date:   2016-11-15T13:55:52Z

support spark r

commit 3f75bd572112af7f951c6b06f31b28d1c2957352
Author: CloverHearts 
Date:   2016-11-15T14:33:20Z

support scald

commit 6fbe08a8934703c5a33dcaaf82dcc1636627078b
Author: CloverHearts 
Date:   2016-11-17T08:18:35Z

Merge branch 'master' into workflow

# Conflicts:
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterEventPoller.java
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/thrift/RemoteInterpreterEventType.java

commit 2628a20052390d9b161715d9fa720c52c6a18ffc
Author: CloverHearts 
Date:   2016-11-17T08:26:47Z

fix thrift

commit 4b1ef0886713597666ae0761254d772e61c2565b
Author: CloverHearts 
Date:   2016-11-17T08:28:11Z

fix thrift interface

commit c074f0751fb5a435f216fe0147ae4942bcc59173
Author: CloverHearts 
Date:   2016-11-17T09:35:16Z

fix sio support

commit f11fed499247cd060b4d6577691a45798424d763
Author: CloverHearts 
Date:   2016-11-17T09:37:26Z

Merge branch 'workflow' into extends-zrun-remote-transaction

# Conflicts:
#   scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala

commit 

[GitHub] zeppelin pull request #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
Github user cloverhearts closed the pull request at:

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


---
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 #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
GitHub user cloverhearts reopened a pull request:

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

[ZEPPELIN-1665] Z.run with external note executable and access resource for 
zeppelin in each interpreter

### What is this PR for?
Currently, the z.run command is restricted.
Only paragraphs in a single note can be executed.
I have modified this to allow you to freely execute paragraphs of other 
notes.
This PR provides the basis for the freeful use of Zeppelin's resources at 
each Interpreter implementation.

### What type of PR is it?
Improvement, Feature

### Todos
- [x] extends z.run
- [x] run all paragraph in external note
- [x] run paragraph for external note.
- [x] get resource for zeppelin in each interpreter.
- [x] improve test case.
- [x] how to use docuement

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

### How should this be tested?
Currently under development.

run paragraph in same note
```
%spark
z.run("paragraphID")
```

run paragraph with external note
```
z.run("noteid", "paragraphid");
```

all note run
```
z.runNote("noteid");
```

### Screenshots (if appropriate)
- paragraph run

![zrun](https://cloud.githubusercontent.com/assets/10525473/20304857/ca056300-ab75-11e6-8276-0fe0667a5a24.gif)

- noterun

![runnote](https://cloud.githubusercontent.com/assets/10525473/20472104/527cd8de-affa-11e6-9587-0438140e264f.gif)

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


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

$ git pull https://github.com/cloverhearts/zeppelin 
extends-zrun-remote-transaction

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

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


commit 6e1f219993d4d98f27cdba697b69a0a641f116f6
Author: CloverHearts 
Date:   2016-11-11T03:14:12Z

code base workflow for remote zeppelin server control default thrift 
transaction.

commit 0570ae804b8c39e0b2e74c23ad13c57ee4c5a213
Author: CloverHearts 
Date:   2016-11-14T12:22:51Z

add remote works controller class and include interpreter factory

commit 25232387d1693ecbaed9af98aada09bdd6b92e7b
Author: CloverHearts 
Date:   2016-11-14T14:46:26Z

Implement eventForWait class

commit 3d34f9e0bb1d88304feafa37b0a69b1601854698
Author: CloverHearts 
Date:   2016-11-15T10:49:51Z

Implement getParagraphRunner transaction.

commit 3ed556c50d858495df11065275642699c4f0a435
Author: CloverHearts 
Date:   2016-11-15T11:02:43Z

remove debug console message.

commit afb9db746593fc0aff5f2b9beb77373e69d45d66
Author: CloverHearts 
Date:   2016-11-15T11:04:39Z

Merge branch 'master' into workflow

# Conflicts:
#   spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java

commit 5a7886fd82d9dd06e1c0a39cd11f37128a9e5d46
Author: CloverHearts 
Date:   2016-11-15T11:47:38Z

fix sio support

commit 55e870403b8eb770192d36b1537c3bc90f953119
Author: CloverHearts 
Date:   2016-11-15T13:55:52Z

support spark r

commit 3f75bd572112af7f951c6b06f31b28d1c2957352
Author: CloverHearts 
Date:   2016-11-15T14:33:20Z

support scald

commit 6fbe08a8934703c5a33dcaaf82dcc1636627078b
Author: CloverHearts 
Date:   2016-11-17T08:18:35Z

Merge branch 'master' into workflow

# Conflicts:
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterEventPoller.java
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/thrift/RemoteInterpreterEventType.java

commit 2628a20052390d9b161715d9fa720c52c6a18ffc
Author: CloverHearts 
Date:   2016-11-17T08:26:47Z

fix thrift

commit 4b1ef0886713597666ae0761254d772e61c2565b
Author: CloverHearts 
Date:   2016-11-17T08:28:11Z

fix thrift interface

commit c074f0751fb5a435f216fe0147ae4942bcc59173
Author: CloverHearts 
Date:   2016-11-17T09:35:16Z

fix sio support

commit f11fed499247cd060b4d6577691a45798424d763
Author: CloverHearts 
Date:   2016-11-17T09:37:26Z

Merge branch 'workflow' into extends-zrun-remote-transaction

# Conflicts:
#   scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala

commit 

[GitHub] zeppelin pull request #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
Github user cloverhearts closed the pull request at:

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


---
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 #1681: [ZEPPELIN-1691] Implement NotebookRepoSetting t...

2016-11-25 Thread anthonycorbacho
GitHub user anthonycorbacho opened a pull request:

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

[ZEPPELIN-1691] Implement NotebookRepoSetting to ZeppelinHub notebookRepo

### What is this PR for?
Implement notebookRepo setting in ZeppelinHub notebook repo.
This change will allow users to directly switch from instance without 
switching token in `zeppelin-env.sh`.

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

### What is the Jira issue?
* [ZEPPELIN-1691](https://issues.apache.org/jira/browse/ZEPPELIN-1691)

### How should this be tested?
You need to have a valid [Zeppelinhub 
account](https://www.zeppelinhub.com/register).
You need to enable zeppelinhub notebook repo (only) in zeppelin-env.sh
```
export 
ZEPPELIN_NOTEBOOK_STORAGE="org.apache.zeppelin.notebook.repo.zeppelinhub.ZeppelinHubRepo"
export ZEPPELINHUB_API_ADDRESS="https://www.zeppelinhub.com;
```

[Enable 
shiro](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html#1-enable-shiro)
 and set it to use [Zeppelinhub 
realm](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html#zeppelinhub).

Start zeppelin, login, you will see your list of notebooks, if you want to 
switch instance, go to NotebookRepos, and edit.

### Screenshots (if appropriate)

![zeppelinhub_note_repo_instance_switch](https://cloud.githubusercontent.com/assets/3139557/20626992/8b518628-b360-11e6-9c73-c5af793a93c5.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/anthonycorbacho/incubator-zeppelin 
ZEPPELIN-1691

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

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


commit fa7a711ac200ec948c967a59c1805c6d459b94a1
Author: Anthony Corbacho 
Date:   2016-11-25T13:35:05Z

Implement NotebookRepo settings option in ZeppelinHub notebook Repository.
 This change will allow users to directly switch from instance without 
switching token in zeppelin-env.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 #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
GitHub user cloverhearts reopened a pull request:

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

[ZEPPELIN-1665] Z.run with external note executable and access resource for 
zeppelin in each interpreter

### What is this PR for?
Currently, the z.run command is restricted.
Only paragraphs in a single note can be executed.
I have modified this to allow you to freely execute paragraphs of other 
notes.
This PR provides the basis for the freeful use of Zeppelin's resources at 
each Interpreter implementation.

### What type of PR is it?
Improvement, Feature

### Todos
- [x] extends z.run
- [x] run all paragraph in external note
- [x] run paragraph for external note.
- [x] get resource for zeppelin in each interpreter.
- [x] improve test case.
- [x] how to use docuement

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

### How should this be tested?
Currently under development.

run paragraph in same note
```
%spark
z.run("paragraphID")
```

run paragraph with external note
```
z.run("noteid", "paragraphid");
```

all note run
```
z.runNote("noteid");
```

### Screenshots (if appropriate)
- paragraph run

![zrun](https://cloud.githubusercontent.com/assets/10525473/20304857/ca056300-ab75-11e6-8276-0fe0667a5a24.gif)

- noterun

![runnote](https://cloud.githubusercontent.com/assets/10525473/20472104/527cd8de-affa-11e6-9587-0438140e264f.gif)

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


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

$ git pull https://github.com/cloverhearts/zeppelin 
extends-zrun-remote-transaction

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

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


commit 6e1f219993d4d98f27cdba697b69a0a641f116f6
Author: CloverHearts 
Date:   2016-11-11T03:14:12Z

code base workflow for remote zeppelin server control default thrift 
transaction.

commit 0570ae804b8c39e0b2e74c23ad13c57ee4c5a213
Author: CloverHearts 
Date:   2016-11-14T12:22:51Z

add remote works controller class and include interpreter factory

commit 25232387d1693ecbaed9af98aada09bdd6b92e7b
Author: CloverHearts 
Date:   2016-11-14T14:46:26Z

Implement eventForWait class

commit 3d34f9e0bb1d88304feafa37b0a69b1601854698
Author: CloverHearts 
Date:   2016-11-15T10:49:51Z

Implement getParagraphRunner transaction.

commit 3ed556c50d858495df11065275642699c4f0a435
Author: CloverHearts 
Date:   2016-11-15T11:02:43Z

remove debug console message.

commit afb9db746593fc0aff5f2b9beb77373e69d45d66
Author: CloverHearts 
Date:   2016-11-15T11:04:39Z

Merge branch 'master' into workflow

# Conflicts:
#   spark/src/main/java/org/apache/zeppelin/spark/SparkInterpreter.java

commit 5a7886fd82d9dd06e1c0a39cd11f37128a9e5d46
Author: CloverHearts 
Date:   2016-11-15T11:47:38Z

fix sio support

commit 55e870403b8eb770192d36b1537c3bc90f953119
Author: CloverHearts 
Date:   2016-11-15T13:55:52Z

support spark r

commit 3f75bd572112af7f951c6b06f31b28d1c2957352
Author: CloverHearts 
Date:   2016-11-15T14:33:20Z

support scald

commit 6fbe08a8934703c5a33dcaaf82dcc1636627078b
Author: CloverHearts 
Date:   2016-11-17T08:18:35Z

Merge branch 'master' into workflow

# Conflicts:
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/remote/RemoteInterpreterEventPoller.java
#   
zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/thrift/RemoteInterpreterEventType.java

commit 2628a20052390d9b161715d9fa720c52c6a18ffc
Author: CloverHearts 
Date:   2016-11-17T08:26:47Z

fix thrift

commit 4b1ef0886713597666ae0761254d772e61c2565b
Author: CloverHearts 
Date:   2016-11-17T08:28:11Z

fix thrift interface

commit c074f0751fb5a435f216fe0147ae4942bcc59173
Author: CloverHearts 
Date:   2016-11-17T09:35:16Z

fix sio support

commit f11fed499247cd060b4d6577691a45798424d763
Author: CloverHearts 
Date:   2016-11-17T09:37:26Z

Merge branch 'workflow' into extends-zrun-remote-transaction

# Conflicts:
#   scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala

commit 

[GitHub] zeppelin pull request #1637: [ZEPPELIN-1665] Z.run with external note execut...

2016-11-25 Thread cloverhearts
Github user cloverhearts closed the pull request at:

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


---
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 #1679: ZEPPELIN-1707. Pass userName when creating interpreter...

2016-11-25 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/1679
  
@Leemoonsoo @prabhjyotsingh Please help 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 #1665: [ZEPPELIN-1694] Show result when editor language chang...

2016-11-25 Thread minahlee
Github user minahlee commented on the issue:

https://github.com/apache/zeppelin/pull/1665
  
Merging if there is no more dicussion


---
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 #1679: ZEPPELIN-1707. Pass userName when creating inte...

2016-11-25 Thread zjffdu
GitHub user zjffdu reopened a pull request:

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

ZEPPELIN-1707. Pass userName when creating interpreter through thrift

### What is this PR for?
In ZEPPELIN-1607, I'd like refactor livy interpreter to scoped mode by 
default, this require username when open this interpreter. So I propose to pass 
username when creating interpreter through thrift.
What I did in this PR.
* update `RemoteInterpreterService.thrift` and regenerate the java thrift 
code.
* update `genthrift.sh`, otherwise hashCode method won't be generated 
correctly.
* This is one compilation issue (`PythonDockerInterpreterTest.java`) in the 
existing master branch, I also fix it here. 


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

### Todos
* [ ] - Task

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

### 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 ZEPPELIN-1707

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

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


commit cbb829cc3754ce9090939c3deebe304300ef44f8
Author: Jeff Zhang 
Date:   2016-11-25T01:58:15Z

ZEPPELIN-1707. Pass userName when creating interpreter through thrift

commit e8e913fd85f2b627e096a3eeb1840af7157113e9
Author: Jeff Zhang 
Date:   2016-11-25T08:33:39Z

regenerate it using thrift 0.9.2




---
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 #1679: ZEPPELIN-1707. Pass userName when creating inte...

2016-11-25 Thread zjffdu
Github user zjffdu closed the pull request at:

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


---
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 #1441: [ ZEPPELIN-967 ] Implement search bar in job manager

2016-11-25 Thread cloverhearts
Github user cloverhearts commented on the issue:

https://github.com/apache/zeppelin/pull/1441
  
@AhyoungRyu 

![newnew](https://cloud.githubusercontent.com/assets/10525473/20624758/1870bb14-b352-11e6-9883-dcb84649c139.gif)


fix done.
Thank you :)


---
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 #1673: ZEPPELIN-1703: frontend - skip PhantomJS on -DskipTest...

2016-11-25 Thread asanjar
Github user asanjar commented on the issue:

https://github.com/apache/zeppelin/pull/1673
  
+1 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 pull request #1673: ZEPPELIN-1703: frontend - skip PhantomJS on -Ds...

2016-11-25 Thread asfgit
Github user asfgit closed the pull request at:

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


---
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 #1672: ZEPPELIN-1701: User impersonation not work with SPARK_...

2016-11-25 Thread prabhjyotsingh
Github user prabhjyotsingh commented on the issue:

https://github.com/apache/zeppelin/pull/1672
  
@zjffdu Here is what I've done 

 - 
https://github.com/apache/zeppelin/pull/1672/files#diff-8d3bd42a5de342ebad38e1d113d9f75cR195
 
`source "${ZEPPELIN_CONF_DIR}'/zeppelin-env.sh;` 
This should take care of zeppelin-env variables


- 
https://github.com/apache/zeppelin/pull/1672/files#diff-8d3bd42a5de342ebad38e1d113d9f75cR93
Append user name in log file, this has an assumption that the parent 
directory has right permission for this guy to write (typically have group 
permission to write and have the  impersonating user in that group).


---
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 #1617: ZEPPELIN-1645: JDBC Interpreter does not commit update...

2016-11-25 Thread astroshim
Github user astroshim commented on the issue:

https://github.com/apache/zeppelin/pull/1617
  
@randerzander Could you rebase?


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