简介

分布式id算法, 生成的id是一个long类型, java中long类型是8个字节, 64bit

image.png

  • 第1位占用1bit,其值始终是0,可看做是符号位不使用。
  • 第2位开始的41位是时间戳,41-bit位可表示2^41个数,每个数代表毫秒,那么雪花算法可用的时间年限是(1L<<41)/(1000L_3600_24*365)=69 年的时间。
  • 中间的10-bit位可表示机器数,即2^10 = 1024台机器,但是一般情况下我们不会部署这么台机器。如果我们对IDC(互联网数据中心)有需求,还可以将 10-bit 分 5-bit 给 IDC,分5-bit给工作机器。这样就可以表示32个IDC,每个IDC下可以有32台机器,具体的划分可以根据自身需求定义。
  • 最后12-bit位是自增序列,可表示2^12 = 4096个数。

另外,⼀切互联⽹公司也基于上述的⽅案封装了⼀些分布式ID⽣成器,⽐如滴滴的tinyid(基于数 据库实现)、百度的uidgenerator(基于SnowFlake)和美团的leaf(基于数据库和SnowFlake)

实现

  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. //获取当前时间戳如果等于上次时间戳
  60. //说明:还处在同一毫秒内,则在序列号加1;否则序列号赋值为0,从0开始。
  61. if (lastTimestamp == timestamp) { // 0 - 4095
  62. sequence = (sequence + 1) & sequenceMask;
  63. if (sequence == 0) {
  64. timestamp = tilNextMillis(lastTimestamp);
  65. }
  66. } else {
  67. sequence = 0;
  68. }
  69. //将上次时间戳值刷新
  70. lastTimestamp = timestamp;
  71. /**
  72. * 返回结果:
  73. * (timestamp - twepoch) << timestampLeftShift) 表示将时间戳减去初始时间戳,再左移相应位数
  74. * (datacenterId << datacenterIdShift) 表示将数据id左移相应位数
  75. * (workerId << workerIdShift) 表示将工作id左移相应位数
  76. * | 是按位或运算符,例如:x | y,只有当x,y都为0的时候结果才为0,其它情况结果都为1。
  77. * 因为个部分只有相应位上的值有意义,其它位上都是0,所以将各部分的值进行 | 运算就能得到最终拼接好的id
  78. */
  79. return ((timestamp - twepoch) << timestampLeftShift) |
  80. (datacenterId << datacenterIdShift) |
  81. (workerId << workerIdShift) |
  82. sequence;
  83. }
  84. //获取时间戳,并与上次时间戳比较
  85. private long tilNextMillis(long lastTimestamp) {
  86. long timestamp = timeGen();
  87. while (timestamp <= lastTimestamp) {
  88. timestamp = timeGen();
  89. }
  90. return timestamp;
  91. }
  92. //获取系统时间戳
  93. private long timeGen(){
  94. return System.currentTimeMillis();
  95. }
  96. public static void main(String[] args) {
  97. IdWorker worker = new IdWorker(21,10,0);
  98. for (int i = 0; i < 100; i++) {
  99. System.out.println(worker.nextId());
  100. }
  101. }
  102. }