我正在使用hive从视图创建表,代码如下:
hive>create table uaa.tmp_half_year_cookies as
select u from longyuan_web.ods_mbw_user_play
where dt>='2018-01-01' and dt<='2018-07-22'
and p='20' and p1='201'
and u is not null
and length(u)>=32
and os='ios' group by u;
配置单元运行非常缓慢,甚至卡住并停在那里很长时间,如下图所示:
为什么会发生这种情况?在创建表之前,我做得非常好,任何帮助将不胜感激!