0
votes

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

1 Answers

1
votes

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.