如何知道 Ignite 非堆内存使用情况?

How to know Ignite non-heap memory usage?

我已经为 Ignite 分配了 5 GB 的非堆内存,这可以在应用程序启动时验证。

[13:09:56] Topology snapshot [ver=1, servers=1, clients=0, CPUs=4, offheap=4.9GB, heap=2.6GB]
[13:09:56]   ^-- Node [id=AC62049E-CB7B-4BB6-B19D-56C17B695A8D, clusterState=ACTIVE]
[13:09:56] Data Regions Configured:
[13:09:56]   ^-- default [initSize=2.0 GiB, maxSize=3.9 GiB, persistenceEnabled=false]
[13:09:56]   ^-- Buffer_Region [initSize=512.0 MiB, maxSize=1000.0 MiB, persistenceEnabled=false]

但是在集群指标期间,我得到的非堆大小为 -1%。

Metrics for local node (to disable set 'metricsLogFrequency' to 0)
    ^-- Node [id=ac62049e, name=dm123, uptime=00:07:00.046]
    ^-- H/N/C [hosts=1, nodes=1, CPUs=4]
    ^-- CPU [cur=0.33%, avg=2.39%, GC=0%]
    ^-- PageMemory [pages=158231]
    ^-- Heap [used=493MB, free=81.32%, comm=960MB]
    ^-- Non heap [used=112MB, free=-1%, comm=117MB]
    ^-- Outbound messages queue [size=0]
    ^-- Public thread pool [active=0, idle=0, qSize=0]
    ^-- System thread pool [active=0, idle=6, qSize=0]

在此指标中,此非堆大小是多少?如何获得实际使用的非堆大小?

我也不知道comm在指标中是什么意思;在文档中也找不到它。

这是 Ignite 中的错误。我找到了修复的开放票 - IGNITE-5583.

更新: 根据 IGNITE-9305

,原始问题似乎已在 2.7 中得到解决

你用的是什么版本?