[GitHub] zeppelin pull request #2231: ZEPPELIN-2150. NoSuchMethodError: org.apache.sp...

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

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


---
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 #2231: ZEPPELIN-2150. NoSuchMethodError: org.apache.sp...

2017-04-07 Thread zjffdu
GitHub user zjffdu opened a pull request:

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

ZEPPELIN-2150. NoSuchMethodError: 
org.apache.spark.ui.SparkUI.appUIAddress() for the spark master

### What is this PR for?
`SparkUI.addUIAddress` is removed in spark master which cause this error. 
Actually spark 2.0 introduce new api `SparkContext.uiWebUrl` (SPARK-14576) 
which is public in contrast `SparkUI.addUIAddress` is private. This PR would 
use `SparkUI.addUIAddress` for spark 1 and `SparkContext.uiWebUrl`  for spark 2.


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

### Todos
* [ ] - Task

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

### How should this be tested?
Manually verify it on spark 1.6.2, spark 2.1.0 and spark master

### 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-2150

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

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


commit beb7925bbaff31e1a3361e8204cfc16bd3ecd26b
Author: Jeff Zhang 
Date:   2017-02-22T11:11:24Z

ZEPPELIN-2150. NoSuchMethodError: 
org.apache.spark.ui.SparkUI.appUIAddress() for the spark master




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