Skip to content
New issue

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

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

Already on GitHub? # to your account

Update Delta Lake to 4.0.0rc1 #200

Closed
wants to merge 1 commit into from
Closed
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/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
4 changes: 0 additions & 4 deletions etc/compose/spark3-delta/docker-compose.yml

This file was deleted.

4 changes: 4 additions & 0 deletions etc/compose/spark4-delta/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
version: '2.0'
services:
spark:
image: testing/spark4-delta:latest$ARCH
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
# limitations under the License.

ARG ARCH
FROM testing/centos7-oj11:unlabelled$ARCH
FROM testing/centos7-oj17: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
Loading