Skip to content

Commit 4e870ec

Browse files
committed
try 1.8.0
1 parent d6497a5 commit 4e870ec

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

dev/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,19 +39,19 @@ WORKDIR ${SPARK_HOME}
3939
# Remember to also update `tests/conftest`'s spark setting
4040
ENV SPARK_VERSION=3.5.3
4141
ENV ICEBERG_SPARK_RUNTIME_VERSION=3.5_2.12
42-
ENV ICEBERG_VERSION=1.6.0
42+
ENV ICEBERG_VERSION=1.8.0
4343
ENV PYICEBERG_VERSION=0.8.1
4444

4545
RUN curl --retry 5 -s -C - https://archive.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop3.tgz -o spark-${SPARK_VERSION}-bin-hadoop3.tgz \
4646
&& tar xzf spark-${SPARK_VERSION}-bin-hadoop3.tgz --directory /opt/spark --strip-components 1 \
4747
&& rm -rf spark-${SPARK_VERSION}-bin-hadoop3.tgz
4848

4949
# Download iceberg spark runtime
50-
RUN curl --retry 5 -s https://repo1.maven.org/maven2/org/apache/iceberg/iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}/${ICEBERG_VERSION}/iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}-${ICEBERG_VERSION}.jar -Lo iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}-${ICEBERG_VERSION}.jar \
50+
RUN curl --retry 5 -s https://repository.apache.org/content/repositories/orgapacheiceberg-1182/org/apache/iceberg/iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}/${ICEBERG_VERSION}/iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}-${ICEBERG_VERSION}.jar -Lo iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}-${ICEBERG_VERSION}.jar \
5151
&& mv iceberg-spark-runtime-${ICEBERG_SPARK_RUNTIME_VERSION}-${ICEBERG_VERSION}.jar /opt/spark/jars
5252

5353
# Download AWS bundle
54-
RUN curl --retry 5 -s https://repo1.maven.org/maven2/org/apache/iceberg/iceberg-aws-bundle/${ICEBERG_VERSION}/iceberg-aws-bundle-${ICEBERG_VERSION}.jar -Lo /opt/spark/jars/iceberg-aws-bundle-${ICEBERG_VERSION}.jar
54+
RUN curl --retry 5 -s https://repository.apache.org/content/repositories/orgapacheiceberg-1182/org/apache/iceberg/iceberg-aws-bundle/${ICEBERG_VERSION}/iceberg-aws-bundle-${ICEBERG_VERSION}.jar -Lo /opt/spark/jars/iceberg-aws-bundle-${ICEBERG_VERSION}.jar
5555

5656
COPY spark-defaults.conf /opt/spark/conf
5757
ENV PATH="/opt/spark/sbin:/opt/spark/bin:${PATH}"

tests/conftest.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2420,7 +2420,7 @@ def spark() -> "SparkSession":
24202420
# Remember to also update `dev/Dockerfile`
24212421
spark_version = ".".join(importlib.metadata.version("pyspark").split(".")[:2])
24222422
scala_version = "2.12"
2423-
iceberg_version = "1.6.0"
2423+
iceberg_version = "1.8.0"
24242424

24252425
os.environ["PYSPARK_SUBMIT_ARGS"] = (
24262426
f"--packages org.apache.iceberg:iceberg-spark-runtime-{spark_version}_{scala_version}:{iceberg_version},"
@@ -2432,6 +2432,7 @@ def spark() -> "SparkSession":
24322432

24332433
spark = (
24342434
SparkSession.builder.appName("PyIceberg integration test")
2435+
.config('spark.jars.repositories', 'https://repository.apache.org/content/repositories/orgapacheiceberg-1182/')
24352436
.config("spark.sql.session.timeZone", "UTC")
24362437
.config("spark.sql.extensions", "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions")
24372438
.config("spark.sql.catalog.integration", "org.apache.iceberg.spark.SparkCatalog")

0 commit comments

Comments
 (0)