-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-16673] [Web UI] New Executor Page removed conditional for Logs and Thread Dump columns #14382
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
|
#14204 will also need this conditional logic, so once this or that is merged the other will need to update to add that logic. (I've already written it) |
|
Looping in those who reviewed the previous pr: @nblintao @kishorvpatil @tgravescs @zhuoliu |
|
I also included a bit of clean up from #13670 in regards to |
|
Test build #62932 has finished for PR 14382 at commit
|
|
It looks great from the code. I will try it tomorrow or later. Thanks for fixing this! |
|
@tgravescs @srowen would you be willing to take a quick look at this? |
|
I see, I tend to trust your work here. The result looks OK. Looks like this only needs to go to master |
|
changes look fine. +1, thanks for fixing this. |
… on initial table load ## What changes were proposed in this pull request? When I added a visibility check for the logs column on the executors page in #14382 the method I used only ran the check on the initial DataTable creation and not subsequent page loads. I moved the check out of the table definition and instead it runs on each page load. The jQuery DataTable functionality used is the same. ## How was this patch tested? Tested Manually No visible UI changes to screenshot. Author: Alex Bozarth <[email protected]> Closes #16256 from ajbozarth/spark18816. (cherry picked from commit aebf44e) Signed-off-by: Sean Owen <[email protected]>
… on initial table load ## What changes were proposed in this pull request? When I added a visibility check for the logs column on the executors page in #14382 the method I used only ran the check on the initial DataTable creation and not subsequent page loads. I moved the check out of the table definition and instead it runs on each page load. The jQuery DataTable functionality used is the same. ## How was this patch tested? Tested Manually No visible UI changes to screenshot. Author: Alex Bozarth <[email protected]> Closes #16256 from ajbozarth/spark18816.
… on initial table load ## What changes were proposed in this pull request? When I added a visibility check for the logs column on the executors page in apache#14382 the method I used only ran the check on the initial DataTable creation and not subsequent page loads. I moved the check out of the table definition and instead it runs on each page load. The jQuery DataTable functionality used is the same. ## How was this patch tested? Tested Manually No visible UI changes to screenshot. Author: Alex Bozarth <[email protected]> Closes apache#16256 from ajbozarth/spark18816.
… on initial table load ## What changes were proposed in this pull request? When I added a visibility check for the logs column on the executors page in apache#14382 the method I used only ran the check on the initial DataTable creation and not subsequent page loads. I moved the check out of the table definition and instead it runs on each page load. The jQuery DataTable functionality used is the same. ## How was this patch tested? Tested Manually No visible UI changes to screenshot. Author: Alex Bozarth <[email protected]> Closes apache#16256 from ajbozarth/spark18816.
What changes were proposed in this pull request?
When #13670 switched
ExecutorsPageto use JQuery DataTables it incidentally removed the conditional for the Logs and Thread Dump columns. I reimplemented the conditional display of the Logs and Thread dump columns as it was before the switch.How was this patch tested?
Manually tested and dev/run-tests