Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(spark): add log4j fixes to 3.2.2 #44

Merged
merged 2 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ jobs:
strategy:
matrix:
version:
- zeppelin: "0.10.1"
spark: "3.2.2"
hadoop: "3.3.1"
scala: "2.12"
java: "8"
- zeppelin: "0.10.1"
spark: "3.3.0"
hadoop: "3.3.2"
scala: "2.12"
java: "8"
- zeppelin: "0.10.1"
spark: "3.4.1"
hadoop: "3.3.4"
Expand All @@ -23,7 +33,7 @@ jobs:
fail-fast: true
runs-on: ubuntu-latest
env:
SELF_VERSION: "v4"
SELF_VERSION: "v5"
IMAGE_NAME: zeppelin
ZEPPELIN_VERSION: "${{ matrix.version.zeppelin }}"
SPARK_VERSION: "${{ matrix.version.spark }}"
Expand Down
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ In principle, new features can be added to an existing version, but the change
should not be breaking to existing default `docker run` with default env vars
set-up.

## v4

- No longer self-compilation of Zeppelin from source code since it hardly works,
using pre-built binary `zeppelin-x.y.z-bin-netinst.tgz`.
## v5
- No longer use fat jar from <https://github.com/dsaidgovsg/pac4j-authorizer>,
and instead place the latest working `buji-pac4j` and `pac4j-oauth` (and
their deps JARs) into `${ZEPPELIN_HOME}/lib`.
- Replaced `log4j-1.2.17.jar` and `slf4j-log4j12-1.7.30` with reload4j variant.

## v4
- No longer self-compilation of Zeppelin from source code since it hardly works,
using pre-built binary `zeppelin-x.y.z-bin-netinst.tgz`.
- Drop all `_IMPERSONATE_` env vars since they do not work properly in Zeppelin
0.10.z:
- `ZEPPELIN_IMPERSONATE_USER`
Expand Down
14 changes: 13 additions & 1 deletion templates/vars.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
self_version: "v4"
self_version: "v5"

versions:
- zeppelin: ["0.10.1"]
spark: ["3.2.2"]
java: ["8"]
scala: ["2.12"]
hadoop: ["3.3.1"]

- zeppelin: ["0.10.1"]
spark: ["3.3.0"]
java: ["8"]
scala: ["2.12"]
hadoop: ["3.3.2"]

- zeppelin: ["0.10.1"]
spark: ["3.4.1"]
java: ["8"]
Expand Down
Loading