Skip to content

Commit 88a5b92

Browse files
committed
Update Delta Lake to 4.0.0rc1
1 parent 99de768 commit 88a5b92

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
- image: spark3-iceberg
2424
platforms: linux/amd64,linux/arm64
2525
test: spark3-iceberg
26-
- image: spark3-delta
26+
- image: spark4-delta
2727
platforms: linux/amd64,linux/arm64
28-
test: spark3-delta
28+
test: spark4-delta
2929
- image: spark3-hudi
3030
platforms: linux/amd64,linux/arm64
3131
test: spark3-hudi

etc/compose/spark3-delta/docker-compose.yml

-4
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version: '2.0'
2+
services:
3+
spark:
4+
image: testing/spark4-delta:latest$ARCH

testing/spark3-delta/Dockerfile testing/spark4-delta/Dockerfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
# limitations under the License.
1212

1313
ARG ARCH
14-
FROM testing/centos7-oj11:unlabelled$ARCH
14+
FROM testing/centos7-oj17:unlabelled$ARCH
1515

16-
ARG SPARK_VERSION=3.5.0
16+
ARG SPARK_VERSION=4.0.0-preview1
1717
ARG HADOOP_VERSION=3
18-
ARG DELTA_VERSION=3.2.0
19-
ARG SCALA_VERSION=2.12
18+
ARG DELTA_VERSION=4.0.0rc1
19+
ARG SCALA_VERSION=2.13
2020

2121
ARG SPARK_ARTIFACT="spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}"
2222

@@ -35,8 +35,8 @@ RUN wget -nv "https://repo1.maven.org/maven2/org/apache/hadoop/hadoop-aws/3.3.4/
3535
RUN wget -nv "https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-bundle/1.12.319/aws-java-sdk-bundle-1.12.319.jar"
3636

3737
# install Delta
38-
RUN wget -nv "https://repo1.maven.org/maven2/io/delta/delta-spark_${SCALA_VERSION}/${DELTA_VERSION}/delta-spark_${SCALA_VERSION}-${DELTA_VERSION}.jar"
39-
RUN wget -nv "https://repo1.maven.org/maven2/io/delta/delta-storage/${DELTA_VERSION}/delta-storage-${DELTA_VERSION}.jar"
38+
RUN wget -nv "https://oss.sonatype.org/content/repositories/iodelta-1147/io/delta/delta-spark_${SCALA_VERSION}/${DELTA_VERSION}/delta-spark_${SCALA_VERSION}-${DELTA_VERSION}.jar"
39+
RUN wget -nv "https://oss.sonatype.org/content/repositories/iodelta-1147/io/delta/delta-storage/${DELTA_VERSION}/delta-storage-${DELTA_VERSION}.jar"
4040

4141
# Create hive user to match Hive container
4242
RUN adduser hive

0 commit comments

Comments
 (0)