koombal commented on issue #14762:
URL: https://github.com/apache/iceberg/issues/14762#issuecomment-3637107572
@nastra
`builder.config("spark.sql.catalog.iceberg",
"org.apache.iceberg.spark.SparkCatalog")
.config("spark.sql.catalog.iceberg.type", "rest")
.config("spark.sql.catalog.iceberg.uri", icebergUri)
.config("spark.sql.catalog.iceberg.warehouse", icebergWarehouseName);
builder.config("spark.sql.adaptive.enabled",
"true").config("spark.sql.adaptive.skewJoin.enabled", "true");
builder.config("spark.sql.timestampType", "TIMESTAMP_NTZ");
builder.config("spark.sql.catalog.iceberg.io-impl",
"org.apache.iceberg.aws.s3.S3FileIO")
.config(
"spark.sql.catalog.iceberg.client.region",
s3ConfigurationProperties
.getGeneralConfigurationProperties()
.getRegion())
.config("spark.sql.catalog.iceberg.s3.endpoint",
s3ConfigurationProperties.getSparkUrl())
.config("spark.sql.catalog.iceberg.s3.path-style-access", "true");
builder.config("spark.hadoop.fs.s3a.access.key",
s3ConfigurationProperties.getAccessKey());
builder.config("spark.hadoop.fs.s3a.secret.key",
s3ConfigurationProperties.getSecretKey());
builder.config("spark.hadoop.fs.s3a.endpoint",
s3ConfigurationProperties.getSparkUrl());
builder.config("spark.hadoop.fs.s3a.path.style.access", "true");
builder.config("spark.hadoop.fs.s3a.impl",
"org.apache.hadoop.fs.s3a.S3AFileSystem");
`
we tried moving the checkpoint to different paths and i believe also to a
different bucket... but experienced the same error
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]