node_id在system.runtime.queries查询中表示什么?这是否意味着要执行查询的node_id?
我们对presto main进行了一些更改,从那时起,对于
返回的所有查询,node_id的值都为b0c66b07-adfd-4739-a9ab-0cea9d9ec60eselect * from system.runtime.queries
我已经尝试过在presto用户组(google组)中提出问题,但没有得到任何答复
答案 0 :(得分:1)
查看system.runtime.queries
表的实现,尤其是在the line where node_id
column is being populated,此列显示了正在执行“元查询”(select * from system.runtime.queries
)的节点。但是,此查询must run on the coordinator始终是协调节点的ID。
注意:这与正在执行“实际”查询(访问某些实际数据而不是Presto元数据的查询)无关。它们通常一次运行在多个节点上。