v.23.2New Feature
Enrichment of ReplacingMergeTree Engine for Duplicate Insertion Handling
Enrichment of the existingReplacingMergeTreeengine to allow duplicate the insertion. It leverages the power of bothReplacingMergeTreeandCollapsingMergeTreein one MergeTree engine. Deleted data are not returned when queried, but not removed from disk neither. #41005 (youennL-cs).
Why it matters
This feature addresses the need to manage duplicate insertions and deleted records more effectively within a single MergeTree engine. It allows users to query data without seeing deleted rows while retaining those rows on disk for potential audit or recovery purposes, improving data consistency and storage management.How to use it
Users can enable this feature by using the enhancedReplacingMergeTree engine variant that incorporates this duplication and deletion handling behavior. Details on configuration and usage can be found in the linked pull request documentation.