Heap histogram doesn't work in Spark UI #340
Answered
by
razvan
paulpaul1076
asked this question in
Q&A
|
Hello, I saw that there's a new option in Spark UI, called heap histogram. But when I click on it I get this: In executor logs I get this: How do we get this to work? I guess in order for this to work you have to rebundle a different version of the JDK that includes jmap? |
Answered by
razvan
Jan 18, 2024
Replies: 1 comment 12 replies
|
Hey, yes you are correct. It seems that UBI 8 only includes To build your own image with To use your own Spark image, add the Hope this helps. |
12 replies
Answer selected by
paulpaul1076
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Hey, yes you are correct.
It seems that UBI 8 only includes
jmapin thedevelversion of the openjdk package.To build your own image with
jmapincluded you could do something like this:To use your own Spark image, add the
customproperty to the application resource like this:Hope this helps.