sebastienPinel

Results 2 comments of sebastienPinel

Hello, Just a small comment to say that it would be great to also upgrade iceberg version to latest one (1.9.0 atm)

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...