当前位置:   article > 正文

拉链表的说明_拉链表开链闭链

拉链表开链闭链

概念讲解

数据仓库的数据模型设计过程中,经常会遇到这样的需求:
1. 数据量比较大;
2. 表中的部分字段会被update,如用户的地址,产品的描述信息,订单的状态等等;
3. 需要查看某一个时间点或者时间段的历史快照信息,比如,查看某一个订单在历史某一个时间点的状态,
   比如,查看某一个用户在过去某一段时间内,更新过几次等等;
4. 变化的比例和频率不是很大,比如,总共有1000万的会员,每天新增和发生变化的有10万左右;
5. 如果对这边表每天都保留一份全量,那么每次全量中会保存很多不变的信息,对存储是极大的浪费;


拉链历史表,既能满足反应数据的历史状态,又可以最大程度的节省存储;


举个简单例子,比如有一张订单表,6月20号有3条记录:

到6月21日,表中有5条记录:

到6月22日,表中有6条记录:

数据仓库中对该表的保留方法:

1. 只保留一份全量,则数据和6月22日的记录一样,如果需要查看6月21日订单001的状态,则无法满足;

2. 每天都保留一份全量,则数据仓库中的该表共有14条记录,但好多记录都是重复保存,没有任务变化,如订单002,004,数据量大了,会造成很大的存储浪费;

如果在数据仓库中设计成历史拉链表保存该表,则会有下面这样一张表:

说明:

1. dw_begin_date表示该条记录的生命周期开始时间,dw_end_date表示该条记录的生命周期结束时间;

2. dw_end_date = '9999-12-31'表示该条记录目前处于有效状态;

3. 如果查询当前所有有效的记录,则select * from order_his where dw_end_date = '9999-12-31'

4. 如果查询2012-06-21的历史快照,则select * from order_his where dw_begin_date <= '2012-06-21' and end_date >= '2012-06-21',这条语句会查询到以下记录:

 

和源表在6月21日的记录完全一致:

可以看出,这样的历史拉链表,既能满足对历史数据的需求,又能很大程度的节省存储资源;

 

拉链表实现例子

  1. -- 源数据表的结构
  2. create table if not exists dws.dws_saas_user_basics_da
  3. (
  4. user_id int comment '客户id',
  5. is_parent int comment '是否是父帐号',
  6. is_payed int comment '是否付费',
  7. fee_type_bg int comment '计费类型',
  8. func_type int comment '功能版本',
  9. start_time date comment '套餐开始时间',
  10. end_time date comment '套餐结束时间'
  11. ) COMMENT '客户信息表'
  12. PARTITIONED BY (dt int)
  13. ROW FORMAT DELIMITED FIELDS TERMINATED BY '\001'
  14. STORED AS ORC
  15. -- 拉链表的结构
  16. create table if not exists dws.dws_saas_user_his_da
  17. (
  18. user_id int comment '客户id, 只是父账号id',
  19. fee_type int comment '计费类型',
  20. func_type int comment '功能版本',
  21. start_time date comment '当前计费类型开始时间',
  22. end_time date comment '当前计费类型结束时间'
  23. ) COMMENT '客户计费类型拉链表(父账号)'
  24. PARTITIONED BY (dt int)
  25. ROW FORMAT DELIMITED FIELDS TERMINATED BY '\001'
  26. STORED AS ORC
  27. -- 首先得到修改的和新增的数据
  28. create table temp.temp_user_update_da as
  29. select
  30. T1.user_id,
  31. T1.fee_type_bg,
  32. T1.func_type
  33. from
  34. dws.dws_saas_user_basics_da as T1 inner join dws.dws_saas_user_basics_da as T2
  35. on T1.dt = ${today} and T2.dt = ${last_day} and T1.is_payed = 1 and T2.is_payed = 1 and T1.is_parent = 1 and T2.is_parent = 1
  36. where
  37. T1.dt = ${today} and T2.dt = ${last_day} and T1.is_payed = 1 and T2.is_payed = 1 and T1.is_parent = 1 and T2.is_parent = 1
  38. and T1.fee_type_bg != T2.fee_type_bg
  39. UNION ALL
  40. select
  41. T1.user_id,
  42. T1.fee_type_bg,
  43. T1.func_type
  44. from
  45. dws.dws_saas_user_basics_da as T1 left join dws.dws_saas_user_basics_da as T2
  46. on T1.dt = ${today} and T2.dt = ${last_day} and T1.is_payed = 1 and T2.is_payed = 1 and T1.is_parent = 1 and T2.is_parent = 1
  47. where
  48. T1.dt = ${today} and T2.dt = ${last_day} and T1.is_payed = 1 and T2.is_payed = 1 and T1.is_parent = 1 and T2.is_parent = 1
  49. and T2.user_id is null
  50. -- 然后做成拉链表, 注意在正式运行之前需要先初始化拉链表
  51. -- 然后拉链表dws.dws_user_his_da去和temp.temp_user_update_da关联将已经更新的数据的结束时间设置为当天的时间,将没有更新的数据还是设置为之前的时间
  52. -- 将新增的数据的开始时间设置为当天的时间, 结束时间设置为9999-12-31
  53. insert overwrite table dws.dws_user_his_da(dt=${today})
  54. select
  55. T1.user_id,
  56. T1.fee_type_bg,
  57. T1.func_type,
  58. CASE
  59. WHEN T1.end_time = '9999-12-31' AND T2.user_id IS NOT NULL THEN '${today}'
  60. ELSE T1.end_time
  61. END AS end_time
  62. from
  63. dws.dws_user_his_da as T1 left join temp.temp_user_update_da as T2
  64. on T1.dt = ${last_day} and T1.user_id = T2.user_id
  65. where
  66. T1.dt = ${last_day}
  67. UNION ALL
  68. select
  69. T1.user_id,
  70. T1.fee_type_bg,
  71. T1.func_type,
  72. '${today}' AS start_time,
  73. '9999-12-31' AS end_time
  74. from
  75. temp.temp_user_update_da as T1
  76. -- 初始化语句
  77. insert overwrite table dws.dws_saas_user_his_da PARTITION(dt=${init_day})
  78. select
  79. T1.user_id,
  80. T1.fee_type_bg,
  81. T1.func_type,
  82. T1.start_time,
  83. '9999-12-31' AS end_time
  84. from
  85. dws.dws_saas_user_basics_da as T1
  86. where T1.dt = ${init_day} and T1.is_payed = 1 and T1.is_parent = 1;

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/酷酷是懒虫/article/detail/867928
推荐阅读
相关标签
  

闽ICP备14008679号