[spark] Clean up orphan files left by Spark speculative execution - #8927
Open
hbgstc123 wants to merge 3 commits into
Open
[spark] Clean up orphan files left by Spark speculative execution#8927hbgstc123 wants to merge 3 commits into
hbgstc123 wants to merge 3 commits into
Conversation
Contributor
|
cc @Zouxxyy |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Purpose
Problem
When Spark speculative execution is enabled, Paimon Spark writers use
useCommitCoordinator=false. Multiple task attempts can all finish writing and callprepareCommit(), but Spark only commits the winner'sWriterCommitMessage. Loser attempts leave data/index files on disk that are never referenced by any snapshot — orphan files.Why it happens
Spark kills the loser attempt by interrupting the task thread. Paimon writers do not abort prepared files on interruption today, and core abort/delete paths can fail with
InterruptedIOExceptionwhile the thread is interrupted, so loser files are often left behind until orphan cleanup runs (if ever).What this PR does
SparkAttemptCleanupto detect interruption and abort unprepared/prepared files before the attempt returns successfully.FileIO.deleteQuietlyIgnoringInterrupt,FileStoreCommitImpl.abortindex cleanup, writer abort executors).prepareCommitso a mid-attempt kill can still abort already-finished files.Tests
SparkAttemptCleanupTest,DataEvolutionTableDataWriteTestFileStoreCommitAbortTest,FileIOTest,DeletionVectorsIndexFileTestSparkSpeculativeWriteITCase(DSv2/V1 insert with speculation; loser cleanup and orphan-clean fallback)