[SPARK-47818][CONNECT][FOLLOW-UP] Introduce plan cache in SparkConnectPlanner to improve performance of Analyze requests - #46098
Closed
xi-db wants to merge 3 commits into
Closed
Conversation
Contributor
| with self.sql_conf({"spark.sql.pyspark.udf.profiler": "perf"}): | ||
| _do_computation(self.spark, action=action) | ||
|
|
||
| # Without the plan cache, UDF ID will be different for each action |
Contributor
There was a problem hiding this comment.
also cc @xinrong-meng to check the profiler tests
HyukjinKwon
approved these changes
Apr 24, 2024
hvanhovell
approved these changes
Apr 24, 2024
Contributor
|
@xi-db please update the PR. |
# Conflicts: # connector/connect/server/src/main/scala/org/apache/spark/sql/connect/execution/SparkConnectPlanExecution.scala
Contributor
Author
Hi @hvanhovell, the CI is green and its ready to merge. |
Contributor
|
Merging. |
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 changes were proposed in this pull request?
In the previous PR, we cache plans of AnalyzePlan requests. We're also enabling it for ExecutePlan in this PR.
Why are the changes needed?
Some operations like spark.sql() issue ExecutePlan requests. By caching them, we can also improve performance if subsequent plans to be analyzed include the plan returned by ExecutePlan as a subtree.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Existing tests.
Was this patch authored or co-authored using generative AI tooling?
No.