二进制中最高位为1的是负数,而在随机ID中,只能为正数,故该位只能为0,无意义。
共41bit,是当前时间戳转换为二进制而来的。可以使用69年:year = (1L << 41) / (1000L * 60 * 60 * 24 * 365) = 69
共10bit,是当前机器(服务器)的ID,其二进制数为210即1024,所以使用雪花算法的服务最多可以同时部署在1024台服务器上。需要注意的是这里10位中的5位是给机房的,5位是给机器(服务器)的,也就是一个雪花算法服务最多能部署在25个机房,每个机房最多有2^5个机器(服务器)。
共12bit,是毫秒内的序列号,即统一毫秒内生成的第几个ID,其二进制数为2^12即4096,所以同一雪花算法服务在同一毫秒内可生成4096个序列号ID,如果超出了,就只能等待下一毫秒再生成。
将以上四个部分拼接起来做位或运算,就组成了一个64位的全局唯一ID。
1、由于时间戳是雪花算法的组成部分,所以同一服务中生成的雪花算法ID呈现递增趋势。
2、在1024台服务器的分布式系统内,不会出现ID相同的情况。
3、1毫秒产生4096个ID,那么1秒就能产生4096000个ID,可见雪花算法的效率之高。
业内的方案中对以上三个问题有这么几种处理,但是都没有彻底解决:
该问题在业内都没有处理,也就是说如果采用雪花算法,则必定会存在该问题,但是该问题也只有需要大量的业务机器共享的场景才会出现,这种情况,采用客户端 双Buffer + DB 这种非雪花算法的方案也未尝不可。
1)、在实体类中的id上加入如下配置,指定类型为id_worker
@TableId(value = "id",type = IdType.ID_WORKER)
private Long id;
2)、在application.yml文件中配置数据中心id和机器id
mybatis-plus:
mapper-locations: classpath*:mapper/*.xml
# 设置别名包扫描路径,通过该属性可以给包中的类注册别名
type-aliases-package: com.ctc.entity
global-config:
datacenter-id: 1 #数据中心(机房)ID (取值范围:0-31)
worker-id: 1 #机器(服务器)ID (取值范围:0-31)
1)编码
public class SnowflakeIdWorker {
// ==============================Fields===========================================//
private final long twepoch = 1420041600000L;
/** 机器id所占的位数 */
private final long workerIdBits = 5L;
/** 数据标识id所占的位数 */
private final long datacenterIdBits = 5L;
/** 支持的最大机器id,结果是31 (这个移位算法可以很快的计算出几位二进制数所能表示的最大十进制数) */
private final long maxWorkerId = -1L ^ (-1L << workerIdBits);
/** 支持的最大数据标识id,结果是31 */
private final long maxDatacenterId = -1L ^ (-1L << datacenterIdBits);
/** 序列在id中占的位数 */
private final long sequenceBits = 12L;
/** 机器ID向左移12位 */
private final long workerIdShift = sequenceBits;
/** 数据标识id向左移17位(12+5) */
private final long datacenterIdShift = sequenceBits + workerIdBits;
/** 时间截向左移22位(5+5+12) */
private final long timestampLeftShift = sequenceBits + workerIdBits + datacenterIdBits;
/** 生成序列的掩码,这里为4095 (0b111111111111=0xfff=4095) */
private final long sequenceMask = -1L ^ (-1L << sequenceBits);
/** 工作机器ID(0~31) */
private long workerId;
/** 数据中心ID(0~31) */
private long datacenterId;
/** 毫秒内序列(0~4095) */
private long sequence = 0L;
/** 上次生成ID的时间截 */
private long lastTimestamp = -1L;
//==============================Constructors=====================================//
/**
* 构造函数
* @param workerId 工作ID (0~31)
*/
public SnowflakeIdWorker(long workerId) {
if (workerId > maxWorkerId || workerId < 0) {
throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
}
this.workerId = workerId;
this.datacenterId = 1;
}
/**
* 构造函数
* @param workerId 工作ID (0~31)
* @param datacenterId 数据中心ID (0~31)
*/
public SnowflakeIdWorker(long workerId, long datacenterId) {
if (workerId > maxWorkerId || workerId < 0) {
throw new IllegalArgumentException(String.format("worker Id can't be greater than %d or less than 0", maxWorkerId));
}
if (datacenterId > maxDatacenterId || datacenterId < 0) {
throw new IllegalArgumentException(String.format("datacenter Id can't be greater than %d or less than 0", maxDatacenterId));
}
this.workerId = workerId;
this.datacenterId = datacenterId;
}
// ==============================Methods==========================================//
/**
* 获得下一个ID (该方法是线程安全的)
* @return SnowflakeId
*/
public synchronized long nextId() {
long timestamp = timeGen();
//如果当前时间小于上一次ID生成的时间戳,说明系统时钟回退过这个时候应当抛出异常
if (timestamp < lastTimestamp) {
throw new RuntimeException(
String.format("Clock moved backwards. Refusing to generate id for %d milliseconds", lastTimestamp - timestamp));
}
//如果是同一时间生成的,则进行毫秒内序列
if (lastTimestamp == timestamp) {
sequence = (sequence + 1) & sequenceMask;
//毫秒内序列溢出
if (sequence == 0) {
//阻塞到下一个毫秒,获得新的时间戳
timestamp = tilNextMillis(lastTimestamp);
}
}
//时间戳改变,毫秒内序列重置
else {
sequence = 0L;
}
//上次生成ID的时间截
lastTimestamp = timestamp;
//移位并通过或运算拼到一起组成64位的ID
return ((timestamp - twepoch) << timestampLeftShift)
| (datacenterId << datacenterIdShift)
| (workerId << workerIdShift)
| sequence;
}
/**
* 阻塞到下一个毫秒,直到获得新的时间戳
* @param lastTimestamp 上次生成ID的时间截
* @return 当前时间戳
*/
protected long tilNextMillis(long lastTimestamp) {
long timestamp = timeGen();
while (timestamp <= lastTimestamp) {
timestamp = timeGen();
}
return timestamp;
}
/**
* 返回以毫秒为单位的当前时间
* @return 当前时间(毫秒)
*/
protected long timeGen() {
return System.currentTimeMillis();
}
}
2、测试
public static void main(String[] args) {
SnowflakeIdWorker idWorker = new SnowflakeIdWorker(1, 1);
for (int i = 0; i < 20; i++) {
long id = idWorker.nextId();
System.out.println(id+"--------"+Long.toBinaryString(id));
}
}
3、结果
647824078551519232--------100011111101100010001001000100101111000000100001000000000000
647824078551519233--------100011111101100010001001000100101111000000100001000000000001
647824078551519234--------100011111101100010001001000100101111000000100001000000000010
647824078551519235--------100011111101100010001001000100101111000000100001000000000011
647824078551519236--------100011111101100010001001000100101111000000100001000000000100
647824078555713536--------100011111101100010001001000100101111010000100001000000000000
647824078555713537--------100011111101100010001001000100101111010000100001000000000001
647824078555713538--------100011111101100010001001000100101111010000100001000000000010
647824078555713539--------100011111101100010001001000100101111010000100001000000000011
647824078555713540--------100011111101100010001001000100101111010000100001000000000100
647824078555713541--------100011111101100010001001000100101111010000100001000000000101
647824078555713542--------100011111101100010001001000100101111010000100001000000000110
647824078555713543--------100011111101100010001001000100101111010000100001000000000111
647824078555713544--------100011111101100010001001000100101111010000100001000000001000
647824078555713545--------100011111101100010001001000100101111010000100001000000001001
647824078555713546--------100011111101100010001001000100101111010000100001000000001010
647824078559907840--------100011111101100010001001000100101111100000100001000000000000
647824078559907841--------100011111101100010001001000100101111100000100001000000000001
647824078559907842--------100011111101100010001001000100101111100000100001000000000010
647824078559907843--------100011111101100010001001000100101111100000100001000000000011