diff --git a/src/pages/latest/table-properties.mdx b/src/pages/latest/table-properties.mdx index 336c8d4..4ddc39d 100644 --- a/src/pages/latest/table-properties.mdx +++ b/src/pages/latest/table-properties.mdx @@ -8,6 +8,7 @@ Delta Lake reserves Delta table properties starting with `delta`. These properti | Property | Description | Data Type | Default | |-|-|-|-| | `delta.appendOnly` | `true` for this Delta table to be append-only. If append-only, existing records cannot be deleted, and existing values cannot be updated. See [Table properties](/latest/delta-batch.html#-table-properties). | `Boolean` | `false`| +|`delta.checkpointInterval` | How often to checkpoint the delta log. See [Checkpoints protocol](https://github.com/delta-io/delta/blob/master/PROTOCOL.md#checkpoints)|`Int`|`10`| |`delta.checkpoint.writeStatsAsJson` | `true` for Delta Lake to write file statistics in checkpoints in JSON format for the stats column. | `Boolean` | `true`| |`delta.checkpoint.writeStatsAsStruct` | `true` for Delta Lake to write file statistics to checkpoints in struct format for the stats_parsed column and to write partition values as a struct for partitionValues_parsed. | `Boolean`| (none)| |`delta.compatibility.symlinkFormatManifest.enabled`|`true` for Delta Lake to configure the Delta table so that all write operations on the table automatically update the manifests. See Step 3: [Update manifests](https://docs.delta.io/latest/presto-integration.html#-step-3-update-manifests).|`Boolean`|`false`|