astronautas commented on issue #15307:
URL: https://github.com/apache/iceberg/issues/15307#issuecomment-3895367112

   ```
   ALTER TABLE <redacted_db>.<redacted_table>
   SET TBLPROPERTIES (
       'write.metadata.delete-after-commit.enabled' = 'false',
       'write.metadata.previous-versions-max' = '10'
   );
   ```
   
   Above you can see the latest table properties that we have applied. It's an 
alter, so we have applied this property retroactively to creating the table. 
   
   Should keep 10 metada-log items at maximum, right? And the rest should be 
repeat by orphan files collection, is that right? 
   
   <img width="281" height="508" alt="Image" 
src="https://github.com/user-attachments/assets/03d60e52-f739-4877-9090-3af6f0280f3b";
 />
   
   latest metadata.json for the table above - see metadata-log key? Has over 
14k entries... Nothing close to 10, it seems.


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

Reply via email to