hive left outer join 子查询临时表_基于历史数据的用户访问次数,每天新老用户,日活,周活,月活的hive计算...

最近有一个需求,统计每天的新老用户,日活,周活,月活。

我们每天的增量数据会加入到hive历史数据表中,包含用户访问网站的一些信息,字段有很多,包括用户唯一标识guid。

当然了日活,周活,月活就是一个count(distinct(guid))语句,非常常用的sql。

但是这里的问题是:

A:每天的新老用户应该怎么统计呢?
B:这还不简单,判断用户guid是否存在与历史库guid中嘛?
A:历史数据几十个T,大概一百亿行,你要每天将当日数据(2~3亿行)与历史数据几亿行进行join判断?
B:额,这个,这个,好像不行哦!

是的,历史数据里面是用户网站访问行为,同一个用户在同一天,不同的天都有可能出现,guid在历史表中会有多次。如果直接join,性能很差,实际上是做了很多不必要的工作。

解决方案:

维护一张用户表,里面有4列:guid, starttime, endtime, num,分别是用户的guid,第一次访问时间,最后一次访问时间,访问天数;
从某个状态开始,历史表中guid是唯一的;
当天数据去重后,与历史库join,如果guid在历史库出现过,则将endtime更新为当天时间,num加一;
否则,这是一个新用户,插入历史库,starttime, endtime都为当天时间,num初始值为1。

维护了这么一张用户表后,接下来就可以写hql统计业务了,计算当天新老用户时,只需要与这个历史库进行join就行了(目前为止4千万),当日guid去重后是1千多万,这样就是4千万~1千万的join了,与开始4千万~100亿的join,性能会有巨大提升。

hive历史表的设计与hive相关配置

可以看到这里hive历史表history_helper需要频繁修改,hive表支持数据修改需要在${HIVE_HOME}/conf/hive-site.xml中添加事务支持:

<property><name>hive.support.concurrency</name><value>true</value>
</property>
<property><name>hive.exec.dynamic.partition.mode</name><value>nonstrict</value>
</property>
<property><name>hive.txn.manager</name><value>org.apache.hadoop.hive.ql.lockmgr.DbTxnManager</value>
</property>
<property><name>hive.compactor.initiator.on</name><value>true</value>
</property>
<property><name>hive.compactor.worker.threads</name><value>1</value>
</property>

为了提高查询速度,hive历史表与增量表这里都分桶,hive-xite.xml配置:

<property><name>hive.enforce.bucketing</name><value>true</value>
</property>

为了提高reduce并行度,也设置一下:

set mapred.reduce.tasks = 50;

这个最好在hive命令行配置,表明只在当前程序使用该配置,就不要配置配置文件了。

历史库建表语句:

create external table if not exists hm2.history_helper
(guid string,starttime string,endtime string,num int
)
clustered by(guid) into 50 buckets
stored as orc TBLPROPERTIES ("transactional"="true");

当天增量表,保存去重后的guid,建表语句:

create table if not exists hm2.daily_helper
(guid string,dt string
)
clustered by(guid) into 50 buckets
stored as orc TBLPROPERTIES ("transactional"="true");

思路

由于这种需要写成定时模式,所以这里用python脚本来实现,将hive查询结果保存到本地文件result.txt,然后python读取result.txt,连接数据库,保存当天的查询结果。

代码

helper.py

#!/usr/bin/python
# -*- coding:utf-8 -*-# hive更新历史用户表,日常查询,保存到MySQLimport sys
import datetime
import commands
import MySQLdb# 获取起始中间所有日期
def getDays(starttime,endtime,regx):datestart=datetime.datetime.strptime(starttime,regx)dateend=datetime.datetime.strptime(endtime,regx)days = []while datestart<=dateend:days.append(datestart.strftime(regx))datestart+=datetime.timedelta(days=1)return days# 获得指定时间的前 n 天的年、月、日,n取负数往前,否则往后
def getExacYes(day, regx, n):return (datetime.datetime.strptime(day,regx) + datetime.timedelta(days=n)).strftime(regx)# 获得距离现在天数的年、月、日,n 取值正负含义同上,昨天就是getYes(regx,-1)
def getYes(regx, n):now_time = datetime.datetime.now()yes_time = now_time + datetime.timedelta(days=n)yes_time_nyr = yes_time.strftime(regx)return yes_time_nyr# 执行hive命令
def execHive(cmd):print cmdres = commands.getstatusoutput(cmd)return res# 获得当前是星期几
def getWeek(regx):now_time = datetime.datetime.now()week = now_time.strftime(regx)return week# 格式化日期,加上双引号
def formatDate(day):return """ + day + """# 数据保存到mysql
def insertMysql(dt, path, tbName, regx):# new, dayAll, stayvalues = []with open(path) as file:line = file.readline()while line:values.append(line.strip())line = file.readline()dayAll = int(values[1])new = float(values[0])/dayAllold = 1 - new# 获取数据库连接conn = MySQLdb.connect("0.0.0.0", "statistic", "123456", "statistic")# 获取游标cursor = conn.cursor()# 查询昨天的用户人数yesDay = getExacYes(dt, regx, -1)sql = 'select dayAll from %s where dt = %s'%(tbName, formatDate(yesDay))try:cursor.execute(sql)except Exception as e:print eyesAll = int(cursor.fetchall()[0][0])stay = float(values[2]) / yesAllprint stay# 获取游标cursor2 = conn.cursor()sql = 'insert into  %svalues("%s",%f,%f,%f,%d)'%(tbName, dt, new, old, stay, dayAll)print sqltry:cursor2.execute(sql)conn.commit()except:conn.rollback()finally:conn.close()# 初始化,删除临时表,并且创建
def init():# 设置分桶环境cmd = 'source /etc/profile;hive -e 'set hive.enforce.bucketing = true;set mapred.reduce.tasks = 50;''(status,result) = execHive(cmd)# 清除当天的临时表,结果保存cmd = 'source /etc/profile;hive -e 'drop table hm2.daily_helper;''(status,result) = execHive(cmd)if status == 0:print '%s昨天临时表删除完毕...'%(day)else:print resultsys.exit(1)cmd = 'source /etc/profile;hive -e 'create table if not exists hm2.daily_helper(guid string,dt string)clustered by(guid) into 50 buckets stored as orc TBLPROPERTIES ("transactional"="true");''(status,result) = execHive(cmd)if status == 0:print '%s临时表创建完毕...'%(day)else:print resultsys.exit(1)# 主函数入口
if __name__ == '__main__':regx = '%Y-%m-%d'resultPath = '/home/hadoop/statistic/flash/helper/result.txt'days = getDays('2018-07-01','2018-07-20',regx)tbName = 'statistic_flash_dailyActive_helper'for day in days:init()# 当天数据去重后保存到临时表daily_helpercmd = 'source /etc/profile;hive -e 'insert into hm2.daily_helper select distinct(guid),dt from hm2.helper where dt = "%s" and guid is not null;''%(day)print '%s数据正在导入临时表...'%(day)(status,result) = execHive(cmd)if status == 0:print '%s数据导入临时表完毕...'%(day)else:print resultsys.exit(1)# guid存在则更新 endtime 与 numcmd = 'source /etc/profile;hive -e 'update hm2.history_helper set endtime = "%s",num = num + 1 where guid in (select guid from hm2.daily_helper);''%(day)print '正在更新endtime 与 num...'(status,result) = execHive(cmd)if status == 0:print '%s history_helper数据更新完毕'%(day)else :print resultsys.exit(1)# 当天新用户cmd = 'source /etc/profile;hive -e 'select count(1) from hm2.daily_helper where guid not in (select guid from hm2.history_helper);' > %s'%(resultPath)(status,result) = execHive(cmd)if status != 0:print resultsys.exit(1)# 不存在插入cmd = 'source /etc/profile;hive -e 'insert into hm2.history_helperselect daily.guid,dt,dt,1 from hm2.daily_helper dailywhere daily.guid not in (select guid from hm2.history_helper where guid is not null);''print '正在插入数据到history_helper表...'(status,result) = execHive(cmd)if status == 0:print '%s数据插入hm2.history_helper表完成'%(day)else:print resultsys.exit(1)# 当天总人数cmd = 'source /etc/profile;hive -e 'select count(1) from hm2.daily_helper;' >> %s'%(resultPath)(status,result) = execHive(cmd)if status != 0:print resultsys.exit(1)# 次日活跃留存cmd = 'source /etc/profile;hive -e 'select count(1) from(select guid from hm2.helper where dt = "%s" group by guid) yesinner join(select guid from hm2.helper where dt = "%s" group by guid) todaywhere yes.guid = today.guid;' >> %s'%(getExacYes(day, regx, -1), day, resultPath)(status,result) = execHive(cmd)if status != 0:print resultsys.exit(1)# 结果保存到mysqlinsertMysql(day, resultPath, tbName, regx)print '=========================%s hive 查询完毕,结果保存数据到mysql完成=============================='%(day)

这是在处理历史数据,然后就是每天定时处理了,在linux crontab里加个定时器任务就好了。

1e8581dd6c4ebea5f964f29b2e144b2a.png
微信扫码关注

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/503706.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

sql server2008r2 没有提示_SQL学习之旅(1)

从2020.07.28开始跟着猴子哥系统学习数据库&#xff0c;在此记录自己的sql学习与练习过程&#xff0c;希望能为以后的自己带来帮助。SQL简介练习1&#xff1a;1.如何验证mysql数据库安装成功&#xff1f;在完成环境变量的配置的情况&#xff08;在Path中添加mysql的bin目录路径…

order by 子查询_【框架】118:mybatis之多表高级查询

今天是刘小爱自学Java的第118天。感谢你的观看&#xff0c;谢谢你。学习内容安排如下&#xff1a;补充说明知识点&#xff1a;resultMap&#xff0c;sql片段。mybatis中的高级查询&#xff0c;即多表关联查询。查询主要分为&#xff1a;一对一&#xff0c;一对多&#xff0c;多…

css中变形,css3中变形处理

transfrom功能在css3 中可以使用transfrom功能实现文字或图像的旋转&#xff0c;缩放&#xff0c;倾斜&#xff0c;移动等变形处理deg是css3中使用的一种角度单位。旋转&#xff1a; 使用rotate方法&#xff0c;在参数中加入角度值&#xff0c;在角度值后要加上角度单位deg。旋…

获取 子文件夹 后缀_后期制作老司机教你一键批量生成项目文件夹

我猜你的项目工程是这样的&#xff0c;当你老板说去修改一下之前几个月的工程的时候&#xff0c;你都不知道哪个工程才是最终版呀。乱糟糟的工程而且当你打开工程的时候&#xff0c;wo艹&#xff0c;素材怎么丢失了~~不管是后期制作者还是平常我们日常工作&#xff0c;一定要养…

ffmpeg将文件转码后推向服务器,使用 Serverless 云函数 + ffmpeg 实现音视频转码服务...

核心价值视频应用、社交应用等场景下&#xff0c;用户上传的图片、音视频的总量大、频率高&#xff0c;对处理系统的实时性和并发能力都有较高的要求。例如&#xff1a;对于用户上传的视频短片&#xff0c;我们可以使用多个云函数对其分别处理&#xff0c;对应不同的清晰度(108…

python 怎么判断字符串是否有换行_JAVA中如何判断一个字符串是否换行

展开全部${rr.right_name}扩展资料 java控制台程序判断String字符e68a8462616964757a686964616f31333431373263串中只输入了一个回车&#xff1a; importjava.io.BufferedReader; importjava.io.InputStreamReader; importjava.util.Scanner; publicclassTest{ publicstaticvoi…

logger 参数列表过长_[源码级解析] 巧妙解决并深度分析Linux下rm命令提示参数列表过长的问题...

在维护实习单位服务器的过程中&#xff0c;偶然发现一个有350万文件的文件夹需要清理&#xff0c;于是我习惯性执行了rm -rf ./*&#xff0c;却在数秒后被告知“参数列表过长”。在一番折腾过后&#xff0c;我终于通过取巧的办法完成了这一任务&#xff0c;也随着相关内核源码的…

collect的功能是什么?其底层如何实现的?_为什么你要用 Spring ?

前言现在Spring几乎成为了Java在企业级复杂应用开发的代名词&#xff0c;得益于Spring简单的设计哲学和其完善的生态圈&#xff0c;确实为廉颇老矣&#xff0c;尚能饭否的 Java 带来了“春天”&#xff0c;有很多同学刚接触Java就直接从Spring框架开始学习&#xff0c;导致产生…

m3u8合并mp4软件_m3u8格式转mp4究极办法!

你们来这个号这么久了&#xff01;还没给你们分享过一些实用的干货。打今天起这个公众号将给大家推荐一些APP和实用的小软件和一些小教程。生命太短&#xff0c;没时间留给遗憾。若不是终点&#xff0c;都不要把自己留在原地&#xff0c;请一直微笑向前&#xff01;我是帮忙坏哥…

android 左移动画_android旋转动画和平移动画详解,补充说一下如果制作gif动画放到csdn博客上...

先上效果图:制作过程是先起一个模拟器&#xff0c;然后把GifCam的框拖到模拟器上面&#xff0c;点击Rec的new先&#xff0c;然后点击Rec,然后就save到本地成gif文件这里做一个左右旋转&#xff0c;上下旋转&#xff0c;和左右移动的动画&#xff0c;先自己建立一个View的类&…

vm虚拟机安装包_一次Miniconda虚拟机安装的神奇踩坑记录

本人一直都是在物理机环境下使用Anaconda&#xff0c;好处是提供了比较完全的机器学习包&#xff0c;还有方便的虚拟环境&#xff0c;缺点是体积太大。但如果直接用Anaconda中的根目录环境作为pycharm中的Python解释器&#xff0c;因为在运行程序前会不断加载根目录中的Python包…

css3弧形跑道效果_Css 实现漂亮弧形

在实现页面五花八门的有特色的ui时&#xff0c;我们有时会遇到要用实现一个弧形&#xff0c;而这样的弧形要怎么实现呢&#xff1f;用图片&#xff1f;好像不大现实&#xff0c;因为这样就要无故多加载一张图片了&#xff0c;这里我们来说说怎么用css的after伪类来实现弧形。先…

python螺旋圆的绘制_python 使用turtule绘制递归图形(螺旋、二叉树、谢尔宾斯基三角形)...

插图工具使用Python内置的turtle模块&#xff0c;为什么叫这个turtle乌龟这个名字呢&#xff0c;可以这样理解&#xff0c;创建一个乌龟&#xff0c;乌龟能前进、后退、左转、右转&#xff0c;乌龟的尾巴朝下&#xff0c;它移动时就会画一条线。并且为了增加乌龟画图的艺术价值…

教室信息管理系统mysql_教师信息管理系统(方式一:数据库为oracle数据库;方式二:存储在文件中)...

方式一&#xff1a;运行截图数据库的sql语句&#xff1a;/*Navicat Oracle Data TransferOracle Client Version : 12.1.0.2.0Source Server : ORCZYTSource Server Version : 120100Source Host : localhost:1521Source Schema : C##ZYTTarget Server Type : ORACLETarget Ser…

python实现xmind_Python xmind库(生成框架图)

小编在测试日常工作中遇到一个费时的问题&#xff0c;如何将excel中的测试用例&#xff0c;生成测试框架图&#xff1f;经过查阅发现的python xmind库 将excel中的测试用例&#xff0c;生成测试框架图&#xff0c;分为2步 1.解析excel&#xff0c;取出excel中数据&#xff08;此…

python代码解读软件_5种带你轻松分析Python代码的软件库

通常&#xff0c;人们会使用两种速度来衡量某种编程语言的优劣&#xff0c;即&#xff1a;开发速度和执行速度。对于Python而言&#xff0c;大家往往受益的是它能够快速地编写代码&#xff0c;而忽略了它是否能够快速地运行&#xff0c;并及时完成既定的任务。因此&#xff0c;…

mac ssh客户端_Electerm for Mac(ssh客户端)

Electerm for Mac是一款功能强大的&#xff0c;作为终端或ssh / sftp客户端(类似于xshell)为一体的工具&#xff0c;支持多平台(linux&#xff0c;mac&#xff0c;win)&#xff0c;还有自定义终端样式&#xff0c;全局/会话代理&#xff0c;将书签/主题/快速命令同步到github s…

armbian nginx 部署博客_通过Git将Hexo博客部署到服务器

本文首发于我的个人博客https://orxing.top&#xff0c;欢迎来访服务器是用的阿里云ECS CentOS&#xff0c;本来是用来部署WordPress的&#xff0c;后来接触了Hexo&#xff0c;就把Hexo直接部署到了GitHub pages和Coding Pages上&#xff0c;但是最近发现Coding pages经常抽风&…

python 字符串格式化语法_Python基础语法--字符串格式化

PS&#xff1a;在学习到Python的字符串格式化一些个人的总结&#xff0c;利用字符串格式化可以更好的对代码结果进行格式化输出语法栗子 例子中通过接收用户输入的值&#xff0c;赋值给sex_input和age_input生成两个变量&#xff0c;并根据判断输出相应的语句&#xff0c;and是…

springmvc跳转html_SpringMVC基础(三)

本篇文章主要整理了数据处理、乱码处理和Json的相关知识。参考的狂神说的公众号以及视频。所有代码亲测有效。数据处理主要包括处理提交的数据以及将数据显示到前端。处理提交的数据一般有三种情况&#xff1a;(1)提交的域的名称和方法的参数名称一致时&#xff1a;RequestMapp…