• 雪花算法(snowflake)


    snowflake是Twitter开源的分布式ID生成算法,结果是一个long型的ID,几乎可以保证全球唯一!

    long类型的64位可以分为五个部分

    • 第一个部分是 1 个 bit:0,这个是无意义的

    • 第二个部分是 41 个 bit:表示的是时间戳

    • 第三个部分是 5 个 bit:表示的是数据中心 id,如10001

    • 第四个部分是 5 个 bit:表示的是机器 id,如11001

    • 第五个部分是 12 个 bit:表示的序号,就是某个数据中心某台机器上这一毫秒内同时生成的 id 的序号,如0000 0000 0000

    ① 1 bit:是不用的,为啥呢?

    因为二进制里第一个 bit 为如果是 1,那么都是负数,但是我们生成的 id 都是正数,所以第一个 bit 统一都是 0

    ② 41 bit:表示的是时间戳,单位是毫秒。

    41 bit 可以表示的数字多达 2^41 - 1,也就是可以标识 2 ^ 41 - 1 个毫秒值,换算成年就是表示 69 年的时间。

    ③ 10 bit:记录工作机器 id,代表的是这个服务最多可以部署在 2^10 台机器上,也就是 1024 台机器。

    但是 10 bit 里 5 个 bit 代表数据中心 id,5 个 bit 代表机器 id。意思就是最多代表 2 ^ 5 个数据中心(32 个数据中心),每个数据中心里可以代表 2 ^ 5 个机器(32 台机器),也可以根据自己公司的实际情况确定。

    ④ 12 bit:这个是用来记录同一个毫秒内产生的不同 id

    12 bit 可以代表的最大正整数是 2 ^ 12 - 1 = 4096,也就是说可以用这个 12 bit 代表的数字来区分同一个毫秒内的 4096 个不同的 id。

    简单来说,你的某个服务假设要生成一个全局唯一 id,那么就可以发送一个请求给部署了 SnowFlake 算法的系统,由这个 SnowFlake 算法系统来生成唯一 id。

    这个 SnowFlake 算法系统首先肯定是知道自己所在的数据中心和机器的,比如数据中心 id = 17,机器 id = 12。

    接着 SnowFlake 算法系统接收到这个请求之后,首先就会用二进制位运算的方式生成一个 64 bit 的 long 型 id,64 个 bit 中的第一个 bit 是无意义的。

    接着 41 个 bit,就可以用当前时间戳(单位到毫秒),然后接着 5 个 bit 设置上这个数据中心 id,还有 5 个 bit 设置上机器 id。

    最后再判断一下,当前这台数据中心的这台机器上这一毫秒内,这是第几个请求,给这次生成 id 的请求累加一个序号,作为最后的 12 个 bit

    SnowFlake算法的优点

    (1)高性能高可用:生成时不依赖于数据库,完全在内存中生成。

    (2)容量大:每秒中能生成数百万的自增ID。

    (3)ID自增:存入数据库中,索引效率高

    SnowFlake算法的缺点

    依赖与系统时间的一致性,如果系统时间被回调,或者改变,可能会造成id冲突或者重复

    雪花算法工具类

    导入依赖

    1. <!--Apache 开源工具包-->
    2. <dependency>
    3. <groupId>org.apache.commons</groupId>
    4. <artifactId>commons-lang3</artifactId>
    5. <version>3.8.1</version>
    6. </dependency>

    工具类

    1. package com.lixianhe.utils;
    2. import org.apache.commons.lang3.RandomUtils;
    3. import org.apache.commons.lang3.StringUtils;
    4. import org.apache.commons.lang3.SystemUtils;
    5. import java.net.Inet4Address;
    6. import java.net.UnknownHostException;
    7. /**
    8. * Twitter_Snowflake<br>
    9. * SnowFlake的结构如下(每部分用-分开):<br>
    10. * 0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000 <br>
    11. * 1位标识,由于long基本类型在Java中是带符号的,最高位是符号位,正数是0,负数是1,所以id一般是正数,最高位是0<br>
    12. * 41位时间截(毫秒级),注意,41位时间截不是存储当前时间的时间截,而是存储时间截的差值(当前时间截 - 开始时间截)
    13. * 得到的值),这里的的开始时间截,一般是我们的id生成器开始使用的时间,由我们程序来指定的(如下下面程序IdWorker类的startTime属性)。41位的时间截,可以使用69年,年T = (1L << 41) / (1000L * 60 * 60 * 24 * 365) = 69<br>
    14. * 10位的数据机器位,可以部署在1024个节点,包括5位datacenterId和5位workerId<br>
    15. * 12位序列,毫秒内的计数,12位的计数顺序号支持每个节点每毫秒(同一机器,同一时间截)产生4096个ID序号<br>
    16. * 加起来刚好64位,为一个Long型。<br>
    17. * SnowFlake的优点是,整体上按照时间自增排序,并且整个分布式系统内不会产生ID碰撞(由数据中心ID和机器ID作区分),并且效率较高,经测试,SnowFlake每秒能够产生26万ID左右。
    18. */
    19. @SuppressWarnings("all")
    20. public class SnowflakeIdWorker {
    21. // ==============================Fields===========================================
    22. /**
    23. * 开始时间截 (2015-01-01)
    24. */
    25. private final long twepoch = 1489111610226L;
    26. /**
    27. * 机器id所占的位数
    28. */
    29. private final long workerIdBits = 5L;
    30. /**
    31. * 数据标识id所占的位数
    32. */
    33. private final long dataCenterIdBits = 5L;
    34. /**
    35. * 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数)
    36. */
    37. private final long maxWorkerId = -1L ^ (-1L << workerIdBits);
    38. /**
    39. * 支持的最大数据标识id,结果是31
    40. */
    41. private final long maxDataCenterId = -1L ^ (-1L << dataCenterIdBits);
    42. /**
    43. * 序列在id中占的位数
    44. */
    45. private final long sequenceBits = 12L;
    46. /**
    47. * 机器ID向左移12位
    48. */
    49. private final long workerIdShift = sequenceBits;
    50. /**
    51. * 数据标识id向左移17位(12+5)
    52. */
    53. private final long dataCenterIdShift = sequenceBits + workerIdBits;
    54. /**
    55. * 时间截向左移22位(5+5+12)
    56. */
    57. private final long timestampLeftShift = sequenceBits + workerIdBits + dataCenterIdBits;
    58. /**
    59. * 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095)
    60. */
    61. private final long sequenceMask = -1L ^ (-1L << sequenceBits);
    62. /**
    63. * 工作机器ID(0~31)
    64. */
    65. private long workerId;
    66. /**
    67. * 数据中心ID(0~31)
    68. */
    69. private long dataCenterId;
    70. /**
    71. * 毫秒内序列(0~4095)
    72. */
    73. private long sequence = 0L;
    74. /**
    75. * 上次生成ID的时间截
    76. */
    77. private long lastTimestamp = -1L;
    78. private static SnowflakeIdWorker idWorker;
    79. static {
    80. idWorker = new SnowflakeIdWorker(getWorkId(), getDataCenterId());
    81. }
    82. //==============================Constructors=====================================
    83. /**
    84. * 构造函数
    85. *
    86. * @param workerId 工作ID (0~31)
    87. * @param dataCenterId 数据中心ID (0~31)
    88. */
    89. public SnowflakeIdWorker(long workerId, long dataCenterId) {
    90. if (workerId > maxWorkerId || workerId < 0) {
    91. throw new IllegalArgumentException(String.format("workerId can''t be greater than %d or less than 0", maxWorkerId));
    92. }
    93. if (dataCenterId > maxDataCenterId || dataCenterId < 0) {
    94. throw new IllegalArgumentException(String.format("dataCenterId can''t be greater than %d or less than 0", maxDataCenterId));
    95. }
    96. this.workerId = workerId;
    97. this.dataCenterId = dataCenterId;
    98. }
    99. // ==============================Methods==========================================
    100. /**
    101. * 获得下一个ID (该方法是线程安全的)
    102. *
    103. * @return SnowflakeId
    104. */
    105. public synchronized long nextId() {
    106. long timestamp = timeGen();
    107. //如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
    108. if (timestamp < lastTimestamp) {
    109. throw new RuntimeException(
    110. String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
    111. }
    112. //如果是同一时间生成的,则进行毫秒内序列
    113. if (lastTimestamp == timestamp) {
    114. sequence = (sequence + 1) & sequenceMask;
    115. //毫秒内序列溢出
    116. if (sequence == 0) {
    117. //阻塞到下一个毫秒,获得新的时间戳
    118. timestamp = tilNextMillis(lastTimestamp);
    119. }
    120. }
    121. //时间戳改变,毫秒内序列重置
    122. else {
    123. sequence = 0L;
    124. }
    125. //上次生成ID的时间截
    126. lastTimestamp = timestamp;
    127. //移位并通过或运算拼到一起组成64位的ID
    128. return ((timestamp - twepoch) << timestampLeftShift)
    129. | (dataCenterId << dataCenterIdShift)
    130. | (workerId << workerIdShift)
    131. | sequence;
    132. }
    133. /**
    134. * 阻塞到下一个毫秒,直到获得新的时间戳
    135. *
    136. * @param lastTimestamp 上次生成ID的时间截
    137. * @return 当前时间戳
    138. */
    139. protected long tilNextMillis(long lastTimestamp) {
    140. long timestamp = timeGen();
    141. while (timestamp <= lastTimestamp) {
    142. timestamp = timeGen();
    143. }
    144. return timestamp;
    145. }
    146. /**
    147. * 返回以毫秒为单位的当前时间
    148. *
    149. * @return 当前时间(毫秒)
    150. */
    151. protected long timeGen() {
    152. return System.currentTimeMillis();
    153. }
    154. private static Long getWorkId() {
    155. try {
    156. String hostAddress = Inet4Address.getLocalHost().getHostAddress();
    157. int[] ints = StringUtils.toCodePoints(hostAddress);
    158. int sums = 0;
    159. for (int b : ints) {
    160. sums += b;
    161. }
    162. return (long) (sums % 32);
    163. } catch (UnknownHostException e) {
    164. // 如果获取失败,则使用随机数备用
    165. return RandomUtils.nextLong(0, 31);
    166. }
    167. }
    168. private static Long getDataCenterId() {
    169. int[] ints = StringUtils.toCodePoints(SystemUtils.getHostName());
    170. int sums = 0;
    171. for (int i : ints) {
    172. sums += i;
    173. }
    174. return (long) (sums % 32);
    175. }
    176. /**
    177. * 静态工具类
    178. *
    179. * @return 唯一ID
    180. */
    181. public static Long generateId() {
    182. return idWorker.nextId();
    183. }
    184. }

    测试

     Long id = SnowflakeIdWorker.generateId();

    数据库主键生成的方法

  • 相关阅读:
    【软件测试从0到1】第四篇:测试分类
    做好测试计划和测试用例的工作的关键是什么?
    Android 系统启动 <zygote 进程> 笔记【2】
    IDEA -- bug笔记
    【C++】类
    uniapp前端样式
    dds:subscribe
    Prometheus-PushGateway自定义监控项
    【GAN小白入门】Semi-Supervised GAN 理论与实战
    Java8新特性--新的时间和日期API
  • 原文地址:https://blog.csdn.net/m0_56750901/article/details/125476595