This is an automated email from the ASF dual-hosted git repository.
ztang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/submarine.git
The following commit(s) were added to refs/heads/master by this push:
new 0999d22 SUBMARINE-453. Mini-submarine build_mini-submarine.sh get
error
0999d22 is described below
commit 0999d22c7245a51ee19fdb6b91d91124f3d12cb7
Author: HuangTing-Yao <[email protected]>
AuthorDate: Wed Mar 25 23:52:54 2020 +0800
SUBMARINE-453. Mini-submarine build_mini-submarine.sh get error
### What is this PR for?
Change spark 2.4.4 to 2.3.4 , because the link only support spark 2.3.4 .
Manual install some packages which will connect fail when it auto install .
### What type of PR is it?
[Bug Fix]
### Todos
* [ ] - Task
### What is the Jira issue?
https://issues.apache.org/jira/projects/SUBMARINE/issues/SUBMARINE-453
### How should this be tested?
* First time? Setup Travis CI as described on
https://submarine.apache.org/contribution/contributions.html#continuous-integration
* Strongly recommended: add automated unit tests for any new or changed
behavior
* Outline any manual steps to test the PR here.
### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Author: HuangTing-Yao <[email protected]>
Author: Huang Ting-Yao <[email protected]>
Closes #248 from HuangTing-Yao/SUBMARINE-453 and squashes the following
commits:
b042f84 [HuangTing-Yao] Update dev-support/mini-submarine/Dockerfile
3ca4013 [Huang Ting-Yao] SUBMARINE-453. Mini-submarine
build_mini-submarine.sh get error
---
dev-support/mini-submarine/Dockerfile | 7 +++++++
dev-support/mini-submarine/build_mini-submarine.sh | 2 +-
2 files changed, 8 insertions(+), 1 deletion(-)
diff --git a/dev-support/mini-submarine/Dockerfile
b/dev-support/mini-submarine/Dockerfile
index dbe172b..80e066b 100644
--- a/dev-support/mini-submarine/Dockerfile
+++ b/dev-support/mini-submarine/Dockerfile
@@ -16,6 +16,13 @@
FROM ubuntu:18.04
#INSTALL JAVA
RUN apt-get -q update \
+ && apt-get install -y wget software-properties-common \
+ && add-apt-repository -y ppa:webupd8team/java \
+ && apt-get update \
+ && wget
http://archive.ubuntu.com/ubuntu/pool/main/m/mesa/libgl1-mesa-dri_19.2.8-0ubuntu0~18.04.2_amd64.deb
\
+ && wget
http://security.ubuntu.com/ubuntu/pool/main/i/icu/libicu60_60.2-3ubuntu3.1_amd64.deb
\
+ && apt-get install -y ./libgl1-mesa-dri_19.2.8-0ubuntu0~18.04.2_amd64.deb \
+ && apt-get install -y ./libicu60_60.2-3ubuntu3.1_amd64.deb \
&& apt-get -q install -y --no-install-recommends openjdk-8-jdk
libbcprov-java \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
diff --git a/dev-support/mini-submarine/build_mini-submarine.sh
b/dev-support/mini-submarine/build_mini-submarine.sh
index 95fd563..0a7c8e1 100755
--- a/dev-support/mini-submarine/build_mini-submarine.sh
+++ b/dev-support/mini-submarine/build_mini-submarine.sh
@@ -15,7 +15,7 @@
# limitations under the License.
set -e
hadoop_v=2.9.2
-spark_v=2.4.4
+spark_v=2.3.4
submarine_v=${submarine_version:-"0.4.0-SNAPSHOT"}
echo "Using submarine version: $submarine_v"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]