https://github.com/dubby1994/light-id
动机
希望可以有一个容易部署,容易维护,原理简单(意味着不容易出问题),且性能还不错的分布式ID解决方案,没错,是方案,而不是方法。
ID组成
sign | sequence | work id |
---|---|---|
1 bit | 53 bit | 10 bit |
- sign : 固定1bit符号标识,即生成的ID为正数;
- sequence :
2^53
个取值,9007199254740992; - worker id : 给每个下游的数据源指定的唯一id。
架构图
底层可以使用MySQL或者Redis,client端需要一个配置文件,如:
{
"type": "Redis",
"providers": [
{
"id": 1,
"url": "redis://127.0.0.1:6379/0",
"namespace": "id_1"
},
{
"id": 2,
"url": "redis://127.0.0.1:6379/0",
"namespace": "id_2"
},
{
"id": 3,
"url": "redis://127.0.0.1:6379/0",
"namespace": "id_3"
}
],
"bufferSize": 1000,
"idleSize": 10,
"timeout": 10,
"checkInterval": 10
}
{
"type": "MySQL",
"providers": [
{
"id": 1,
"url": "jdbc:mysql://localhost:3306/light_id?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true&connectTimeout=60000&socketTimeout=100",
"namespace": "id_1",
"options": {
"username": "root",
"password": "123456"
}
},
{
"id": 2,
"url": "jdbc:mysql://localhost:3306/light_id?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true&connectTimeout=60000&socketTimeout=100",
"namespace": "id_2",
"options": {
"username": "root",
"password": "123456"
}
},
{
"id": 3,
"url": "jdbc:mysql://localhost:3306/light_id?useSSL=false&serverTimezone=UTC&allowPublicKeyRetrieval=true&connectTimeout=60000&socketTimeout=100",
"namespace": "id_3",
"options": {
"username": "root",
"password": "123456"
}
}
],
"bufferSize": 100,
"idleSize": 10,
"timeout": 50,
"checkInterval": 5
}
其中,namespace在MySQL中代表表名,表结构只需要有一个id字段,类型是BIGINT,自增主键就可以了;在Redis中代表key名。
client本地维护了一个buffer
,他会轮训各个数据源(MySQL/Redis)来获得一个自增数字num,举例:id=1
的redis incr返回x
,那么最后的到唯一UNIQUE_ID
计算公式为:
UNIQUE_ID = x << 10 | id
- 下游最多可以有
1024
个MySQL/Redis - 最多可以产生
2^53
个ID,这几乎可以满足任何场景了 - 其中如果有个别MySQL/Redis节点挂掉,会自动跳过
- 不会有时钟回拨的问题
- 理论上,如果想扩展,下游除了MySQL和Redis,可以支持任何可以提供一个id的服务作为数据源,比如百度的
uid-generator
。
使用
MySQL
ConfigFactory configFactory = new ConfigFactory();
GeneratorConfig generatorConfig = configFactory.getGeneratorConfig();
LightIDGenerator lightGenerator = new MySQLGenerator(generatorConfig);
long id = lightGenerator.nextID();
Redis
ConfigFactory configFactory = new ConfigFactory();
GeneratorConfig generatorConfig = configFactory.getGeneratorConfig();
LightIDGenerator lightGenerator = new RedisGenerator(generatorConfig);
long id = lightGenerator.nextID();
其中,默认会读取classpath下light.json
文件作为配置文件,可以自己传入一个json
格式的配置来初始化ConfigFactory
:
BufferedReader reader = new BufferedReader(new InputStreamReader(ConfigFactory.class.getClassLoader().getResourceAsStream("light_redis.json")));
String json = reader.lines().reduce((a, b) -> a + b).orElseThrow(() -> new IllegalStateException("load config error"));
reader.close();
ConfigFactory configFactory = new ConfigFactory(json);
建议
- 建议优先使用MySQL作为数据源,可靠性更高
- 一般使用分布式ID的场景是数据库也是分库分表,如果是8库16表,那可以在8库分别建一个id表,如
id_1
,id_2
……id_8
,这样如果id的生成都有压力,那插入实际业务数据肯定压力更大;如果数据库全挂了,那数据也插不进去了;最重要的是,这样几乎没有额外运维成本 - 建议每个场景维护自己的id数据源,不要共用;资源隔离是最安全,最稳妥的
- 如果使用Redis,一定要开启持久化,否则一旦重启会导致id重复(即便如此,重启也有可能重复)
- 如果使用MySQL,在满足业务需求的情况下去,可以考虑开启
innodb_autoinc_lock_mode = 2