Skip to content

Commit

Permalink
Correct description of retention_threshold parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
homar authored and findepi committed May 20, 2022
1 parent 9be3b8d commit acf3c9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ The procedure affects all snapshots that are older than the time period configur
ALTER TABLE test_table EXECUTE expire_snapshots(retention_threshold => '7d')
The value for ``retention_threshold`` must be higher than ``iceberg.expire_snapshots.min-retention`` in the catalog
The value for ``retention_threshold`` must be higher than or equal to ``iceberg.expire_snapshots.min-retention`` in the catalog
otherwise the procedure will fail with similar message:
``Retention specified (1.00d) is shorter than the minimum retention configured in the system (7.00d)``.
The default value for this property is ``7d``.
Expand All @@ -234,7 +234,7 @@ Deleting orphan files from time to time is recommended to keep size of table's d
ALTER TABLE test_table EXECUTE remove_orphan_files(retention_threshold => '7d')
The value for ``retention_threshold`` must be higher than ``iceberg.remove_orphan_files.min-retention`` in the catalog
The value for ``retention_threshold`` must be higher than or equal to ``iceberg.remove_orphan_files.min-retention`` in the catalog
otherwise the procedure will fail with similar message:
``Retention specified (1.00d) is shorter than the minimum retention configured in the system (7.00d)``.
The default value for this property is ``7d``.
Expand Down

0 comments on commit acf3c9c

Please sign in to comment.