Impala 查询没有返回任何错误或数据

Impala queries are not returning anything error or data nothing at all

我创建了 Impala PARQUET TABLE 的 50GB 数据。 我正在运行一个包含 5 个表的连接、数据分组和排序的查询。

在查询结束时,服务器没有响应任何输出数据,Impala 也没有抛出任何异常。

在 cloudera 管理器上,我可以看到几分钟前有一个节点运行状况不佳。

查询:

    select 
    d_year, s_city, p_brand1,
    sum(lo_revenue - lo_supplycost) as profit
from 
    lineorder_kylin_parqt_ext, dates_kylin_parqt_ext ,customer_kylin_parqt_ext, supplier_kylin_parqt_ext, part_kylin_parqt_ext
where 
    lo_custkey = c_custkey
    and lo_suppkey = s_suppkey
    and lo_partkey = p_partkey
    and lo_orderdate = d_datekey
    and c_region = 'AMERICA'
    and s_nation = 'UNITED STATES'
    and (d_year = 1997 or d_year = 1998)
    and p_category = 'MFGR#14'
group by 
    d_year, s_city, p_brand1
order by 
    d_year, s_city, p_brand1;

我得到答案 OS 正在杀死节点上的 impala 恶魔,因为它正在消耗内存。我从内核日志和 Cloudera Manager 以及执行查询的恶魔中确认已死亡。