Skip to content

Feature: Rollback compaction on conflict #1285

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

Merged
merged 17 commits into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -287,4 +287,15 @@ public static void enforceFeatureEnabledOrThrow(
+ "This should only be set to 'true' for tests!")
.defaultValue(false)
.buildFeatureConfiguration();

public static final FeatureConfiguration<Boolean> ICEBERG_ROLLBACK_COMPACTION_ON_CONFLICTS =
PolarisConfiguration.<Boolean>builder()
.key("ICEBERG_ROLLBACK_COMPACTION_ON_CONFLICTS")
.catalogConfig("polaris.config.rollback.compaction.on-conflicts.enabled")
.description(
"Rollback replace snapshots created by compaction which have "
+ "polaris.internal.conflict-resolution.by-operation-type.replace property set to rollback "
+ "in their snapshot summary")
.defaultValue(false)
.buildFeatureConfiguration();
}
Loading
Loading