racevedoo commented on issue #3791:
URL: https://github.com/apache/iceberg/issues/3791#issuecomment-1000300842


   > Ok. And can you describe the tables (are they partitioned, how big are 
they) and also, how youv'e configured the procedure calls (do they have a 
filter, do they group commits or do they use the default behavior of committing 
all at the end)?
   
   The tables are quite small (~500MB). They are not partitioned.
   The procedures are just using the default behavior (except for the file size 
in `rewrite_data_files`):
   ```sql
   CALL prod.system.expire_snapshots(table => 'my_db.table');
   CALL prod.system.rewrite_data_files(table => 'my_db.table', options => 
map('target-file-size-bytes','26214400')); --25MB
   CALL prod.system.rewrite_manifests(table => 'my_db.table');
   CALL prod.system.remove_orphan_files(table => 'my_db.table');
   ```


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