我可以向配置单元子查询添加streamable吗?正确的方法是什么?

okxuctiv  于 2021-06-24  发布在  Hive
关注(0)|答案(0)|浏览(197)

我在探索 /*+ STREAMTABLE(a) */ 在Hive里。我不知道在子查询中使用它的最佳方式是什么。

create table test_abc as 
select b.* 
from (select /*+ STREAMTABLE(a) */ *, Row_Number() over(partition by id 
order by a.dt desc) as dt from table_abc a) b
where b.dt=1;

create table test_abc as 
select /*+ STREAMTABLE(b) */ b.* 
from (select *, Row_Number() over(partition by id 
order by a.dt desc) as dt from table_abc a) b
where b.dt=1;

或者即使我们对没有连接的查询使用streamtable也很重要。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题