Github user ajbozarth commented on the issue:
https://github.com/apache/spark/pull/14204
@nblintao Now that #14382 is merged you can update this, here's a patch of
what you'll need:
`diff --git
a/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
b/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
index 1df6733..f6ff7cf 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
+++ b/core/src/main/resources/org/apache/spark/ui/static/executorspage.js
@@ -132,6 +132,12 @@ function logsExist(execs) {
});
}
+function logsExist(execs) {
+ return execs.some(function(exec) {
+ return !($.isEmptyObject(exec["worker"]));
+ });
+}
+
// Determine Color Opacity from 0.5-1
// activeTasks range from 0 to maxTasks
function activeTasksAlpha(activeTasks, maxTasks) {
@@ -418,6 +424,10 @@ $(document).ready(function () {
{
"targets": [ 16 ],
"visible": getThreadDumpEnabled()
+ },
+ {
+ "targets": [ 17 ],
+ "visible": workersExist(response)
}
],
"order": [[0, "asc"]]`
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]