thijsheijden commented on issue #13218: URL: https://github.com/apache/iceberg/issues/13218#issuecomment-2939199771
I have tried actively setting those properties when creating the table, but it does not appear to change anything. Could this be a Spark related issue? ``` # Create table using schema of the first file df = spark.read.parquet(filenames[0]) # Create empty DataFrame and write to Iceberg table to create table empty_df = spark.createDataFrame([], df.schema) empty_df.writeTo(args.table).create() spark.sql(f""" ALTER TABLE iceberg_catalog.default.{args.table} SET TBLPROPERTIES ( 'write.metadata.metrics.default' = 'full' ); """) ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org