-
Notifications
You must be signed in to change notification settings - Fork 3k
Spark 3.4: Implement rewrite position deletes #7389
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
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
372aba4
Implement rewrite position deletes
szehon-ho d19fa6a
Remove test that fails to test intended scenario
szehon-ho 9092266
Review comments
szehon-ho 4bc6b21
Review comments
szehon-ho f3d4cb2
Fix test compile
szehon-ho 9b3709e
Review comments
szehon-ho 1c27cb2
Review comments
szehon-ho File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
129 changes: 129 additions & 0 deletions
129
core/src/main/java/org/apache/iceberg/actions/RewritePositionDeletesCommitManager.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,129 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
| package org.apache.iceberg.actions; | ||
|
|
||
| import java.util.Set; | ||
| import org.apache.iceberg.CatalogUtil; | ||
| import org.apache.iceberg.DeleteFile; | ||
| import org.apache.iceberg.Table; | ||
| import org.apache.iceberg.exceptions.CommitStateUnknownException; | ||
| import org.apache.iceberg.relocated.com.google.common.base.Preconditions; | ||
| import org.apache.iceberg.relocated.com.google.common.collect.ImmutableSet; | ||
| import org.apache.iceberg.relocated.com.google.common.collect.Iterables; | ||
| import org.apache.iceberg.relocated.com.google.common.collect.Sets; | ||
| import org.slf4j.Logger; | ||
| import org.slf4j.LoggerFactory; | ||
|
|
||
| /** | ||
| * Functionality used by {@link RewritePositionDeleteFiles} from different platforms to handle | ||
| * commits. | ||
| */ | ||
| public class RewritePositionDeletesCommitManager { | ||
| private static final Logger LOG = | ||
| LoggerFactory.getLogger(RewritePositionDeletesCommitManager.class); | ||
|
|
||
| private final Table table; | ||
| private final long startingSnapshotId; | ||
|
|
||
| public RewritePositionDeletesCommitManager(Table table) { | ||
| this.table = table; | ||
| this.startingSnapshotId = table.currentSnapshot().snapshotId(); | ||
| } | ||
|
|
||
| /** | ||
| * Perform a commit operation on the table adding and removing files as required for this set of | ||
| * file groups. | ||
| * | ||
| * @param fileGroups file groups to commit | ||
| */ | ||
| public void commit(Set<RewritePositionDeletesGroup> fileGroups) { | ||
| Set<DeleteFile> rewrittenDeleteFiles = Sets.newHashSet(); | ||
| Set<DeleteFile> addedDeleteFiles = Sets.newHashSet(); | ||
| for (RewritePositionDeletesGroup group : fileGroups) { | ||
| rewrittenDeleteFiles.addAll(group.rewrittenDeleteFiles()); | ||
| addedDeleteFiles.addAll(group.addedDeleteFiles()); | ||
| } | ||
|
|
||
| table | ||
| .newRewrite() | ||
| .validateFromSnapshot(startingSnapshotId) | ||
| .rewriteFiles(ImmutableSet.of(), rewrittenDeleteFiles, ImmutableSet.of(), addedDeleteFiles) | ||
| .commit(); | ||
| } | ||
|
|
||
| /** | ||
| * Clean up a specified file set by removing any files created for that operation, should not | ||
| * throw any exceptions. | ||
| * | ||
| * @param fileGroup group of files which has already been rewritten | ||
| */ | ||
| public void abort(RewritePositionDeletesGroup fileGroup) { | ||
| Preconditions.checkState( | ||
| fileGroup.addedDeleteFiles() != null, "Cannot abort a fileGroup that was not rewritten"); | ||
|
|
||
| Iterable<String> filePaths = | ||
| Iterables.transform(fileGroup.addedDeleteFiles(), f -> f.path().toString()); | ||
| CatalogUtil.deleteFiles(table.io(), filePaths, "position delete", true); | ||
| } | ||
|
|
||
| public void commitOrClean(Set<RewritePositionDeletesGroup> rewriteGroups) { | ||
| try { | ||
| commit(rewriteGroups); | ||
| } catch (CommitStateUnknownException e) { | ||
| LOG.error( | ||
| "Commit state unknown for {}, cannot clean up files because they may have been committed successfully.", | ||
| rewriteGroups, | ||
| e); | ||
| throw e; | ||
| } catch (Exception e) { | ||
| LOG.error("Cannot commit groups {}, attempting to clean up written files", rewriteGroups, e); | ||
| rewriteGroups.forEach(this::abort); | ||
| throw e; | ||
| } | ||
| } | ||
|
|
||
| /** | ||
| * An async service which allows for committing multiple file groups as their rewrites complete. | ||
| * The service also allows for partial-progress since commits can fail. Once the service has been | ||
| * closed no new file groups should not be offered. | ||
| * | ||
| * @param rewritesPerCommit number of file groups to include in a commit | ||
| * @return the service for handling commits | ||
| */ | ||
| public CommitService service(int rewritesPerCommit) { | ||
| return new CommitService(rewritesPerCommit); | ||
| } | ||
|
|
||
| public class CommitService extends BaseCommitService<RewritePositionDeletesGroup> { | ||
|
|
||
| CommitService(int rewritesPerCommit) { | ||
| super(table, rewritesPerCommit); | ||
| } | ||
|
|
||
| @Override | ||
| protected void commitOrClean(Set<RewritePositionDeletesGroup> batch) { | ||
| RewritePositionDeletesCommitManager.this.commitOrClean(batch); | ||
| } | ||
|
|
||
| @Override | ||
| protected void abortFileGroup(RewritePositionDeletesGroup group) { | ||
| RewritePositionDeletesCommitManager.this.abort(group); | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.