sarutak commented on code in PR #52665:
URL: https://github.com/apache/spark/pull/52665#discussion_r2444907961
##########
core/src/main/scala/org/apache/spark/util/Utils.scala:
##########
@@ -2112,7 +2112,8 @@ private[spark] object Utils
/** Return a heap dump. Used to capture dumps for the web UI */
def getHeapHistogram(): Array[String] = {
val pid = String.valueOf(ProcessHandle.current().pid())
- val jmap = System.getProperty("java.home") + "/bin/jmap"
+ val jmap = Option(System.getenv("JAVA_HOME"))
Review Comment:
```suggestion
val jmap = sys.env.get("JAVA_HOME").getOrElse(sys.props("java.home")) +
"/bin/jmap"
```
--
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]