For Heap out of memory due to java.util.concurrent.ConcurrentHashMap, is that just due to build graph being too big? #23401
Answered
by
meisterT
Ryang20718
asked this question in
Q&A
-
For Heap out of memory due to java.util.concurrent.ConcurrentHashMap, is that just due to build graph being too big? |
Beta Was this translation helpful? Give feedback.
Answered by
meisterT
Aug 27, 2024
Replies: 1 comment
-
Yes, that map is essentially the backing data structure of Skyframe - https://bazel.build/rules/performance#enabling-memory-tracking might help you to find out surprising things about your build graph composition. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
meisterT
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, that map is essentially the backing data structure of Skyframe - https://bazel.build/rules/performance#enabling-memory-tracking might help you to find out surprising things about your build graph composition.