java堆设置中最大堆大小的限制

发布于 2024-11-30 03:39:19 字数 129 浏览 1 评论 0原文

java中增加最大堆大小有限制吗?我想知道只要物理内存可用,是否可以设置大堆大小。

例如,如果服务器有 100G RAM,那么我可以将最大堆设置为 90G 吗?我知道 GC 会停止应用程序,但我只是好奇。

谢谢。

is there limit to increase the max heap size in java? I am wondering if the large heap size can be set as long as the physical memory is available.

For example, if a server has 100G for RAM, then can i set the max heap at 90G? I know that GC will halt the app, but I am just curious.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十秒萌定你 2024-12-07 03:39:19

对于 32 位 JVM,硬限制为 4 GB,但实际限制会更低,因为至少如果您没有运行 64 位操作系统,则必须为非堆内存留出一些空间,例如 JVM 自己的地址空间(非java)、所有线程的堆栈、体系结构/操作系统限制等。 64 位 JVM 没有这样的限制,因此您可以将限制设置为 90 GB,但由于您已经指出的原因,我不会推荐它。

With a 32 bit JVM, the hard limit would be 4 GB but the actual one would be lower as, at least if you aren't running a 64 bit OS, some space must be left for non heap memory, like the JVM own address space (non java), stacks for all threads, architecture/OS limitations and the likes. A 64 bit JVM has no such limitation so you could set the limit to 90 GB although I wouldn't recommend it for the reason you already pointed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文