This is an automated email from the ASF dual-hosted git repository.
jongyoul pushed a commit to branch branch-0.11
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.11 by this push:
new b9e7b398b6 Version up to 0.11.2
b9e7b398b6 is described below
commit b9e7b398b61775b5d6674060c6ef21bb3cedddb0
Author: SeungYoung Oh <[email protected]>
AuthorDate: Thu Aug 15 15:19:20 2024 +0900
Version up to 0.11.2
---
docs/Gemfile.lock | 30 ++++++++++++++++--------------
docs/README.md | 6 +++++-
docs/interpreter/flink.md | 4 ++--
docs/interpreter/jdbc.md | 2 +-
docs/interpreter/python.md | 2 +-
docs/interpreter/r.md | 2 +-
docs/interpreter/spark.md | 2 +-
docs/quickstart/install.md | 6 +++---
docs/quickstart/kubernetes.md | 12 ++++++------
9 files changed, 36 insertions(+), 30 deletions(-)
diff --git a/docs/Gemfile.lock b/docs/Gemfile.lock
index aaccff9451..1695ac3b6e 100644
--- a/docs/Gemfile.lock
+++ b/docs/Gemfile.lock
@@ -2,13 +2,14 @@ GEM
remote: https://rubygems.org/
specs:
RedCloth (4.2.9)
- classifier (1.3.3)
- fast-stemmer (>= 1.0.0)
+ classifier (1.4.1)
+ fast-stemmer (~> 1.0.0)
+ rake
colorator (0.1)
- commander (4.1.5)
+ commander (4.1.6)
highline (~> 1.6.11)
fast-stemmer (1.0.2)
- ffi (1.9.3)
+ ffi (1.12.2)
github-pages (10)
RedCloth (= 4.2.9)
jekyll (= 1.3.0)
@@ -17,7 +18,7 @@ GEM
maruku (= 0.6.1)
rdiscount (= 2.1.7)
redcarpet (= 2.3.0)
- highline (1.6.20)
+ highline (1.6.21)
jekyll (1.3.0)
classifier (~> 1.3)
colorator (~> 0.1)
@@ -27,7 +28,7 @@ GEM
maruku (~> 0.6.0)
pygments.rb (~> 0.5.0)
redcarpet (~> 2.3.0)
- safe_yaml (~> 1.0.4)
+ safe_yaml (~> 0.9.7)
kramdown (1.2.0)
liquid (2.5.4)
listen (1.3.1)
@@ -36,19 +37,20 @@ GEM
rb-kqueue (>= 0.2)
maruku (0.6.1)
syntax (>= 1.0.0)
- posix-spawn (0.3.6)
+ posix-spawn (0.3.15)
pygments.rb (0.5.4)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
- rb-fsevent (0.9.3)
- rb-inotify (0.9.2)
- ffi (>= 0.5.0)
- rb-kqueue (0.2.0)
+ rake (12.3.3)
+ rb-fsevent (0.11.2)
+ rb-inotify (0.9.10)
+ ffi (>= 0.5.0, < 2)
+ rb-kqueue (0.2.8)
ffi (>= 0.5.0)
rdiscount (2.1.7)
redcarpet (2.3.0)
- safe_yaml (1.0.4)
- syntax (1.0.0)
+ safe_yaml (0.9.7)
+ syntax (1.2.2)
yajl-ruby (1.1.0)
PLATFORMS
@@ -58,4 +60,4 @@ DEPENDENCIES
github-pages
BUNDLED WITH
- 1.10.4
+ 1.15.1
diff --git a/docs/README.md b/docs/README.md
index c9646e1295..5def44b4f0 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -68,7 +68,11 @@ If you wish to help us and contribute to Zeppelin
Documentation, please look at
```
# go to /docs under Zeppelin source
- bundle exec jekyll build --safe
+ docker run --rm -it \
+ -v $PWD:/docs \
+ -w /docs \
+ ruby:2.0.0 \
+ bash -c "bundle install && bundle exec jekyll build --safe"
```
2. checkout ASF repo
diff --git a/docs/interpreter/flink.md b/docs/interpreter/flink.md
index 06864d24a3..171c2e49ae 100644
--- a/docs/interpreter/flink.md
+++ b/docs/interpreter/flink.md
@@ -116,7 +116,7 @@ e.g. Here we download Flink 1.12.2
to`/mnt/disk1/flink-1.12.2`,
and we mount it to Zeppelin docker container and run the following command to
start Zeppelin docker.
```bash
-docker run -u $(id -u) -p 8080:8080 -p 8081:8081 --rm -v
/mnt/disk1/flink-1.12.2:/opt/flink -e FLINK_HOME=/opt/flink --name zeppelin
apache/zeppelin:0.11.1
+docker run -u $(id -u) -p 8080:8080 -p 8081:8081 --rm -v
/mnt/disk1/flink-1.12.2:/opt/flink -e FLINK_HOME=/opt/flink --name zeppelin
apache/zeppelin:0.11.2
```
After running the above command, you can open `http://localhost:8080` to play
Flink in Zeppelin. We only verify the flink local mode in Zeppelin docker,
other modes may not due to network issues.
@@ -133,7 +133,7 @@ e.g. Here's a repo of Flink sql cookbook on Zeppelin:
[https://github.com/zjffdu
You can clone this repo and mount it to docker,
```
-docker run -u $(id -u) -p 8080:8080 --rm -v
/mnt/disk1/flink-sql-cookbook-on-zeppelin:/notebook -v
/mnt/disk1/flink-1.12.2:/opt/flink -e FLINK_HOME=/opt/flink -e
ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin apache/zeppelin:0.11.1
+docker run -u $(id -u) -p 8080:8080 --rm -v
/mnt/disk1/flink-sql-cookbook-on-zeppelin:/notebook -v
/mnt/disk1/flink-1.12.2:/opt/flink -e FLINK_HOME=/opt/flink -e
ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin apache/zeppelin:0.11.2
```
## Prerequisites
diff --git a/docs/interpreter/jdbc.md b/docs/interpreter/jdbc.md
index bc14678b94..d7992dc6a7 100644
--- a/docs/interpreter/jdbc.md
+++ b/docs/interpreter/jdbc.md
@@ -1057,7 +1057,7 @@ Before Adding one of the below dependencies, check the
Phoenix version first.
<th>Excludes</th>
</tr>
<tr>
- <td>org.apache.tajo:tajo-jdbc:0.11.1</td>
+ <td>org.apache.tajo:tajo-jdbc:0.11.2</td>
<td></td>
</tr>
</table>
diff --git a/docs/interpreter/python.md b/docs/interpreter/python.md
index 893a7f92f1..5419e2bc92 100644
--- a/docs/interpreter/python.md
+++ b/docs/interpreter/python.md
@@ -86,7 +86,7 @@ Without any extra configuration, you can run most of tutorial
notes under folder
```bash
-docker run -u $(id -u) -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.11.1
+docker run -u $(id -u) -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.11.2
```
After running the above command, you can open `http://localhost:8080` to play
Python in Zeppelin.
diff --git a/docs/interpreter/r.md b/docs/interpreter/r.md
index 3387a00f0e..dc376cb596 100644
--- a/docs/interpreter/r.md
+++ b/docs/interpreter/r.md
@@ -158,7 +158,7 @@ For beginner, we would suggest you to play R in Zeppelin
docker first. In the Ze
Without any extra configuration, you can run most of tutorial notes under
folder `R Tutorial` directly.
```
-docker run -u $(id -u) -p 8080:8080 -p:6789:6789 --rm --name zeppelin
apache/zeppelin:0.11.1
+docker run -u $(id -u) -p 8080:8080 -p:6789:6789 --rm --name zeppelin
apache/zeppelin:0.11.2
```
After running the above command, you can open `http://localhost:8080` to play
R in Zeppelin.
diff --git a/docs/interpreter/spark.md b/docs/interpreter/spark.md
index 54b1d4d9be..17c07e211a 100644
--- a/docs/interpreter/spark.md
+++ b/docs/interpreter/spark.md
@@ -128,7 +128,7 @@ e.g. Here we download Spark 3.1.2
to`/mnt/disk1/spark-3.1.2`,
and we mount it to Zeppelin docker container and run the following command to
start Zeppelin docker container.
```bash
-docker run -u $(id -u) -p 8080:8080 -p 4040:4040 --rm -v
/mnt/disk1/spark-3.1.2:/opt/spark -e SPARK_HOME=/opt/spark --name zeppelin
apache/zeppelin:0.11.1
+docker run -u $(id -u) -p 8080:8080 -p 4040:4040 --rm -v
/mnt/disk1/spark-3.1.2:/opt/spark -e SPARK_HOME=/opt/spark --name zeppelin
apache/zeppelin:0.11.2
```
After running the above command, you can open `http://localhost:8080` to play
Spark in Zeppelin. We only verify the spark local mode in Zeppelin docker,
other modes may not work due to network issues.
diff --git a/docs/quickstart/install.md b/docs/quickstart/install.md
index 7fb18899b6..5e97392fdb 100644
--- a/docs/quickstart/install.md
+++ b/docs/quickstart/install.md
@@ -86,7 +86,7 @@ Make sure that
[docker](https://www.docker.com/community-edition) is installed i
Use this command to launch Apache Zeppelin in a container.
```bash
-docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.11.1
+docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:0.11.2
```
@@ -95,7 +95,7 @@ To persist `logs` and `notebook` directories, use the
[volume](https://docs.dock
```bash
docker run -u $(id -u) -p 8080:8080 --rm -v $PWD/logs:/logs -v
$PWD/notebook:/notebook \
-e ZEPPELIN_LOG_DIR='/logs' -e ZEPPELIN_NOTEBOOK_DIR='/notebook' \
- --name zeppelin apache/zeppelin:0.11.1
+ --name zeppelin apache/zeppelin:0.11.2
```
`-u $(id -u)` is to make sure you have the permission to write logs and
notebooks.
@@ -106,7 +106,7 @@ and Flink interpreter requires Flink binary distribution.
You can also mount the
```bash
docker run -u $(id -u) -p 8080:8080 --rm -v /mnt/disk1/notebook:/notebook \
-v /usr/lib/spark-current:/opt/spark -v /mnt/disk1/flink-1.12.2:/opt/flink -e
FLINK_HOME=/opt/flink \
--e SPARK_HOME=/opt/spark -e ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin
apache/zeppelin:0.11.1
+-e SPARK_HOME=/opt/spark -e ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin
apache/zeppelin:0.11.2
```
If you have trouble accessing `localhost:8080` in the browser, Please clear
browser cache.
diff --git a/docs/quickstart/kubernetes.md b/docs/quickstart/kubernetes.md
index 1fbcdabd21..5ec66c313a 100644
--- a/docs/quickstart/kubernetes.md
+++ b/docs/quickstart/kubernetes.md
@@ -70,19 +70,19 @@ Next, we will build our `zeppelin-server` image:
```sh
cd scripts/docker/zeppelin-server
-# Looking at the "./pom.xml" we can see the version is 0.11.1
+# Looking at the "./pom.xml" we can see the version is 0.11.2
# Let's set the correct version in our Dockerfile:
# vi Dockerfile
-# ARG version="0.11.1"
+# ARG version="0.11.2"
# Once you saved the Dockerfile with the correct version we can build our
image:
-docker build -t zeppelin-server:0.11.1 -f ./Dockerfile .
+docker build -t zeppelin-server:0.11.2 -f ./Dockerfile .
```
The last image we build is `zeppelin-interpreter`:
```sh
cd scripts/docker/zeppelin-interpreter
-docker build -t zeppelin-interpreter:0.11.1 -f ./Dockerfile .
+docker build -t zeppelin-interpreter:0.11.2 -f ./Dockerfile .
```
So we should now have the following images:
@@ -92,8 +92,8 @@ So we should now have the following images:
$ docker images
REPOSITORY TAG IMAGE ID CREATED
SIZE
-zeppelin-interpreter 0.11.1 4f77fe989eed 3 minutes ago
622MB
-zeppelin-server 0.11.1 4f77fe989eed 3 minutes ago
622MB
+zeppelin-interpreter 0.11.2 4f77fe989eed 3 minutes ago
622MB
+zeppelin-server 0.11.2 4f77fe989eed 3 minutes ago
622MB
zeppelin-distribution latest bd2fb4b321d2 40 minutes ago
1.27GB
```