Uh oh!
There was an error while loading. Please reload this page.
[SPARK-16673] [Web UI] New Executor Page removed conditional for Logs and Thread Dump columns - #14382
[SPARK-16673] [Web UI] New Executor Page removed conditional for Logs and Thread Dump columns#14382ajbozarth wants to merge 1 commit into
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) |
ajbozarth
commented
Jul 27, 2016
Looping in those who reviewed the previous pr: @nblintao@kishorvpatil@tgravescs@zhuoliu |
ajbozarth
commented
Jul 27, 2016
I also included a bit of clean up from #13670 in regards to |
SparkQA
commented
Jul 27, 2016
Test build #62932 has finished for PR 14382 at commit
|
nblintao
commented
Aug 2, 2016
It looks great from the code. I will try it tomorrow or later. Thanks for fixing this! |
ajbozarth
commented
Aug 18, 2016
@tgravescs@srowen would you be willing to take a quick look at this? |
srowen
commented
Aug 19, 2016
I see, I tend to trust your work here. The result looks OK. Looks like this only needs to go to master |
tgravescs
commented
Aug 19, 2016
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 <ajbozart@us.ibm.com> Closes#16256 from ajbozarth/spark18816. (cherry picked from commit aebf44e) Signed-off-by: Sean Owen <sowen@cloudera.com>
… 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 <ajbozart@us.ibm.com> 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 <ajbozart@us.ibm.com> Closesapache#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 <ajbozart@us.ibm.com> Closesapache#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