-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Used memory hits the high watermark(0.800000) of total system memory. #5745
Comments
https://docs.nebula-graph.com.cn/3.6.0/5.configurations-and-logs/1.configurations/3.graph-config/#memory |
The judgment condition for the threshold is available memory divided by (total memory - reserved memory). If the available memory is still below this threshold of 0.99, it should be lowered instead of raised. Adjusting the threshold seems to be a temporary solution rather than addressing the root cause. The exception occurs when executing the match query command, while other graph-related operations work fine. Does match operation consume system memory? By default, memory_purge_enabled = true enables regular memory cleanup. Why isn't the memory space being released? This issue occurs periodically and I would appreciate an explanation. 阈值的判断条件是 可用内存/(总内存 - 保留内存) ,改成 0.99 可用内存还是低于该阈值,应该是调低而不是调高吧,调阈值的方式应该是治标不治本吧。报该异常是进行 match query 命令是报错,其他图相关操作是正常的,match 操作会占用系统内存吗,默认开启了memory_purge_enabled = true 定期清理内存,为啥内存空间没有得到释放,这个问题是周期性出现的,望解答。 |
"Memory Tracker" was introduced in 3.4.0, highly recommended to leverage it to help with this. |
How to use Memory Tracker ? |
You could refer to docs and a blog post explaining about how to configure/leverage it :) CN:
EN: |
It's about storaged, not graphd, right? |
Hi, I have noticed that the issue you created hasn’t been updated for nearly a month, so I have to close it for now. If you have any new updates, you are welcome to reopen this issue anytime. Thanks a lot for your contribution anyway 😊 |
Must it be a container environment to use memory tracker? |
no , it's supported on both container and bare metal. |
Question: Used memory hits the high watermark(0.800000) of total system memory.
版本:3.4,会出现周期性OOM问题,请问如何解决
The text was updated successfully, but these errors were encountered: