From 11ad717fe75c55304e23a5ac95be6063eda3f734 Mon Sep 17 00:00:00 2001 From: sikehish Date: Thu, 17 Oct 2024 21:53:09 +0530 Subject: [PATCH] configuration.md: Moved schema.name-mapping.default and format-version to Table behaviour options table --- mkdocs/docs/configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkdocs/docs/configuration.md b/mkdocs/docs/configuration.md index 034b50ff84..201974dbda 100644 --- a/mkdocs/docs/configuration.md +++ b/mkdocs/docs/configuration.md @@ -46,8 +46,6 @@ Iceberg tables support table properties to configure table behavior. | `write.metadata.metrics.column` | Column names and modes | N/A | Per-column metrics configuration. | | `write.summary.partition-limit` | Integer | 0 | The limit on the number of partition summaries written with each commit. | | `write.delete.mode` | `{copy-on-write, merge-on-read}` | `copy-on-write` | Configures the delete mode (either Copy-on-Write or Merge-on-Read). | -| `schema.name-mapping.default` | Name mapping strategy | N/A | Default name mapping for schema evolution. | -| `format-version` | `{1, 2}` | 2 | The version of the Iceberg table format to use. | | `write.metadata.previous-versions-max` | Integer | 100 | Maximum number of previous version metadata files to keep before deletion after commit. | ### Table behavior options @@ -56,6 +54,8 @@ Iceberg tables support table properties to configure table behavior. | `commit.manifest.target-size-bytes` | Size in bytes | 8388608 (8MB) | Target size when merging manifest files | | `commit.manifest.min-count-to-merge` | Number of manifests | 100 | Target size when merging manifest files | | `commit.manifest-merge.enabled` | Boolean | False | Controls whether to automatically merge manifests on writes | +| `schema.name-mapping.default` | Name mapping strategy | N/A | Default name mapping for schema evolution. | +| `format-version` | `{1, 2}` | 2 | The version of the Iceberg table format to use. |