AngersZhuuuu commented on a change in pull request #34695:
URL: https://github.com/apache/spark/pull/34695#discussion_r772859056
##########
File path: core/src/main/resources/org/apache/spark/ui/static/executorspage.js
##########
@@ -160,6 +170,149 @@ function reselectCheckboxesBasedOnTaskTableState() {
}
}
+var executorSummaryMetricsTableArray = [];
+var executorSummaryMetricsTableCurrentStateArray = [];
+var executorSummaryMetricsDataTable;
+
+function getColumnNameForExecutorMetricSummary(columnKey) {
+ switch(columnKey) {
+ case "JVMHeapMemory":
+ return "JVM Heap Memory";
+
+ case "JVMOffHeapMemory":
+ return "JVM Off Heap Memory";
+
+ case "OnHeapExecutionMemory":
+ return "On Heap Execution Memory";
+
+ case "OffHeapExecutionMemory":
+ return "Off Heap Execution Memory";
+
+ case "OnHeapStorageMemory":
+ return "On Heap Storage Memory";
+
+ case "OffHeapStorageMemory":
+ return "Off Heap Storage Memory";
+
+ case "OnHeapUnifiedMemory":
+ return "On Heap Unified Memory";
+
+ case "OffHeapUnifiedMemory":
+ return "Off Heap Unified Memory";
+
+ case "DirectPoolMemory":
+ return "Direct Pool Memory";
+
+ case "MappedPoolMemory":
+ return "Mapped Pool Memory";
+
+ case "ProcessTreeJVMVMemory":
+ return "Process Tree JVM Memory";
Review comment:
> I am talking about the column heading, it should be `Process Tree JVM
VMemory`.
Hmmm, sorry for my mistake...
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]