Skip to content

Commit

Permalink
Merge pull request #356 from exacaster/dependabot/gradle/server/org.a…
Browse files Browse the repository at this point in the history
…pache.spark-spark-launcher_2.12-3.3.2

Bump org.apache.spark:spark-launcher_2.12 from 3.3.1 to 3.3.2 in /server
  • Loading branch information
pdambrauskas authored Feb 20, 2023
2 parents 6e69a0e + 01362ec commit 867bb5d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
include:
- spark_version: 3.2.3
hadoop_version: 3.2
- spark_version: 3.3.1
- spark_version: 3.3.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 openjdk:11-jre-slim-stretch as server

ARG SPARK_VERSION=3.3.1
ARG SPARK_VERSION=3.3.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.14 as frontend

ARG SPARK_VERSION=3.3.1
ARG SPARK_VERSION=3.3.2
ARG HADOOP_VERSION=3

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

FROM openjdk:11-jre-slim-stretch

ARG SPARK_VERSION=3.3.1
ARG SPARK_VERSION=3.3.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 @@ -30,7 +30,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.2.3 and 3.3.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.2.3 and 3.3.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.0.41-spark3.3.1 \
docker run ghcr.io/exacaster/lighter:0.0.42-spark3.3.2 \
-p 8080:8080 \
-p 25333:25333 \
-e LIGHTER_KUBERNETES_ENABLED=false \
Expand Down
2 changes: 1 addition & 1 deletion quickstart/jupyterlab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ data:
"{\n",
" \"name\": \"Test Lighter\",\n",
" \"conf\":{\n",
" \"spark.kubernetes.container.image\": \"apache/spark-py:v3.3.1\"\n",
" \"spark.kubernetes.container.image\": \"apache/spark-py:v3.3.2\"\n",
" }\n",
"}"
]
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.0.41-spark3.3.1
- image: ghcr.io/exacaster/lighter:0.0.42-spark3.3.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.3.1'
def sparkVersion = project.hasProperty("SPARK_VERSION") ? project.getProperty("SPARK_VERSION") : '3.3.2'
def hadoopVersion = '3.3.3'
def k8sClientVersion = '6.4.1'
def shedlockVersion = '4.44.0'
Expand Down

0 comments on commit 867bb5d

Please sign in to comment.