英文:
Amazon Corretto 8 Container awareness
问题
在阅读了关于Amazon Corretto的所有AWS文档之后,我并没有找到关于启用容器感知(如果不是默认启用的话)的JVM选项的线索,也没有找到在(Docker)容器上运行时控制堆的容器内存使用率的选项名称。
是否有人知道如何配置这些选项?
英文:
After reading all AWS Documentation about Amazon Corretto, I have found no clue of JVM options to enable container awareness (if it is not enabled by default) and option names to control container memory usage ratio for heap when running on a (Docker) container.
Does anyone knows how to configure these options?
答案1
得分: 1
Amazon Corretto具有与Open JDK相同的容器支持。在最新版本中,默认情况下已启用该功能,或者您可以通过使用以下标志明确指定:
-XX:+UseContainerSupport
英文:
Amazon Corretto has the same Container support that Open JDK does. It's enabled by default in the latest version, or you can explicitly specify by using the following flag:
-XX:+UseContainerSupport
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论