Skip to content
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
23 changes: 18 additions & 5 deletions docs/src/main/sphinx/connector/iceberg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,19 @@ configuration properties as the Hive connector's Glue setup. See
connector.name=iceberg
iceberg.catalog.type=glue

.. list-table:: Iceberg Glue catalog configuration properties
:widths: 35, 50, 15
:header-rows: 1

* - Property name
- Description
- Default
* - ``iceberg.glue.skip-archive``
- Skip archiving an old table version when creating a new version in a
commit. See `AWS Glue Skip Archive
<https://iceberg.apache.org/docs/latest/aws/#skip-archive>`_.
- ``false``

.. _iceberg-rest-catalog:

REST catalog
Expand All @@ -183,7 +196,7 @@ properties:
* - Property name
- Description
* - ``iceberg.rest-catalog.uri``
- REST server API endpoint URI (required).
- REST server API endpoint URI (required).
Example: ``http://iceberg-with-rest:8181``
* - ``iceberg.rest-catalog.warehouse``
- Warehouse identifier/location for the catalog (optional).
Expand Down Expand Up @@ -358,7 +371,7 @@ No other types are supported.
Security
--------

The Iceberg connector allows you to choose one of several means of providing
The Iceberg connector allows you to choose one of several means of providing
authorization at the catalog level.

.. _iceberg-authorization:
Expand Down Expand Up @@ -1226,10 +1239,10 @@ Identity transforms are simply the column name. Other transforms are:
* - ``day(ts)``
- A partition is created for each day of each year. The partition value is
the integer difference in days between ``ts`` and January 1 1970.
* - ``hour(ts)``
* - ``hour(ts)``
- A partition is created hour of each day. The partition value is a
timestamp with the minutes and seconds set to zero.
* - ``bucket(x, nbuckets)``
* - ``bucket(x, nbuckets)``
- The data is hashed into the specified number of buckets. The partition
value is an integer hash of ``x``, with a value between 0 and
``nbuckets - 1`` inclusive.
Expand Down Expand Up @@ -1514,4 +1527,4 @@ with Parquet files performed by the Iceberg connector.
property to ``false`` to disable the optimized parquet reader by default
for structural data types. The equivalent catalog session property is
``parquet_optimized_nested_reader_enabled``.
- ``true``
- ``true``