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

[#4758] correct Iceberg document location is immutable not reserved #4808

Merged
merged 5 commits into from
Sep 5, 2024
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
25 changes: 15 additions & 10 deletions docs/lakehouse-iceberg-catalog.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,16 +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 |
|---------------------------------|---------------------------------------------------------|
| `comment` | The table comment. |
| `creator` | The table creator. |
| `location` | Iceberg location for table storage. |
| `current-snapshot-id` | The snapshot represents the current state of the table. |
| `cherry-pick-snapshot-id` | Selecting a specific snapshot in a merge operation. |
| `sort-order` | Selecting a specific snapshot in a merge operation. |
| `identifier-fields` | The identifier fields for defining the table. |
| `write.distribution-mode` | Defines distribution of write data |
| Configuration item | Description | Since Version |
|---------------------------|--------------------------------------------------------------------------------------|---------------|
| `comment` | The table comment, please use `comment` field in table meta instead. | 0.2.0 |
| `creator` | The table creator. | 0.2.0 |
| `current-snapshot-id` | The snapshot represents the current state of the table. | 0.2.0 |
| `cherry-pick-snapshot-id` | Selecting a specific snapshot in a merge operation. | 0.2.0 |
| `sort-order` | Iceberg table sort order, please use `SortOrder` in table meta instead. | 0.2.0 |
| `identifier-fields` | The identifier fields for defining the table. | 0.2.0 |
| `write.distribution-mode` | Defines distribution of write data, please use `distribution` in table meta instead. | 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 |

### Table indexes

Expand Down
Loading