Browse Source
Remove unsupported iceberg rest signing-region from tests and docs (#8289)
pull/8290/head
Chris Lu
17 hours ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
0 additions and
3 deletions
-
test/s3tables/Makefile
-
test/s3tables/catalog_spark/setup_test.go
|
|
|
@ -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
|
|
|
|
|
|
|
|
@ -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") |
|
|
|
|