sebastienPinel commented on issue #3569:
URL: https://github.com/apache/amoro/issues/3569#issuecomment-2907019796
We are using the following configuration for SparkSession:
```java
SparkSession.builder()
.master("local[*]"))
.config("spark.app.id", appId)
.config("spark.driver.memory", "4g")
.config("spark.executor.memory", "4g")
.config("spark.sql.extensions",
"org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions")
.config("spark.sql.catalog.iceberg",
"org.apache.iceberg.spark.SparkCatalog")
.config("spark.sql.catalog.iceberg.type", "rest")
.config("spark.sql.catalog.iceberg.uri",
"http://localhost:1630/api/iceberg/rest")
.config("spark.sql.catalog.iceberg.warehouse",
"iceberg").getOrCreate()
```
There is no error only INFO message:
```
2025-05-24 20:57:03,368 INFO [thrift-server-optimize-manager-0]
[org.apache.amoro.server.optimizing.SchedulingPolicy] [] - Using sorter
instance org.apache.amoro.server.optimizing.sorter.QuotaOccupySorter
corresponding to the scheduling policy quota
2025-05-24 20:57:05,616 INFO [async-table-runtime-refresh-executor-5]
[org.apache.amoro.utils.CatalogUtil] [] - TableMetaStore use auth config in
catalog meta, authType is custom
2025-05-24 20:57:05,616 INFO [async-table-runtime-refresh-executor-5]
[org.apache.amoro.table.TableMetaStore] [] - Build table meta store with
configurations: authMethod:null, hadoopUsername:null, krbPrincipal:null
2025-05-24 20:57:05,616 INFO [async-table-runtime-refresh-executor-5]
[org.apache.iceberg.CatalogUtil] [] - Loading custom FileIO implementation:
org.apache.iceberg.aws.s3.S3FileIO
2025-05-24 20:57:05,616 INFO [async-table-runtime-refresh-executor-5]
[org.apache.amoro.utils.CatalogUtil] [] - TableMetaStore use auth config in
catalog meta, authType is custom
2025-05-24 20:57:05,616 INFO [async-table-runtime-refresh-executor-5]
[org.apache.amoro.table.TableMetaStore] [] - Build table meta store with
configurations: authMethod:null, hadoopUsername:null, krbPrincipal:null
2025-05-24 20:57:08,905 INFO [async-table-runtime-refresh-executor-0]
[org.apache.amoro.utils.CatalogUtil] [] - TableMetaStore use auth config in
catalog meta, authType is custom
2025-05-24 20:57:08,905 INFO [async-table-runtime-refresh-executor-0]
[org.apache.amoro.table.TableMetaStore] [] - Build table meta store with
configurations: authMethod:null, hadoopUsername:null, krbPrincipal:null
2025-05-24 20:57:08,905 INFO [async-table-runtime-refresh-executor-0]
[org.apache.iceberg.CatalogUtil] [] - Loading custom FileIO implementation:
org.apache.iceberg.aws.s3.S3FileIO
2025-05-24 20:57:08,905 INFO [async-table-runtime-refresh-executor-0]
[org.apache.amoro.utils.CatalogUtil] [] - TableMetaStore use auth config in
catalog meta, authType is custom
2025-05-24 20:57:08,905 INFO [async-table-runtime-refresh-executor-0]
[org.apache.amoro.table.TableMetaStore] [] - Build table meta store with
configurations: authMethod:null, hadoopUsername:null, krbPrincipal:null
```
--
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]