From 6d1f7c2f759edfa72cfa7a4b4c517a94adfa63a6 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 10 Feb 2026 12:15:48 -0800 Subject: [PATCH] Remove unsupported iceberg rest signing-region from tests and docs --- test/s3tables/Makefile | 2 -- test/s3tables/catalog_spark/setup_test.go | 1 - 2 files changed, 3 deletions(-) diff --git a/test/s3tables/Makefile b/test/s3tables/Makefile index f1ac9efc0..9495acae5 100644 --- a/test/s3tables/Makefile +++ b/test/s3tables/Makefile @@ -300,7 +300,6 @@ populate-spark: ensure-table-bucket ensure-work-dir ## Populate sample data via --conf "spark.sql.catalog.iceberg.s3.region=$(AWS_REGION)" \ --conf "spark.sql.catalog.iceberg.rest.sigv4-enabled=true" \ --conf "spark.sql.catalog.iceberg.rest.signing-name=s3tables" \ - --conf "spark.sql.catalog.iceberg.rest.signing-region=$(AWS_REGION)" \ --conf "spark.sql.catalog.spark_catalog=org.apache.iceberg.spark.SparkCatalog" \ --conf "spark.sql.catalog.spark_catalog.type=rest" \ --conf "spark.sql.catalog.spark_catalog.uri=$(CATALOG_ENDPOINT_DOCKER)" \ @@ -314,7 +313,6 @@ populate-spark: ensure-table-bucket ensure-work-dir ## Populate sample data via --conf "spark.sql.catalog.spark_catalog.s3.region=$(AWS_REGION)" \ --conf "spark.sql.catalog.spark_catalog.rest.sigv4-enabled=true" \ --conf "spark.sql.catalog.spark_catalog.rest.signing-name=s3tables" \ - --conf "spark.sql.catalog.spark_catalog.rest.signing-region=$(AWS_REGION)" \ -f /work/spark_seed.sql' populate: populate-trino populate-spark ## Populate sample data through Trino and Spark diff --git a/test/s3tables/catalog_spark/setup_test.go b/test/s3tables/catalog_spark/setup_test.go index 9e889b53e..50f3017a7 100644 --- a/test/s3tables/catalog_spark/setup_test.go +++ b/test/s3tables/catalog_spark/setup_test.go @@ -326,7 +326,6 @@ spark = (SparkSession.builder .config("spark.sql.catalog.iceberg.rest.auth.type", "sigv4") .config("spark.sql.catalog.iceberg.rest.auth.sigv4.delegate-auth-type", "none") .config("spark.sql.catalog.iceberg.rest.sigv4-enabled", "true") - .config("spark.sql.catalog.iceberg.rest.signing-region", "us-west-2") .config("spark.sql.catalog.iceberg.rest.signing-name", "s3") .config("spark.sql.catalog.iceberg.rest.access-key-id", "test") .config("spark.sql.catalog.iceberg.rest.secret-access-key", "test")