Java heap Xms and linux free memory different(Java heap Xms 和 linux free memory 不同)
问题描述
我有一个在 centos Box 中运行的 java 程序.我的 -Xmx 和 -Xms 设置为 4000 Mb.
I have a java program running in centos Box. My -Xmx and -Xms set to 4000 Mb.
程序运行良好.
但是当我执行 free -m 时,已用内存显示为 506 MB.根据我的理解,XMS内存应该是为JVM保留的.为什么free命令不显示java使用的内存?
But when i do free -m , the used memory is showing as 506 MB. As per my understanding , XMS memory should be reserved for JVM.Why does free command not showing the java used memory ?
我也完成了 jstat -gccapacity $(pidof java) 并且 NGCMN 和 NGCMX 更新并且具有相同的值?任何支持都会有所帮助.我正在运行我的程序 java -Xms41000m -Xmx42000m -jar
I have also done jstat -gccapacity $(pidof java) and there NGCMN and NGCMX updated and have the same value ? Any support would be helpful. I'm running my program as java -Xms41000m -Xmx42000m -jar
推荐答案
即使 -Xmx
和 -Xms
设置为相同的值,也会为 Java Heap 保留空间不会立即分配到 RAM 中.
Even when -Xmx
and -Xms
set to the same value, the space reserved for Java Heap is not immediately allocated in RAM.
操作系统通常会延迟分配物理内存,仅在第一次访问虚拟页面时.因此,虽然没有触及 Java Heap 的未使用部分,但它不会真正消耗内存.
Operating System typically allocates physical memory lazily, only on the first access to a virtual page. So, while unused part of Java Heap is not touched, it won't really consume memory.
你可以使用 -XX:+AlwaysPreTouch
选项在 JVM 启动时强制触摸所有堆页面.
You may use -XX:+AlwaysPreTouch
option to forcibly touch all heap pages on JVM start.
这篇关于Java heap Xms 和 linux free memory 不同的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java heap Xms 和 linux free memory 不同


- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01