Skip to content
Open
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
12 changes: 6 additions & 6 deletions website/docs/table-design/data-distribution/partitioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,6 @@ In this case, when automatic partitioning occurs (Fluss will periodically operat

Before using historical partition access, make sure the [Paimon server-side setup](../../streaming-lakehouse/datalake-formats/paimon.md#historical-partition-access-setup) is completed.

:::warning
**After changing `table.datalake.historical-partition.enabled`, restart existing writer and lookup
jobs that need historical partition access so that their clients load the updated table
configuration.**
:::

Auto partitioning eventually removes partitions that fall outside the configured retention window.
After an original Fluss partition is removed, late records cannot be written to it and primary-key
lookups cannot find its rows in Fluss, even when the existing data has already been tiered to
Expand All @@ -94,6 +88,12 @@ ALTER TABLE my_partitioned_table SET (
);
```

:::warning
After enabling or disabling `table.datalake.historical-partition.enabled`, restart any existing
writer and lookup jobs that require historical partition access so that their clients reload the
updated table configuration.
:::

When enabled, the Coordinator creates and retains an internal `__historical__` system partition:

- **Writes:** Log tables and primary-key tables route records for expired partitions through the
Expand Down
Loading