hive中合理使用union all与multi insert

对同一张表的union all 要比多重insert快的多,
原因是hive本身对这种union all做过优化,即只扫描一次源表;

而多重insert也只扫描一次,但应为要insert到多个分区,所以做了很多其他的事情,导致消耗的时间非常长;
希望大家在开发的时候多测,多试!

lxw_test3 12亿左右记录数

Union all : 耗时7分钟左右

 

 

 

 

		create table lxw_test5 as 
		select type,popt_id,login_date 
		from (
		        select 'm3_login' as type,popt_id,login_date  
		        from lxw_test3 
		        where login_date>='2012-02-01' and login_date<'2012-05-01' 
		        union all 
		        select 'mn_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-05-01' and login_date<='2012-05-09' 
		        union all 
		        select 'm3_g_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='1' 
		        union all 
		        select 'm3_l_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='2' 
		        union all 
		        select 'm3_s_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='3' 
		        union all 
		        select 'm3_o_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='4' 
		        union all 
		        select 'mn_g_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='1' 
		        union all 
		        select 'mn_l_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='2' 
		        union all 
		        select 'mn_s_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='3' 
		        union all 
		        select 'mn_o_login' as type,popt_id,login_date 
		        from lxw_test3 
		        where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='4' 
		) x

多重insert耗时25分钟左右:

		FROM lxw_test3 
		insert overwrite table lxw_test6 partition (flag = '1') 
		select 'm3_login' as type,popt_id,login_date  
		where login_date>='2012-02-01' and login_date<'2012-05-01' 
		insert overwrite table lxw_test6 partition (flag = '2') 
		select 'mn_login' as type,popt_id,login_date 
		where login_date>='2012-05-01' and login_date<='2012-05-09' 
		insert overwrite table lxw_test6 partition (flag = '3') 
		select 'm3_g_login' as type,popt_id,login_date 
		where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='1' 
		insert overwrite table lxw_test6 partition (flag = '4') 
		select 'm3_l_login' as type,popt_id,login_date 
		where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='2' 
		insert overwrite table lxw_test6 partition (flag = '5') 
		select 'm3_s_login' as type,popt_id,login_date 
		where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='3' 
		insert overwrite table lxw_test6 partition (flag = '6') 
		select 'm3_o_login' as type,popt_id,login_date 
		where login_date>='2012-02-01' and login_date<'2012-05-01' and apptypeid='4' 
		insert overwrite table lxw_test6 partition (flag = '7') 
		select 'mn_g_login' as type,popt_id,login_date 
		where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='1' 
		insert overwrite table lxw_test6 partition (flag = '8') 
		select 'mn_l_login' as type,popt_id,login_date 
		where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='2' 
		insert overwrite table lxw_test6 partition (flag = '9') 
		select 'mn_s_login' as type,popt_id,login_date 
		where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='3' 
		insert overwrite table lxw_test6 partition (flag = '10') 
		select 'mn_o_login' as type,popt_id,login_date 
		where login_date>='2012-05-01' and login_date<='2012-05-09' and apptypeid='4'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值