我正在运行ElasticSearch版本6.2.3,并且在config\jvm.options
文件中将堆大小增加到4GB。然后重新启动我的ES,如何确保我的ES以修改后的heapsize运行。是否有任何命令可以验证ES的堆大小。
我正在Windows计算机上运行我的ES。
请找到我的配置详细信息。
## JVM configuration
################################################################
## IMPORTANT: JVM heap size
################################################################
##
## You should always set the min and max JVM heap
## size to the same value. For example, to set
## the heap to 4 GB, set:
##
## -Xms2g
## -Xmx2g
##
## See https://www.elastic.co/guide/en/elasticsearch/reference/current/heap-size.html
## for more information
##
################################################################
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space
-Xms4g
-Xmx4g
最佳答案
您可以在INFO日志中找到用于Elasticsearch实例的JVM参数。确保您的 flex 日志记录级别显示INFO日志。
关于java - 我们如何验证运行ElasticSearch的堆大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51340788/