分布式id生成算法的有很多种,Twitter的SnowFlake就是其中经典的一种。

1. 算法原理

SnowFlake算法生成id的结果是一个64bit大小的整数,它的结构如下图:
雪花算法 - 图1

  1. **1bit**,不用,因为二进制中最高位是符号位,1表示负数,0表示正数。生成的id一般都是用整数,所以最高位固定为0。
  2. **41bit-时间戳**,用来记录时间戳,毫秒级。
      • 41位可以表示 个数字,
      • 如果只用来表示正整数(计算机中正数包含0),可以表示的数值范围是:0 至 ,减1是因为可表示的数值范围是从0开始算的,而不是1。
      • 也就是说41位可以表示 个毫秒的值,转化成单位年则是
  3. **10bit-工作机器id**,用来记录工作机器id。- 可以部署在 雪花算法 - 图2 个节点,包括5位datacenterId和5位workerId- 5位(bit)可以表示的最大正整数是 雪花算法 - 图3 ,即可以用0、1、2、3、….31这32个数字,来表示不同的datecenterId或workerId
  4. **12bit-序列号**,序列号,用来记录同毫秒内产生的不同id。- 12位(bit)可以表示的最大正整数是雪花算法 - 图4
  5. 即可以用0、1、2、3、….4094这4095个数字,来表示同一机器同一时间截(毫秒)内产生的4095个ID序号。

由于在Java中64bit的整数是long类型,所以在Java中SnowFlake算法生成的id就是long来存储的。

SnowFlake可以保证:

  1. 所有生成的id按时间趋势递增
  2. 整个分布式系统内不会产生重复id(因为有datacenterId和workerId来做区分)

    2. 算法实现(Java)

    Twitter官方给出的算法实现 是用Scala写的,这里不做分析,可自行查看。 ```java public class IdWorker{

    //下面两个每个5位,加起来就是10位的工作机器id private long workerId; //工作id private long datacenterId; //数据id //12位的序列号 private long sequence;

    public IdWorker(long workerId, long datacenterId, long sequence){

    1. // sanity check for workerId
    2. if (workerId > maxWorkerId || workerId < 0) {
    3. throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0",maxWorkerId));
    4. }
    5. if (datacenterId > maxDatacenterId || datacenterId < 0) {
    6. throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0",maxDatacenterId));
    7. }
    8. System.out.printf("worker starting. timestamp left shift %d, datacenter id bits %d, worker id bits %d, sequence bits %d, workerid %d",
    9. timestampLeftShift, datacenterIdBits, workerIdBits, sequenceBits, workerId);
    10. this.workerId = workerId;
    11. this.datacenterId = datacenterId;
    12. this.sequence = sequence;

    }

    //初始时间戳 private long twepoch = 1288834974657L;

    //长度为5位 private long workerIdBits = 5L; private long datacenterIdBits = 5L; //最大值 private long maxWorkerId = -1L ^ (-1L << workerIdBits); private long maxDatacenterId = -1L ^ (-1L << datacenterIdBits); //序列号id长度 private long sequenceBits = 12L; //序列号最大值 private long sequenceMask = -1L ^ (-1L << sequenceBits);

    //工作id需要左移的位数,12位 private long workerIdShift = sequenceBits; //数据id需要左移位数 12+5=17位 private long datacenterIdShift = sequenceBits + workerIdBits; //时间戳需要左移位数 12+5+5=22位 private long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;

    //上次时间戳,初始值为负数 private long lastTimestamp = -1L;

    public long getWorkerId(){

    1. return workerId;

    }

    public long getDatacenterId(){

    1. return datacenterId;

    }

    public long getTimestamp(){

    1. return System.currentTimeMillis();

    }

    //下一个ID生成算法 public synchronized long nextId() {

    1. long timestamp = timeGen();
    2. //获取当前时间戳如果小于上次时间戳,则表示时间戳获取出现异常
    3. if (timestamp < lastTimestamp) {
    4. System.err.printf("clock is moving backwards. Rejecting requests until %d.", lastTimestamp);
    5. throw new RuntimeException(String.format("Clock moved backwards. Refusing to generate id for %d milliseconds",
    6. lastTimestamp - timestamp));
    7. }
    8. //获取当前时间戳如果等于上次时间戳(同一毫秒内),则在序列号加一;否则序列号赋值为0,从0开始。
    9. if (lastTimestamp == timestamp) {
    10. sequence = (sequence + 1) & sequenceMask;
    11. if (sequence == 0) {
    12. timestamp = tilNextMillis(lastTimestamp);
    13. }
    14. } else {
    15. sequence = 0;
    16. }
    17. //将上次时间戳值刷新
    18. lastTimestamp = timestamp;
    19. /**
    20. * 返回结果:
    21. * (timestamp - twepoch) << timestampLeftShift) 表示将时间戳减去初始时间戳,再左移相应位数
    22. * (datacenterId << datacenterIdShift) 表示将数据id左移相应位数
    23. * (workerId << workerIdShift) 表示将工作id左移相应位数
    24. * | 是按位或运算符,例如:x | y,只有当x,y都为0的时候结果才为0,其它情况结果都为1。
    25. * 因为个部分只有相应位上的值有意义,其它位上都是0,所以将各部分的值进行 | 运算就能得到最终拼接好的id
    26. */
    27. return ((timestamp - twepoch) << timestampLeftShift) |
    28. (datacenterId << datacenterIdShift) |
    29. (workerId << workerIdShift) |
    30. sequence;

    }

    //获取时间戳,并与上次时间戳比较 private long tilNextMillis(long lastTimestamp) {

    1. long timestamp = timeGen();
    2. while (timestamp <= lastTimestamp) {
    3. timestamp = timeGen();
    4. }
    5. return timestamp;

    }

    //获取系统时间戳 private long timeGen(){

    1. return System.currentTimeMillis();

    }

    //———————-测试———————- public static void main(String[] args) {

    1. IdWorker worker = new IdWorker(1,1,1);
    2. for (int i = 0; i < 30; i++) {
    3. System.out.println(worker.nextId());
    4. }

    }

} ``` 算法中大量使用位运算,这里不对位运算做过多解释,代码的详细解释参考煲煲菜的博客

3. 雪花算法优缺点

SnowFlake算法的优点:

  1. 高性能高可用:生成时不依赖于数据库,完全在内存中生成。
  2. 容量大:每秒中能生成数百万的自增ID。
  3. ID自增:存入数据库中,索引效率高。

SnowFlake算法的缺点:

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