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

Update spark versions #1112

Merged
merged 1 commit into from
Sep 11, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-registry-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
strategy:
matrix:
include:
- spark_version: 3.4.2
- spark_version: 3.4.3
hadoop_version: 3
- spark_version: 3.5.1
- spark_version: 3.5.2
hadoop_version: 3
steps:
- name: Checkout pull request
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
strategy:
matrix:
include:
- spark_version: 3.4.2
- spark_version: 3.4.3
hadoop_version: 3
- spark_version: 3.5.1
- spark_version: 3.5.2
hadoop_version: 3
steps:
- uses: docker/setup-buildx-action@v2
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eclipse-temurin:17-jdk-jammy as server

ARG SPARK_VERSION=3.5.1
ARG SPARK_VERSION=3.5.2
ARG HADOOP_VERSION=3

WORKDIR /home/app/
Expand All @@ -11,7 +11,7 @@ RUN ./gradlew build -x test -PSPARK_VERSION=${SPARK_VERSION}

FROM node:lts-alpine3.18 as frontend

ARG SPARK_VERSION=3.5.1
ARG SPARK_VERSION=3.5.2
ARG HADOOP_VERSION=3

ENV APP_BASE_URL='/lighter'
Expand All @@ -25,7 +25,7 @@ RUN yarn install && yarn build

FROM eclipse-temurin:17-jre-jammy

ARG SPARK_VERSION=3.5.1
ARG SPARK_VERSION=3.5.2
ARG HADOOP_VERSION=3

ENV FRONTEND_PATH=/home/app/frontend/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker build -t lighter .

### Spark versions

Lighter will always try to support the latest patch version for all officially recommended [Apache Spark](https://spark.apache.org/) releases i.e.: 3.4.2 and 3.5.1.
Lighter will always try to support the latest patch version for all officially recommended [Apache Spark](https://spark.apache.org/) releases i.e.: 3.4.3 and 3.5.2.

### Contributing

Expand Down
2 changes: 1 addition & 1 deletion docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
If you're thinking of running Lighter on docker, you are probably using it with YARN backend. When you are running it, you should expose two ports (REST API port and Python Gateway port), as shown in this example:

```bash
docker run ghcr.io/exacaster/lighter:0.1.1-spark3.5.1 \
docker run ghcr.io/exacaster/lighter:0.1.2-spark3.5.2 \
-p 8080:8080 \
-p 25333:25333 \
-e LIGHTER_KUBERNETES_ENABLED=false \
Expand Down
2 changes: 1 addition & 1 deletion quickstart/lighter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ spec:
run: lighter
spec:
containers:
- image: ghcr.io/exacaster/lighter:0.1.1-spark3.5.1
- image: ghcr.io/exacaster/lighter:0.1.2-spark3.5.2
name: lighter
readinessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ micronaut {
}
mainClassName = "com.exacaster.lighter.Application"

def sparkVersion = project.hasProperty("SPARK_VERSION") ? project.getProperty("SPARK_VERSION") : '3.5.1'
def sparkVersion = project.hasProperty("SPARK_VERSION") ? project.getProperty("SPARK_VERSION") : '3.5.2'
def hadoopVersion = '3.4.0'
def k8sClientVersion = '6.13.3'
def shedlockVersion = '5.14.0'
Expand Down
Loading