在 Apache Ignite 中获取内存指标
Getting Memory metrics in Apache Ignite
我正在使用 Apache Ignite 2.8.0。实际上现在我通过以下方式获取内存指标(使用 Java 胖客户端),
ClusterGroup remoteGroup = ignite.cluster().forRemotes();
ClusterMetrics metrics = remoteGroup.metrics();
有什么方法可以通过 Python 或 Java 瘦客户端获取内存指标吗?
瘦客户端目前不支持它,因此您必须使用胖客户端或服务器节点收集此信息。
然后您可以将其存储在某处(例如缓存中),以便瘦客户端也可以访问。
我正在使用 Apache Ignite 2.8.0。实际上现在我通过以下方式获取内存指标(使用 Java 胖客户端),
ClusterGroup remoteGroup = ignite.cluster().forRemotes();
ClusterMetrics metrics = remoteGroup.metrics();
有什么方法可以通过 Python 或 Java 瘦客户端获取内存指标吗?
瘦客户端目前不支持它,因此您必须使用胖客户端或服务器节点收集此信息。
然后您可以将其存储在某处(例如缓存中),以便瘦客户端也可以访问。