分布式id生成器

  1. /**
  2. * Twitter_Snowflake<br>
  3. * SnowFlake的结构如下(每部分用-分开):<br>
  4. * 0 - 0000000000 0000000000 0000000000 0000000000 0 - 00000 - 00000 - 000000000000 <br>
  5. * 1位标识,由于long基本类型在Java中是带符号的,最高位是符号位,正数是0,负数是1,所以id一般是正数,最高位是0<br>
  6. * 41位时间截(毫秒级),注意,41位时间截不是存储当前时间的时间截,而是存储时间截的差值(当前时间截 - 开始时间截)
  7. * 得到的值),这里的的开始时间截,一般是我们的id生成器开始使用的时间,由我们程序来指定的(如下下面程序IdWorker类的startTime属性)。
  8. * 41位的时间截,可以使用69年,年T = (1L << 41) / (1000L * 60 * 60 * 24 * 365) = 69<br>
  9. * 10位的数据机器位,可以部署在1024个节点,包括5位datacenterId和5位workerId<br>
  10. * 12位序列,毫秒内的计数,12位的计数顺序号支持每个节点每毫秒(同一机器,同一时间截)产生4096个ID序号<br>
  11. * 加起来刚好64位,为一个Long型。<br>
  12. * SnowFlake的优点是,整体上按照时间自增排序,并且整个分布式系统内不会产生ID碰撞(由数据中心ID和机器ID作区分),并且效率较高,
  13. * 经测试,SnowFlake每秒能够产生26万ID左右。
  14. */
  15. public class SnowflakeIdWorker {
  16. // ==============================Fields===========================================
  17. /** 开始时间截 (2015-01-01) */
  18. private final long twepoch = 1420041600000L;
  19. /** 机器id所占的位数 */
  20. private final long workerIdBits = 5L;
  21. /** 数据标识id所占的位数 */
  22. private final long datacenterIdBits = 5L;
  23. /** 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数) */
  24. private final long maxWorkerId = -1L ^ (-1L << workerIdBits);
  25. /** 支持的最大数据标识id,结果是31 */
  26. private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
  27. /** 序列在id中占的位数 */
  28. private final long sequenceBits = 12L;
  29. /** 机器ID向左移12位 */
  30. private final long workerIdShift = sequenceBits;
  31. /** 数据标识id向左移17位(12+5) */
  32. private final long datacenterIdShift = sequenceBits + workerIdBits;
  33. /** 时间截向左移22位(5+5+12) */
  34. private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
  35. /** 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095) */
  36. private final long sequenceMask = -1L ^ (-1L << sequenceBits);
  37. /** 工作机器ID(0~31) */
  38. private long workerId;
  39. /** 数据中心ID(0~31) */
  40. private long datacenterId;
  41. /** 毫秒内序列(0~4095) */
  42. private long sequence = 0L;
  43. /** 上次生成ID的时间截 */
  44. private long lastTimestamp = -1L;
  45. //==============================Constructors=====================================
  46. /**
  47. * 构造函数
  48. * @param workerId 工作ID (0~31)
  49. * @param datacenterId 数据中心ID (0~31)
  50. */
  51. public SnowflakeIdWorker(long workerId, long datacenterId) {
  52. if (workerId > maxWorkerId || workerId < 0) {
  53. throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
  54. }
  55. if (datacenterId > maxDatacenterId || datacenterId < 0) {
  56. throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId));
  57. }
  58. this.workerId = workerId;
  59. this.datacenterId = datacenterId;
  60. }
  61. // ==============================Methods==========================================
  62. /**
  63. * 获得下一个ID (该方法是线程安全的)
  64. * @return SnowflakeId
  65. */
  66. public synchronized long nextId() {
  67. long timestamp = timeGen();
  68. //如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
  69. if (timestamp < lastTimestamp) {
  70. throw new RuntimeException(
  71. String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
  72. }
  73. //如果是同一时间生成的,则进行毫秒内序列
  74. if (lastTimestamp == timestamp) {
  75. sequence = (sequence + 1) & sequenceMask;
  76. //毫秒内序列溢出
  77. if (sequence == 0) {
  78. //阻塞到下一个毫秒,获得新的时间戳
  79. timestamp = tilNextMillis(lastTimestamp);
  80. }
  81. }
  82. //时间戳改变,毫秒内序列重置
  83. else {
  84. sequence = 0L;
  85. }
  86. //上次生成ID的时间截
  87. lastTimestamp = timestamp;
  88. //移位并通过或运算拼到一起组成64位的ID
  89. return ((timestamp - twepoch) << timestampLeftShift)
  90. | (datacenterId << datacenterIdShift)
  91. | (workerId << workerIdShift)
  92. | sequence;
  93. }
  94. /**
  95. * 阻塞到下一个毫秒,直到获得新的时间戳
  96. * @param lastTimestamp 上次生成ID的时间截
  97. * @return 当前时间戳
  98. */
  99. protected long tilNextMillis(long lastTimestamp) {
  100. long timestamp = timeGen();
  101. while (timestamp <= lastTimestamp) {
  102. timestamp = timeGen();
  103. }
  104. return timestamp;
  105. }
  106. /**
  107. * 返回以毫秒为单位的当前时间
  108. * @return 当前时间(毫秒)
  109. */
  110. protected long timeGen() {
  111. return System.currentTimeMillis();
  112. }
  113. //==============================Test=============================================
  114. /** 测试 */
  115. public static void main(String[] args) {
  116. SnowflakeIdWorker idWorker = new SnowflakeIdWorker(0, 0);
  117. for (int i = 0; i < 1000; i++) {
  118. long id = idWorker.nextId();
  119. System.out.println(Long.toBinaryString(id));
  120. System.out.println(id);
  121. }
  122. }
  123. }

参考

分布式全局唯一ID生成策略