Replies: 1 comment
-
hello,I have a similar problem, do you have any good optimization solutions now? How to control the size of off-heap memory |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi there,
when running InfluxDB 1.8 with large dataset(10TB, 50 shards), and the series cardinality is high(10million), we found the go runtime HeapSys is small(less than 10GB) but the process RSS memory is above 200GB.
This is a big gap. After some investigation we found lots of memory is allocated off-heap, which means it is not managed by Go runtime. This behavior seems by design with commit d3e832b.
But I'm wondering what's the benefit of using off-heap memory and why those memory spaces are out of statistics.
Beta Was this translation helpful? Give feedback.
All reactions