hive_process
我在 Atlas 中有几个类型的实体。这种类型的每个实体都应该至少有 1 个输出(和 1 个输入,但我们暂时忘记这一点)。
现在我正在尝试获取属性为空的所有类型hive_process
的实体,outputs
以便以后可以将状态更改为“ DELETED
”。
像这样的查询不会产生任何结果:
from hive_process where hive_process.outputs=null
from hive_process where hive_process.outputs=""
from hive_process where hive_process.outputs="[]"
并且输出属性在创建时不可用Attribute Filter
关于如何创建这样的过滤器的任何想法?谢谢!