Getting Memory metrics in Apache Ignite

ⅰ亾dé卋堺 提交于 2021-02-05 12:10:40

问题


I am using Apache Ignite 2.8.0. Actually now i am getting memory metrics by the following(Using Java thick client),

    ClusterGroup remoteGroup = ignite.cluster().forRemotes();
    ClusterMetrics metrics = remoteGroup.metrics();

Is there any way to get the Memory metrics by Python or Java thin client?


回答1:


It is not supported currently by thin clients, so you will have to gather this information using thick client or server node.

Then you can store it somewhere (in e.g. cache) to be accessible by thin clients too.



来源:https://stackoverflow.com/questions/60826589/getting-memory-metrics-in-apache-ignite

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!