Select 在以前的 Apache Ignite 版本中有效的在 2.8.0 中无效

Select that worked in previous Apache Ignite versions doesn't work in 2.8.0

我正在使用 Apache Ignite 2.8.0。在旧版本中,我能够通过缓存中的常规 select select node_attributes。

SELECT t.VALUE FROM ignite.node_attributes t WHERE t.name = 'MONITOR_NODE'

在 2.8.0 中,这个 select 不再适用于我。也许点燃中有一些选项我忘了改变?或者节点属性有不同的 selection?

Apache Ignite 2.8.0 中,您应该使用 SYS 模式来查询节点属性。 类似的东西:

SELECT t.VALUE FROM sys.node_attributes t WHERE t.name = 'MONITOR_NODE';