-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-50600][CONNECT][SQL] Set analyzed on analysis failure #49383
Closed
Conversation
This file contains 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
jdesjean
changed the title
[SPARK-50600]
[SPARK-50600][SQL] Set analyzed on analysis failure
Jan 6, 2025
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
2 times, most recently
from
January 7, 2025 17:40
815a10c
to
d69efe0
Compare
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
from
January 8, 2025 23:33
5ef6c5c
to
5863371
Compare
jdesjean
changed the title
[SPARK-50600][SQL] Set analyzed on analysis failure
[SPARK-50600][CONNECT][SQL] Set analyzed on analysis failure
Jan 8, 2025
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
4 times, most recently
from
January 8, 2025 23:43
29333e8
to
771da36
Compare
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
from
January 8, 2025 23:44
771da36
to
11d42f2
Compare
cloud-fan
reviewed
Jan 9, 2025
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/QueryPlanningTracker.scala
Outdated
Show resolved
Hide resolved
cloud-fan
reviewed
Jan 9, 2025
...onnect/server/src/main/scala/org/apache/spark/sql/connect/service/ExecuteEventsManager.scala
Show resolved
Hide resolved
cloud-fan
reviewed
Jan 9, 2025
...onnect/server/src/main/scala/org/apache/spark/sql/connect/service/ExecuteEventsManager.scala
Outdated
Show resolved
Hide resolved
cloud-fan
reviewed
Jan 9, 2025
...onnect/server/src/main/scala/org/apache/spark/sql/connect/service/ExecuteEventsManager.scala
Outdated
Show resolved
Hide resolved
cloud-fan
reviewed
Jan 9, 2025
sql/core/src/main/scala/org/apache/spark/sql/execution/QueryExecution.scala
Outdated
Show resolved
Hide resolved
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
from
January 9, 2025 19:41
9666312
to
42aead9
Compare
jdesjean
force-pushed
the
jdesjean/SPARK-50600
branch
from
January 9, 2025 21:20
42aead9
to
7a50fd3
Compare
thanks, merging to master! |
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 changes were proposed in this pull request?
As part of SPARK-44145, a callback was added to track completion of analysis and optimization phase of a query. While the analyzed plan is sent when analysis completes successfully it does not when it fail. In that case, we should fallback to the ParsedPlan.
Why are the changes needed?
The purpose of the analyze event is to track when analysis completes, as such it should also be sent on both success & failure.
Does this PR introduce any user-facing change?
No
How was this patch tested?
Unit
Was this patch authored or co-authored using generative AI tooling?
No