Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reorganize Iceberg configuration properties in doc #12807

Merged
merged 1 commit into from
Jun 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,19 @@ is used.
* - ``iceberg.max-partitions-per-writer``
- Maximum number of partitions handled per writer.
- 100
* - ``iceberg.target-max-file-size``
- Target maximum size of written files; the actual size may be larger
- ``1GB``
* - ``iceberg.unique-table-location``
- Use randomized, unique table locations
- ``false``
* - ``iceberg.delete-schema-locations-fallback``
- Whether schema locations should be deleted when Trino can't determine whether they contain external files.
- ``false``
* - ``iceberg.minimum-assigned-split-weight``
- A decimal value in the range (0, 1] used as a minimum for weights assigned to each split. A low value may improve performance
on tables with small files. A higher value may improve performance for queries with highly skewed aggregations or joins.
- 0.05
* - ``iceberg.table-statistics-enabled``
- Enables :doc:`/optimizer/statistics`. The equivalent
:doc:`catalog session property </sql/set-session>`
Expand All @@ -135,19 +148,6 @@ with ORC files performed by the Iceberg connector.
* - ``hive.orc.bloom-filters.enabled``
- Enable bloom filters for predicate pushdown.
- ``false``
* - ``iceberg.target-max-file-size``
- Target maximum size of written files; the actual size may be larger
- ``1GB``
* - ``iceberg.unique-table-location``
- Use randomized, unique table locations
- ``false``
* - ``iceberg.delete-schema-locations-fallback``
- Whether schema locations should be deleted when Trino can't determine whether they contain external files.
- ``false``
* - ``iceberg.minimum-assigned-split-weight``
- A decimal value in the range (0, 1] used as a minimum for weights assigned to each split. A low value may improve performance
on tables with small files. A higher value may improve performance for queries with highly skewed aggregations or joins.
- 0.05

.. _iceberg-authorization:

Expand Down