MCPcopy Index your code
hub / github.com/Meituan-Dianping/Leaf

github.com/Meituan-Dianping/Leaf @main sqlite

repository ↗ · DeepWiki ↗
197 symbols 385 edges 33 files 7 documented · 4%
README

Leaf

There are no two identical leaves in the world.

​ — Leibnitz

中文文档 | English Document

Introduction

Leaf refers to some common ID generation schemes in the industry, including redis, UUID, snowflake, etc. Each of the above approaches has its own problems, so we decided to implement a set of distributed ID generation services to meet the requirements. At present, Leaf covers Meituan review company's internal finance, catering, takeaway, hotel travel, cat's eye movie and many other business lines. On the basis of 4C8G VM, through the company RPC method, QPS pressure test results are nearly 5w/s, TP999 1ms.

You can use it to encapsulate a distributed unique id distribution center in a service-oriented SOA architecture as the id distribution provider for all applications

Quick Start

Leaf Server

Leaf provides an HTTP service based on spring boot to get the id

run Leaf Server

build
git clone git@github.com:Meituan-Dianping/Leaf.git
cd leaf
mvn clean install -DskipTests
cd leaf-server
run
maven
mvn spring-boot:run

or

shell command
sh deploy/run.sh
test
#segment
curl http://localhost:8080/api/segment/get/leaf-segment-test
#snowflake
curl http://localhost:8080/api/snowflake/get/test

Configuration

Leaf provides two ways to generate ids (segment mode and snowflake mode), which you can turn on at the same time or specify one way to turn on (both are off by default).

Leaf Server configuration is in the leaf-server/src/main/resources/leaf.properties

configuration meaning default
leaf.name leaf service name
leaf.segment.enable whether segment mode is enabled false
leaf.jdbc.url mysql url
leaf.jdbc.username mysql username
leaf.jdbc.password mysql password
leaf.snowflake.enable whether snowflake mode is enabled false
leaf.snowflake.zk.address zk address under snowflake mode
leaf.snowflake.port service registration port under snowflake mode

Segment mode

In order to use segment mode, you need to create DB table first, and configure leaf.jdbc.url, leaf.jdbc.username, leaf.jdbc.password

If you do not want use it, just configure leaf.segment.enable=false to disable it.

CREATE DATABASE leaf
CREATE TABLE `leaf_alloc` (
  `biz_tag` varchar(128)  NOT NULL DEFAULT '', -- your biz unique name
  `max_id` bigint(20) NOT NULL DEFAULT '1',
  `step` int(11) NOT NULL,
  `description` varchar(256)  DEFAULT NULL,
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`biz_tag`)
) ENGINE=InnoDB;

insert into leaf_alloc(biz_tag, max_id, step, description) values('leaf-segment-test', 1, 2000, 'Test leaf Segment Mode Get Id')

Snowflake mode

The algorithm is taken from twitter's open-source snowflake algorithm.

If you do not want to use it, just configure leaf.snowflake.enable=false to disable it.

Configure the zookeeper address

leaf.snowflake.zk.address=${address}
leaf.snowflake.enable=true
leaf.snowflake.port=${port}

configure leaf.snowflake.zk.address in the leaf.properties, and configure the leaf service listen port leaf.snowflake.port.

monitor page

segment mode: http://localhost:8080/cache

Leaf Core

Of course, in order to pursue higher performance, you need to deploy the Leaf service through RPC Server, which only needs to introduce the leaf-core package and encapsulate the API that generates the ID into the specified RPC framework.

Attention

Note that leaf's current IP acquisition logic in the case of snowflake mode takes the first network card IP directly (especially for services that change IP) to avoid wasting the workId

Extension points exported contracts — how you extend this code

IDGen (Interface)
(no doc) [6 implementers]
leaf-core/src/main/java/com/sankuai/inf/leaf/IDGen.java
IDAllocDao (Interface)
(no doc) [2 implementers]
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/dao/IDAllocDao.java
IDAllocMapper (Interface)
(no doc)
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/dao/IDAllocMapper.java

Core symbols most depended-on inside this repo

get
called by 16
leaf-core/src/main/java/com/sankuai/inf/leaf/IDGen.java
getSegments
called by 7
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/SegmentBuffer.java
getValue
called by 7
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/Segment.java
getCurrent
called by 6
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/SegmentBuffer.java
getProperties
called by 6
leaf-core/src/main/java/com/sankuai/inf/leaf/common/PropertyFactory.java
init
called by 5
leaf-core/src/main/java/com/sankuai/inf/leaf/IDGen.java
getStep
called by 5
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/LeafAlloc.java
getMax
called by 5
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/Segment.java

Shape

Method 162
Class 31
Interface 3
Enum 1

Languages

Java100%

Modules by API surface

leaf-core/src/main/java/com/sankuai/inf/leaf/snowflake/SnowflakeZookeeperHolder.java28 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/SegmentBuffer.java23 symbols
leaf-server/src/main/java/com/sankuai/inf/leaf/server/model/SegmentBufferView.java21 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/SegmentIDGenImpl.java17 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/Segment.java11 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/model/LeafAlloc.java9 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/snowflake/SnowflakeIDGenImpl.java7 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/common/Result.java7 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/dao/impl/IDAllocDaoImpl.java6 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/dao/IDAllocMapper.java6 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/common/CheckVO.java6 symbols
leaf-core/src/main/java/com/sankuai/inf/leaf/segment/dao/IDAllocDao.java5 symbols

Dependencies from manifests, versioned

com.alibaba:druid
com.sankuai.inf.leaf:leaf-core1.0.1 · 1×
junit:junit
mysql:mysql-connector-java
org.apache.curator:curator-recipes
org.apache.logging.log4j:log4j-api
org.apache.logging.log4j:log4j-core
org.apache.logging.log4j:log4j-slf4j-impl
org.mybatis:mybatis
org.mybatis:mybatis-spring

For agents

$ claude mcp add Leaf \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact