Skip to content

Commit

Permalink
Update Delta Lake to 4.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
ebyhr committed Jun 7, 2024
1 parent 99de768 commit b90aa51
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
- image: spark3-iceberg
platforms: linux/amd64,linux/arm64
test: spark3-iceberg
- image: spark3-delta
- image: spark4-delta
platforms: linux/amd64,linux/arm64
test: spark3-delta
test: spark4-delta
- image: spark3-hudi
platforms: linux/amd64,linux/arm64
test: spark3-hudi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
ARG ARCH
FROM testing/centos7-oj11:unlabelled$ARCH

ARG SPARK_VERSION=3.5.0
ARG SPARK_VERSION=4.0.0-preview1
ARG HADOOP_VERSION=3
ARG DELTA_VERSION=3.2.0
ARG SCALA_VERSION=2.12
ARG DELTA_VERSION=4.0.0rc1
ARG SCALA_VERSION=2.13

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

Expand All @@ -35,8 +35,8 @@ RUN wget -nv "https://repo1.maven.org/maven2/org/apache/hadoop/hadoop-aws/3.3.4/
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"

# install Delta
RUN wget -nv "https://repo1.maven.org/maven2/io/delta/delta-spark_${SCALA_VERSION}/${DELTA_VERSION}/delta-spark_${SCALA_VERSION}-${DELTA_VERSION}.jar"
RUN wget -nv "https://repo1.maven.org/maven2/io/delta/delta-storage/${DELTA_VERSION}/delta-storage-${DELTA_VERSION}.jar"
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"
RUN wget -nv "https://oss.sonatype.org/content/repositories/iodelta-1147/io/delta/delta-storage/${DELTA_VERSION}/delta-storage-${DELTA_VERSION}.jar"

# Create hive user to match Hive container
RUN adduser hive
Expand Down

0 comments on commit b90aa51

Please sign in to comment.