当前位置:网站首页>Real time data warehouse
Real time data warehouse
2022-07-04 14:22:00 【This program ape is so beautiful】
This article is just a summary of my real-time data warehouse experience , In terms of architecture and data flow, it is actually similar to offline data warehouse , But real-time processing has its own particularity
Why should there be real-time data warehouse ?
We have been able to take off-line positions , The purpose of data warehouse is to reuse , But offline is T+1 Of , In our massive real-time demand , Previous offline computing cannot be reused , A lot of new repetitive real-time code development , The cost of developing and computing resources is increasing
Real time data warehouse layering

ODS Raw data , Including logs and business data
DWD
DIM
DWM
DWS
ADS

DWD
One for each table Topic, Rewrite the order flow and other business data back kafka, In addition, the log data is output from the measurement output stream (sql That's more than one. insert +filter), There are mainly startup and exit logs 、 page ( Only include pages, that is pv journal ) journal 、 Behavior log, etc , Different data have completely different data structures , So we need to split it
At the same time, do some illegal value filtering , Like time stamps ,uid check ( Mainly regular matching , We are 13 Digit number ), in addition ODS In addition to the fact data, there will also be dimension data , Need to write DIM instead of DWD
DWD The main core of the layer is data diversion and state recognition
DIM
Like I said , some ODS Dimension data of Flink After you get it, you usually write it directly Hbase 了 , It is convenient for us to do dimensional flow join
DWM
DWM Layer is mainly due to the high cost of real-time computing, development, operation and maintenance , But in DWD -> DWS There are still many repeated calculations in the calculation of , Mainly extract this part for public
For example, order wide table , You need to associate order tables with order details and dimension tables , Then we can only process it once as a wide table , stay DWS Various behaviors or orders are used directly from DWM Just associate the data

This layer is often designed to have more streams join And flow dimension join
DWS
Mild polymerization , Deal with all kinds of real-time queries , And relieve the pressure of query
Combine more real-time data in a thematic way for easy management , At the same time, it can also reduce the number of dimension queries
How to make design DWS Table of , It mainly depends on dimension + Measure ( Fact data )
Metrics such as uv、pv、 Number of jumps 、 Number of times to enter the page (session_count)、 Continuous access duration, etc
The dimension is mainly the main , channel 、 Go to the ground 、 edition 、 at home and abroad 、 New and old users 、 System (ios, Android , The computer ) these
Accept detailed data , Merge streams into the same data format , Then the window is aggregated and output to the database ( We are clickhouse)
Real time data warehouse application landing
Real time data market
Alarm monitoring
Real-time recommendation
边栏推荐
- 【MySQL从入门到精通】【高级篇】(五)MySQL的SQL语句执行流程
- R language ggplot2 visualization: gganimate package creates animated graph (GIF) and uses anim_ The save function saves the GIF visual animation
- CVPR 2022 | greatly reduce the manual annotation required for zero sample learning, and propose category semantic embedding rich in visual information (source code download)
- opencv3.2 和opencv2.4安装
- [FAQ] Huawei Account Service Error Report 907135701 Common reasons Summary and Solutions
- Whether the loyalty agreement has legal effect
- NowCoder 反转链表
- Basic mode of service mesh
- Mask wearing detection based on yolov1
- Matters needing attention in overseas game Investment Agency
猜你喜欢
![[matlab] summary of conv, filter, conv2, Filter2 and imfilter convolution functions](/img/7a/9b559313b407f9a12cbaed7bebd4dc.png)
[matlab] summary of conv, filter, conv2, Filter2 and imfilter convolution functions

【Matlab】conv、filter、conv2、filter2和imfilter卷积函数总结

基于51单片机的超声波测距仪

sql优化之查询优化器

Test evaluation of software testing

Rich text editing: wangeditor tutorial

NowCoder 反转链表

CVPR 2022 | greatly reduce the manual annotation required for zero sample learning, and propose category semantic embedding rich in visual information (source code download)
![去除重複字母[貪心+單調棧(用數組+len來維持單調序列)]](/img/af/a1dcba6f45eb4ccc668cd04a662e9c.png)
去除重複字母[貪心+單調棧(用數組+len來維持單調序列)]

学内核之三:使用GDB跟踪内核调用链
随机推荐
Gorm read / write separation (rotation)
Install MySQL
Understand chisel language thoroughly 10. Chisel project construction, operation and testing (II) -- Verilog code generation in chisel & chisel development process
海外游戏代投需要注意的
php 日志调试
迅为IMX6Q开发板QT系统移植tinyplay
sql优化之查询优化器
失败率高达80%,企业数字化转型路上有哪些挑战?
基于51单片机的超声波测距仪
2022游戏出海实用发行策略
Migration from go vendor project to mod project
LifeCycle
Matters needing attention in overseas game Investment Agency
Unity shader learning (3) try to draw a circle
Leetcode 61: 旋转链表
R language uses the mutation function of dplyr package to standardize the specified data column (using mean function and SD function), and calculates the grouping mean of the standardized target varia
R language uses follow up of epidisplay package The plot function visualizes the longitudinal follow-up map of multiple ID (case) monitoring indicators, and uses stress The col parameter specifies the
商業智能BI財務分析,狹義的財務分析和廣義的財務分析有何不同?
Detailed index of MySQL
递增的三元子序列[贪心训练]