-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-20635][SQL] No SQL tab in Spark UI #17897
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, sorry I forgot to delete it...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hiveResultString is for testing only
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's called by SparkSQLDriver.run
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh... I did not realize it...
| } | ||
| } | ||
|
|
||
| trait InsertTableCommand extends RunnableCommand |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be too broad for this purpose. It could be misunderstood later. Should we add a comment for it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK I'll add a comment for it
|
Test build #76567 has finished for PR 17897 at commit
|
|
retest this please |
|
oh, seems it's included by #17540 ? |
|
@cloud-fan OK, let me close this. |
|
Test build #76575 has finished for PR 17897 at commit
|
What changes were proposed in this pull request?
There's no SQL tab in Spark UI since
SQLExecution.withNewExecutionIdwas removed fromdef hiveResultStringin this pr. We need to add it back except for insert command, because it starts a new execution throughFileFormatWriter.How was this patch tested?
Test by hand.