当前位置:   article > 正文

SnowFlake 雪花算法和原理(分布式 id 生成算法)_snowflake 位数控制

snowflake 位数控制

一、概述

SnowFlake 算法:是 Twitter 开源的分布式 id 生成算法。

核心思想:使用一个 64 bit 的 long 型的数字作为全局唯一 id。

算法原理

  • 最高位是符号位,始终为0,不可用。

  • 41位的时间序列,精确到毫秒级,41位的长度可以使用69年。时间位还有一个很重要的作用是可以根据时间进行排序。

  • 10位的机器标识,10位的长度最多支持部署1024个节点

  • 12位的计数序列号,序列号即一系列的自增id,可以支持同一节点同一毫秒生成多个ID序号,12位的计数序列号支持每个节点每毫秒产生4096个ID序号

算法优缺点

优点

  • 高并发分布式环境下生成不重复 id,每秒可生成百万个不重复 id。

  • 基于时间戳,以及同一时间戳下序列号自增,基本保证 id 有序递增。

  • 不依赖第三方库或者中间件。

  • 算法简单,在内存中进行,效率高。

缺点

依赖服务器时间,服务器时钟回拨时可能会生成重复 id。算法中可通过记录最后一个生成 id 时的时间戳来解决,每次生成 id 之前比较当前服务器时钟是否被回拨,避免生成重复 id。

二、算法实现

  1. <dependency>
  2. <groupId>cn.hutool</groupId>
  3. <artifactId>hutool-all</artifactId>
  4. <version>5.8.11</version>
  5. </dependency>
  1. public class IdWorker {
  2. //下面两个每个5位,加起来就是10位的工作机器id
  3. private long workerId; //工作id
  4. private long datacenterId; //数据id
  5. //12位的序列号
  6. private long sequence;
  7. public IdWorker(long workerId, long datacenterId, long sequence) {
  8. // sanity check for workerId
  9. if (workerId > maxWorkerId || workerId < 0) {
  10. throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
  11. }
  12. if (datacenterId > maxDatacenterId || datacenterId < 0) {
  13. throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId));
  14. }
  15. System.out.printf("worker starting. timestamp left shift %d, datacenter id bits %d, worker id bits %d, sequence bits %d, workerid %d",
  16. timestampLeftShift, datacenterIdBits, workerIdBits, sequenceBits, workerId);
  17. this.workerId = workerId;
  18. this.datacenterId = datacenterId;
  19. this.sequence = sequence;
  20. }
  21. //初始时间戳
  22. private long twepoch = 1288834974657L;
  23. //长度为5位
  24. private long workerIdBits = 5L;
  25. private long datacenterIdBits = 5L;
  26. //最大值
  27. private long maxWorkerId = -1L ^ (-1L << workerIdBits);
  28. private long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
  29. //序列号id长度
  30. private long sequenceBits = 12L;
  31. //序列号最大值
  32. private long sequenceMask = -1L ^ (-1L << sequenceBits);
  33. //工作id需要左移的位数,12位
  34. private long workerIdShift = sequenceBits;
  35. //数据id需要左移位数 12+5=17位
  36. private long datacenterIdShift = sequenceBits + workerIdBits;
  37. //时间戳需要左移位数 12+5+5=22位
  38. private long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
  39. //上次时间戳,初始值为负数
  40. private long lastTimestamp = -1L;
  41. public long getWorkerId() {
  42. return workerId;
  43. }
  44. public long getDatacenterId() {
  45. return datacenterId;
  46. }
  47. public long getTimestamp() {
  48. return System.currentTimeMillis();
  49. }
  50. //下一个ID生成算法
  51. public synchronized long nextId() {
  52. long timestamp = timeGen();
  53. //获取当前时间戳如果小于上次时间戳,则表示时间戳获取出现异常
  54. if (timestamp < lastTimestamp) {
  55. System.err.printf("clock is moving backwards. Rejecting requests until %d.", lastTimestamp);
  56. throw new RuntimeException(String.format("Clock moved backwards. Refusing to generate id for %d milliseconds",
  57. lastTimestamp - timestamp));
  58. }
  59. //获取当前时间戳如果等于上次时间戳(同一毫秒内),则在序列号加一;否则序列号赋值为0,从0开始。
  60. if (lastTimestamp == timestamp) {
  61. sequence = (sequence + 1) & sequenceMask;
  62. if (sequence == 0) {
  63. timestamp = tilNextMillis(lastTimestamp);
  64. }
  65. } else {
  66. sequence = 0;
  67. }
  68. //将上次时间戳值刷新
  69. lastTimestamp = timestamp;
  70. /**
  71. * 返回结果:
  72. * (timestamp - twepoch) << timestampLeftShift) 表示将时间戳减去初始时间戳,再左移相应位数
  73. * (datacenterId << datacenterIdShift) 表示将数据id左移相应位数
  74. * (workerId << workerIdShift) 表示将工作id左移相应位数
  75. * | 是按位或运算符,例如:x | y,只有当x,y都为0的时候结果才为0,其它情况结果都为1。
  76. * 因为个部分只有相应位上的值有意义,其它位上都是0,所以将各部分的值进行 | 运算就能得到最终拼接好的id
  77. */
  78. return ((timestamp - twepoch) << timestampLeftShift) |
  79. (datacenterId << datacenterIdShift) |
  80. (workerId << workerIdShift) |
  81. sequence;
  82. }
  83. //获取时间戳,并与上次时间戳比较
  84. private long tilNextMillis(long lastTimestamp) {
  85. long timestamp = timeGen();
  86. while (timestamp <= lastTimestamp) {
  87. timestamp = timeGen();
  88. }
  89. return timestamp;
  90. }
  91. //获取系统时间戳
  92. private long timeGen() {
  93. return System.currentTimeMillis();
  94. }
  95. //---------------测试---------------
  96. public static void main(String[] args) {
  97. IdWorker worker = new IdWorker(1, 1, 1);
  98. for (int i = 0; i < 30; i++) {
  99. System.out.println(worker.nextId());
  100. }
  101. }
  102. }

解决时间回拨问题

原生的 Snowflake 算法是完全依赖于时间的,如果有时钟回拨的情况发生,会生成重复的 ID,市场上的解决方案也是不少。简单粗暴的办法有:

  • 最简单的方案,就是关闭生成唯一 ID 机器的时间同步

  • 使用阿里云的的时间服务器进行同步,2017 年 1 月 1 日的闰秒调整,阿里云服务器 NTP 系统 24 小时“消化”闰秒,完美解决了问题。

  • 如果发现有时钟回拨,时间很短比如 5 毫秒,就等待,然后再生成。或者就直接报错,交给业务层去处理。也可以采用 SonyFlake 的方案,精确到 10 毫秒,以 10 毫秒为分配单元。

twitter的雪花算法:https://github.com/twitter-archive/snowflake

其它全局唯一的分布式ID的方式:如百度的uid-generator美团的Leaf滴滴的TinyId

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

闽ICP备14008679号