From bcd57a535f547ecfa7a34d312f43b4b7464ff9e0 Mon Sep 17 00:00:00 2001 From: fanng Date: Tue, 3 Sep 2024 20:31:50 +0800 Subject: [PATCH] update --- docs/lakehouse-iceberg-catalog.md | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/docs/lakehouse-iceberg-catalog.md b/docs/lakehouse-iceberg-catalog.md index 2c3057296ae..6ca5613f2b7 100644 --- a/docs/lakehouse-iceberg-catalog.md +++ b/docs/lakehouse-iceberg-catalog.md @@ -264,24 +264,21 @@ You can pass [Iceberg table properties](https://iceberg.apache.org/docs/1.5.2/co The Gravitino server doesn't allow passing the following reserved fields. -| Configuration item | Description | Default value | Required | Since Version | -|---------------------------|---------------------------------------------------------|---------------|----------|---------------| -| `comment` | The table comment. | None | No | 0.2.0 | -| `creator` | The table creator. | None | No | 0.2.0 | -| `current-snapshot-id` | The snapshot represents the current state of the table. | None | No | 0.2.0 | -| `cherry-pick-snapshot-id` | Selecting a specific snapshot in a merge operation. | None | No | 0.2.0 | -| `sort-order` | Selecting a specific snapshot in a merge operation. | None | No | 0.2.0 | -| `identifier-fields` | The identifier fields for defining the table. | None | No | 0.2.0 | -| `write.distribution-mode` | Defines distribution of write data | None | No | 0.2.0 | +| Configuration item | Description | Default value | Required | Since Version | +|---------------------------|--------------------------------------------------------------------------------------|---------------|----------|---------------| +| `comment` | The table comment, please use `comment` field in table meta instead. | None | No | 0.2.0 | +| `creator` | The table creator. | None | No | 0.2.0 | +| `current-snapshot-id` | The snapshot represents the current state of the table. | None | No | 0.2.0 | +| `cherry-pick-snapshot-id` | Selecting a specific snapshot in a merge operation. | None | No | 0.2.0 | +| `sort-order` | Iceberg table sort order, please use `SortOrder` in table meta instead. | None | No | 0.2.0 | +| `identifier-fields` | The identifier fields for defining the table. | None | No | 0.2.0 | +| `write.distribution-mode` | Defines distribution of write data, please use `distribution` in table meta instead. | None | No | 0.2.0 | Gravitino server doesn't allow to change such properties: | Configuration item | Description | Default value | Required | Since Version | |--------------------|----------------------------------------------|---------------|----------|---------------| | `location` | Iceberg location for table storage. | None | No | 0.2.0 | -| `format` | Iceberg table format like `iceberg/parquet`. | None | No | 0.2.0 | -| `format-version` | Iceberg meta data format version. | None | No | 0.2.0 | -| `provider` | Table provider like `iceberg`. | None | No | 0.2.0 | ### Table indexes