Heap histogram doesn't work in Spark UI #340
-
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? |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
Hey, yes you are correct.
It seems that UBI 8 only includes
jmap
in thedevel
version of the openjdk package.To build your own image with
jmap
included you could do something like this:To use your own Spark image, add the
custom
property to the application resource like this:Hope this helps.