赞
踩
概念
Fetch抓取,是指hive中某些查询hql不用走mapreduce计算,此时查询速度相对较快,类似于presto等即时查询引擎。这种查询一般是相对简单的单表查询,例如select * from test_table limit 10;
Fetch抓取的模式
可以通过 set hive.fetch.task.conversion查看,有以下3种模式:
以下HQL,mininal模式与more模式下都不会走mr任务:
SELECT
sale_ord_id,
store_id
FROM
test_table
where
dt = '2021-01-01'
limit 10;
以下HQL,mininal模式会走mr任务,more模式不会:
SELECT
sale_ord_id,
store_id,
if(store_id > 20,1,0) as store_id_new
FROM
test_table
where
dt = '2021-01-01'
limit 10;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。