Preserve Spark application failures after Spark stops on YARN - #12596
Open
aboitreaud wants to merge 1 commit into
Open
aboitreaud wants to merge 1 commit into
aboitreaud wants to merge 1 commit into
Conversation
aboitreaud
marked this pull request as ready for review
September 22, 2026 02:19
aboitreaud
requested review from
ValentinZakharov
and removed request for
a team
September 22, 2026 02:19
This comment has been minimized.
This comment has been minimized.
Contributor
🟡 Java Benchmark SLOs — Performance SLO warning (near threshold)
PR vs. master results
Commit: Load and DaCapo benchmarks can be triggered manually in the GitLab pipeline. Results will appear in the Benchmarking Platform UI after completion. |
There was a problem hiding this comment.
This branch has not been deployed
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.
What Does This Do
Wait for
ApplicationMaster.finish()to finalize Spark application spans in YARN cluster mode, allowing the existing instrumentation to capture the driver's exit code and failure diagnostics afterSparkContext.stop().Motivation
Fixes a Spark application status gap between what the tracer reports (OK) and the expected ERROR.
A Python driver can create a Spark session, fail before submitting any jobs, and stop the session during cleanup before exiting nonzero. The application-end event previously finalized and flushed an "ok" span; the later YARN failure was ignored because the span had already ended.
The change applies only when
spark.master=yarnandspark.submit.deployMode=cluster. OpenLineage notification and the shutdown fallback are preserved.Contributor Checklist