HLL数据类型

HLL(HyperLoglog)是统计数据集中唯一值个数的高效近似算法。它有着计算速度快,节省空间的特点,不需要直接存储集合本身,而是存储一种名为HLL的数据结构。每当有新数据加入进行统计时,只需要把数据经过哈希计算并插入到HLL中,最后根据HLL就可以得到结果。

HLL与其他算法的比较请参见表1

表 1 HLL与其他算法比较

项目

Sort算法

Hash算法

HLL

时间复杂度

O(nlogn)

O(n)

O(n)

空间复杂度

O(n)

O(n)

1280字节

误差率

0

0

≈2%

所需存储空间

原始数据大小

原始数据大小

1280字节

HLL在计算速度和所占存储空间上都占优势。在时间复杂度上,Sort算法需要排序至少O(nlogn)的时间,虽说Hash算法和HLL一样扫描一次全表O(n)的时间就可以得出结果,但是存储空间上,Sort算法和Hash算法都需要先把原始数据存起来再进行统计,会导致存储空间消耗巨大,而对HLL来说不需要存原始数据,只需要维护HLL数据结构,故占用空间始终是1280字节常数级别。

HLL数据类型 - 图1 须知:

  • 当前默认规格下可计算最大distinct值的数量为1.6e+12个,误差率最大可达到2.3%。用户应注意如果计算结果超过当前规格下distinct最大值会导致计算结果误差率变大,或导致计算结果失败并报错。
  • 用户在首次使用该特性时,应该对业务的distinct value做评估,选取适当的配置参数并做验证,以确保精度符合要求:
  • 当前默认参数下,可以计算的distinct value值为1.6e+12,如果计算得到的distinct value值为NaN,需要调整log2m和regwidth来容纳更多的distinct value。
  • 虽然hash算法存在极低的hash collision概率,但是建议用户在首次使用时,选取2-3个hash seed验证,如果得到的distinct value相差不大,则可以从该组seed中任选一个作为hash seed。

HLL中主要的数据结构,请参见表2

表 2 HyperLogLog中主要数据结构

数据类型

功能描述

hll

大小为确定的1280字节,可直接计算得到distinct值。

HLL的应用场景。

  • 场景1:“Hello World”

    通过下面的示例说明如何使用hll数据类型:

    1. -- 创建带有hll类型的表
    2. postgres=# create table helloworld (id integer, set hll);
    3. -- 向表中插入空的hll
    4. postgres=# insert into helloworld(id, set) values (1, hll_empty());
    5. -- 把整数经过哈希计算加入到hll
    6. postgres=# update helloworld set set = hll_add(set, hll_hash_integer(12345)) where id = 1;
    7. -- 把字符串经过哈希计算加入到hll
    8. postgres=# update helloworld set set = hll_add(set, hll_hash_text('hello world')) where id = 1;
    9. -- 得到hll中的distinct
    10. postgres=# select hll_cardinality(set) from helloworld where id = 1;
    11. hll_cardinality
    12. -----------------
    13. 2
    14. (1 row)
    15. -- 删除表
    16. postgres=# drop table helloworld;
  • 场景2:“网站访客数量统计”

    通过下面的示例说明hll如何统计在一段时间内访问网站的不同用户数量:

    1. -- 创建原始数据表,表示某个用户在某个时间访问过网站。
    2. postgres=# create table facts (
    3. date date,
    4. user_id integer
    5. );
    6. -- 构造数据,表示一天中有哪些用户访问过网站。
    7. postgres=# insert into facts values ('2019-02-20', generate_series(1,100));
    8. postgres=# insert into facts values ('2019-02-21', generate_series(1,200));
    9. postgres=# insert into facts values ('2019-02-22', generate_series(1,300));
    10. postgres=# insert into facts values ('2019-02-23', generate_series(1,400));
    11. postgres=# insert into facts values ('2019-02-24', generate_series(1,500));
    12. postgres=# insert into facts values ('2019-02-25', generate_series(1,600));
    13. postgres=# insert into facts values ('2019-02-26', generate_series(1,700));
    14. postgres=# insert into facts values ('2019-02-27', generate_series(1,800));
    15. -- 创建表并指定列为hll
    16. postgres=# create table daily_uniques (
    17. date date UNIQUE,
    18. users hll
    19. );
    20. -- 根据日期把数据分组,并把数据插入到hll中。
    21. postgres=# insert into daily_uniques(date, users)
    22. select date, hll_add_agg(hll_hash_integer(user_id))
    23. from facts
    24. group by 1;
    25. -- 计算每一天访问网站不同用户数量
    26. postgres=# select date, hll_cardinality(users) from daily_uniques order by date;
    27. date | hll_cardinality
    28. ---------------------+------------------
    29. 2019-02-20 00:00:00 | 100
    30. 2019-02-21 00:00:00 | 203.813355588808
    31. 2019-02-22 00:00:00 | 308.048239950384
    32. 2019-02-23 00:00:00 | 410.529188080374
    33. 2019-02-24 00:00:00 | 513.263875705319
    34. 2019-02-25 00:00:00 | 609.271181107416
    35. 2019-02-26 00:00:00 | 702.941844662509
    36. 2019-02-27 00:00:00 | 792.249946595237
    37. (8 rows)
    38. -- 计算在2019.02.202019.02.26一周中有多少不同用户访问过网站
    39. postgres=# select hll_cardinality(hll_union_agg(users)) from daily_uniques where date >= '2019-02-20'::date and date <= '2019-02-26'::date;
    40. hll_cardinality
    41. ------------------
    42. 702.941844662509
    43. (1 row)
    44. -- 计算昨天访问过网站而今天没访问网站的用户数量。
    45. postgres=# SELECT date, (#hll_union_agg(users) OVER two_days) - #users AS lost_uniques FROM daily_uniques WINDOW two_days AS (ORDER BY date ASC ROWS 1 PRECEDING);
    46. date | lost_uniques
    47. ---------------------+--------------
    48. 2019-02-20 00:00:00 | 0
    49. 2019-02-21 00:00:00 | 0
    50. 2019-02-22 00:00:00 | 0
    51. 2019-02-23 00:00:00 | 0
    52. 2019-02-24 00:00:00 | 0
    53. 2019-02-25 00:00:00 | 0
    54. 2019-02-26 00:00:00 | 0
    55. 2019-02-27 00:00:00 | 0
    56. (8 rows)
    57. -- 删除表
    58. postgres=# drop table facts;
    59. postgres=# drop table daily_uniques;
  • 场景3:“插入数据不满足hll数据结构要求”

    当用户给hll类型的字段插入数据的时候,必须保证插入的数据满足hll数据结构要求,如果解析后不满足就会报错。如下示例中: 插入数据’E\\1234’时,该数据不满足hll数据结构,不能解析成功因此失败报错。

    1. postgres=# create table test(id integer, set hll);
    2. postgres=# insert into test values(1, 'E\\1234');
    3. ERROR: unknown schema version 4
    4. postgres=# drop table test;