vagababov commented on issue #15307: URL: https://github.com/apache/iceberg/issues/15307#issuecomment-3899835927
If I read the docs correctly: > To automatically clean metadata files, set write.metadata.delete-after-commit.enabled=true in table properties from https://iceberg.apache.org/docs/1.10.0/maintenance/?h=maintenance#remove-old-metadata-files You have it explicitly set to false above. ``` sql( "ALTER TABLE %s SET TBLPROPERTIES('write.metadata.delete-after-commit.enabled' = 'false', " + "'write.metadata.previous-versions-max'='10')", ``` Please update that to true, that should clean the files up. -- 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]
