终究不过一场梦 發表於 2016-2-27 21:35:00

分布式系统唯一ID生成方案汇总

<p>系统唯一ID是我们在设计一个系统的时候常常会遇见的问题,也常常为这个问题而纠结。生成ID的方法有很多,适应不同的场景、需求以及性能要求。所以有些比较复杂的系统会有多个ID生成的策略。下面就介绍一些常见的ID生成策略。</p>
<p align="left"><strong><span style="text-decoration: underline">1. 数据库自增长序列或字段</span></strong></p>
<p>最常见的方式。利用数据库,全数据库唯一。</p>
<p>优点:</p>
<p>1)简单,代码方便,性能可以接受。</p>
<p>2)数字ID天然排序,对分页或者需要排序的结果很有帮助。</p>
<p>&nbsp;</p>
<p>缺点:</p>
<p>1)不同数据库语法和实现不同,数据库迁移的时候或多数据库版本支持的时候需要处理。</p>
<p>2)在单个数据库或读写分离或一主多从的情况下,只有一个主库可以生成。有单点故障的风险。</p>
<p>3)在性能达不到要求的情况下,比较难于扩展。(不适用于海量高并发)</p>
<p>4)如果遇见多个系统需要合并或者涉及到数据迁移会相当痛苦。</p>
<p>5)分表分库的时候会有麻烦。</p>
<p>6)并非一定连续,类似MySQL,当生成新ID的事务回滚,那么后续的事务也不会再用这个ID了。这个在性能和连续性的折中。如果为了保证连续,必须要在事务结束后才能生成ID,那性能就会出现问题。</p>
<p>7)在分布式数据库中,如果采用了自增主键的话,有可能会带来尾部热点。分布式数据库常常使用range的分区方式,在大量新增记录的时候,IO会集中在一个分区上,造成热点数据。</p>
<p>优化方案:</p>
<p>1)针对主库单点,如果有多个Master库,则每个Master库设置的起始数字不一样,步长一样,可以是Master的个数。比如:Master1 生成的是 1,4,7,10,Master2生成的是2,5,8,11 Master3生成的是 3,6,9,12。这样就可以有效生成集群中的唯一ID,也可以大大降低ID生成数据库操作的负载。</p>
<p>&nbsp;</p>
<p align="left"><strong><span style="text-decoration: underline">2. UUID</span></strong></p>
<p>常见的方式。可以利用数据库也可以利用程序生成,一般来说全球唯一。UUID是由32个的16进制数字组成,所以每个UUID的长度是128位(16^32 = 2^128)。UUID作为一种广泛使用标准,有多个实现版本,影响它的因素包括时间、网卡MAC地址、自定义Namesapce等等。</p>
<p>优点:</p>
<p>1)简单,代码方便。</p>
<p>2)生成ID性能非常好,基本不会有性能问题。</p>
<p>3)全球唯一,在遇见数据迁移,系统数据合并,或者数据库变更等情况下,可以从容应对。</p>
<p>&nbsp;</p>
<p>缺点:</p>
<p>1)没有排序,无法保证趋势递增。</p>
<p>2)UUID往往是使用字符串存储,查询的效率比较低。</p>
<p>3)存储空间比较大,如果是海量数据库,就需要考虑存储量的问题。</p>
<p>4)传输数据量大</p>
<p>5)不可读。</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">3. UUID的变种</span></strong></p>
<p>1)为了解决UUID不可读,可以使用UUID to Int64的方法。及</p>
<div class="cnblogs_code" style="background-color: rgba(245, 245, 245, 1); border: 1px solid rgba(204, 204, 204, 1); padding: 5px">
<pre><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;summary&gt;</span>
<span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> 根据GUID获取唯一数字序列
</span><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;/summary&gt;</span>
<span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> GuidToInt64()
{
    </span><span style="color: rgba(0, 0, 255, 1)">byte</span>[] bytes =<span style="color: rgba(0, 0, 0, 1)"> Guid.NewGuid().ToByteArray();
    </span><span style="color: rgba(0, 0, 255, 1)">return</span> BitConverter.ToInt64(bytes, <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">);
}</span></pre>
</div>
<pre class="brush: csharp; auto-links: true; collapse: false; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: true; tab-size: 4; toolbar: true;">&nbsp;</pre>
<p>2)为了解决UUID无序的问题,NHibernate在其主键生成方式中提供了Comb算法(combined guid/timestamp)。保留GUID的10个字节,用另6个字节表示GUID生成的时间(DateTime)。</p>
<div class="cnblogs_code" style="background-color: rgba(245, 245, 245, 1); border: 1px solid rgba(204, 204, 204, 1); padding: 5px">
<pre><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;summary&gt;</span>
<span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> Generate a new </span><span style="color: rgba(128, 128, 128, 1)">&lt;see cref="Guid"/&gt;</span><span style="color: rgba(0, 128, 0, 1)"> using the comb algorithm.
</span><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;/summary&gt;</span>
<span style="color: rgba(0, 0, 255, 1)">private</span><span style="color: rgba(0, 0, 0, 1)"> Guid GenerateComb()
{
    </span><span style="color: rgba(0, 0, 255, 1)">byte</span>[] guidArray =<span style="color: rgba(0, 0, 0, 1)"> Guid.NewGuid().ToByteArray();

    DateTime baseDate </span>= <span style="color: rgba(0, 0, 255, 1)">new</span> DateTime(<span style="color: rgba(128, 0, 128, 1)">1900</span>, <span style="color: rgba(128, 0, 128, 1)">1</span>, <span style="color: rgba(128, 0, 128, 1)">1</span><span style="color: rgba(0, 0, 0, 1)">);
    DateTime now </span>=<span style="color: rgba(0, 0, 0, 1)"> DateTime.Now;

    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> Get the days and milliseconds which will be used to build   
    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)">the byte string    </span>
    TimeSpan days = <span style="color: rgba(0, 0, 255, 1)">new</span> TimeSpan(now.Ticks -<span style="color: rgba(0, 0, 0, 1)"> baseDate.Ticks);
    TimeSpan msecs </span>=<span style="color: rgba(0, 0, 0, 1)"> now.TimeOfDay;

    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> Convert to a byte array      
    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> Note that SQL Server is accurate to 1/300th of a   
    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> millisecond so we divide by 3.333333    </span>
    <span style="color: rgba(0, 0, 255, 1)">byte</span>[] daysArray =<span style="color: rgba(0, 0, 0, 1)"> BitConverter.GetBytes(days.Days);
    </span><span style="color: rgba(0, 0, 255, 1)">byte</span>[] msecsArray = BitConverter.GetBytes((<span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)">)
      (msecs.TotalMilliseconds </span>/ <span style="color: rgba(128, 0, 128, 1)">3.333333</span><span style="color: rgba(0, 0, 0, 1)">));

    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> Reverse the bytes to match SQL Servers ordering    </span>
<span style="color: rgba(0, 0, 0, 1)">    Array.Reverse(daysArray);
    Array.Reverse(msecsArray);

    </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> Copy the bytes into the guid    </span>
    Array.Copy(daysArray, daysArray.Length - <span style="color: rgba(128, 0, 128, 1)">2</span><span style="color: rgba(0, 0, 0, 1)">, guidArray,
      guidArray.Length </span>- <span style="color: rgba(128, 0, 128, 1)">6</span>, <span style="color: rgba(128, 0, 128, 1)">2</span><span style="color: rgba(0, 0, 0, 1)">);
    Array.Copy(msecsArray, msecsArray.Length </span>- <span style="color: rgba(128, 0, 128, 1)">4</span><span style="color: rgba(0, 0, 0, 1)">, guidArray,
      guidArray.Length </span>- <span style="color: rgba(128, 0, 128, 1)">4</span>, <span style="color: rgba(128, 0, 128, 1)">4</span><span style="color: rgba(0, 0, 0, 1)">);

    </span><span style="color: rgba(0, 0, 255, 1)">return</span> <span style="color: rgba(0, 0, 255, 1)">new</span><span style="color: rgba(0, 0, 0, 1)"> Guid(guidArray);
}</span></pre>
</div>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; highlight: ; html-script: true; light: true; ruler: true; smart-tabs: true; tab-size: 4; toolbar: true;">&nbsp;</pre>
<p>用上面的算法测试一下,得到如下的结果:作为比较,前面3个是使用COMB算法得出的结果,最后12个字符串是时间序(统一毫秒生成的3个UUID),过段时间如果再次生成,则12个字符串会比图示的要大。后面3个是直接生成的GUID。</p>
<p><img src="https://images2015.cnblogs.com/blog/15700/201602/15700-20160227213048721-177386520.png" alt="ODX}_`4N5X$F93OAS~`8Z)C" width="318" height="114" title="ODX}_`4N5X$F93OAS~`8Z)C" border="0" style="background-image: none; padding-left: 0; padding-right: 0; display: inline; padding-top: 0; border-width: 0"></p>
<p>如果想把时间序放在前面,可以生成后改变12个字符串的位置,也可以修改算法类的最后两个Array.Copy。</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">4. Redis生成ID</span></strong></p>
<p>当使用数据库来生成ID性能不够要求的时候,我们可以尝试使用Redis来生成ID。这主要依赖于Redis是单线程的,所以也可以用生成全局唯一的ID。可以用Redis的原子操作 INCR和INCRBY来实现。</p>
<p>可以使用Redis集群来获取更高的吞吐量。假如一个集群中有5台Redis。可以初始化每台Redis的值分别是1,2,3,4,5,然后步长都是5。各个Redis生成的ID为:</p>
<p>A:1,6,11,16,21</p>
<p>B:2,7,12,17,22</p>
<p>C:3,8,13,18,23</p>
<p>D:4,9,14,19,24</p>
<p>E:5,10,15,20,25</p>
<p>这个,随便负载到哪个机确定好,未来很难做修改。但是3-5台服务器基本能够满足器上,都可以获得不同的ID。但是步长和初始值一定需要事先需要了。使用Redis集群也可以方式单点故障的问题。</p>
<p>另外,比较适合使用Redis来生成每天从0开始的流水号。比如订单号=日期+当日自增长号。可以每天在Redis中生成一个Key,使用INCR进行累加。</p>
<p>&nbsp;</p>
<p>优点:</p>
<p>1)不依赖于数据库,灵活方便,且性能优于数据库。</p>
<p>2)数字ID天然排序,对分页或者需要排序的结果很有帮助。</p>
<p>缺点:</p>
<p>1)如果系统中没有Redis,还需要引入新的组件,增加系统复杂度。</p>
<p>2)需要编码和配置的工作量比较大。</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">5. Twitter的snowflake算法</span></strong></p>
<p>snowflake是Twitter开源的分布式ID生成算法,结果是一个long型的ID。其核心思想是:使用41bit作为毫秒数,10bit作为机器的ID(5个bit是数据中心,5个bit的机器ID),12bit作为毫秒内的流水号(意味着每个节点在每毫秒可以产生 4096 个 ID),最后还有一个符号位,永远是0。具体实现的代码可以参看https://github.com/twitter/snowflake。雪花算法支持的TPS可以达到419万左右(2^22*1000)。</p>
<p>雪花算法在工程实现上有单机版本和分布式版本。单机版本如下,分布式版本可以参看美团leaf算法:https://github.com/Meituan-Dianping/Leaf</p>
<p>&nbsp;</p>
<p>C#代码如下:</p>
<div class="cnblogs_code" style="background-color: rgba(245, 245, 245, 1); border: 1px solid rgba(204, 204, 204, 1); padding: 5px">
<pre><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;summary&gt;</span>
    <span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> From: </span><span style="color: rgba(0, 128, 0, 1); text-decoration: underline">https://github.com/twitter/snowflake</span>
    <span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> An object that generates IDs.
    </span><span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> This is broken into a separate class in case
    </span><span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> we ever want to support multiple worker threads
    </span><span style="color: rgba(128, 128, 128, 1)">///</span><span style="color: rgba(0, 128, 0, 1)"> per process
    </span><span style="color: rgba(128, 128, 128, 1)">///</span> <span style="color: rgba(128, 128, 128, 1)">&lt;/summary&gt;</span>
    <span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">class</span><span style="color: rgba(0, 0, 0, 1)"> IdWorker
    {
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> workerId;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> datacenterId;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> sequence = <span style="color: rgba(128, 0, 128, 1)">0L</span><span style="color: rgba(0, 0, 0, 1)">;

      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> twepoch = <span style="color: rgba(128, 0, 128, 1)">1288834974657L</span><span style="color: rgba(0, 0, 0, 1)">;

      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> workerIdBits = <span style="color: rgba(128, 0, 128, 1)">5L</span><span style="color: rgba(0, 0, 0, 1)">;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> datacenterIdBits = <span style="color: rgba(128, 0, 128, 1)">5L</span><span style="color: rgba(0, 0, 0, 1)">;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> maxWorkerId = -<span style="color: rgba(128, 0, 128, 1)">1L</span> ^ (-<span style="color: rgba(128, 0, 128, 1)">1L</span> &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span><span style="color: rgba(0, 0, 0, 1)">)workerIdBits);
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> maxDatacenterId = -<span style="color: rgba(128, 0, 128, 1)">1L</span> ^ (-<span style="color: rgba(128, 0, 128, 1)">1L</span> &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span><span style="color: rgba(0, 0, 0, 1)">)datacenterIdBits);
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">long</span> sequenceBits = <span style="color: rgba(128, 0, 128, 1)">12L</span><span style="color: rgba(0, 0, 0, 1)">;

      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> workerIdShift =<span style="color: rgba(0, 0, 0, 1)"> sequenceBits;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> datacenterIdShift = sequenceBits +<span style="color: rgba(0, 0, 0, 1)"> workerIdBits;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> timestampLeftShift = sequenceBits + workerIdBits +<span style="color: rgba(0, 0, 0, 1)"> datacenterIdBits;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> sequenceMask = -<span style="color: rgba(128, 0, 128, 1)">1L</span> ^ (-<span style="color: rgba(128, 0, 128, 1)">1L</span> &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span><span style="color: rgba(0, 0, 0, 1)">)sequenceBits);

      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">long</span> lastTimestamp = -<span style="color: rgba(128, 0, 128, 1)">1L</span><span style="color: rgba(0, 0, 0, 1)">;
      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">object</span> syncRoot = <span style="color: rgba(0, 0, 255, 1)">new</span> <span style="color: rgba(0, 0, 255, 1)">object</span><span style="color: rgba(0, 0, 0, 1)">();

      </span><span style="color: rgba(0, 0, 255, 1)">public</span> IdWorker(<span style="color: rgba(0, 0, 255, 1)">long</span> workerId, <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> datacenterId)
      {

            </span><span style="color: rgba(0, 128, 0, 1)">//</span><span style="color: rgba(0, 128, 0, 1)"> sanity check for workerId</span>
            <span style="color: rgba(0, 0, 255, 1)">if</span> (workerId &gt; maxWorkerId || workerId &lt; <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">)
            {
                </span><span style="color: rgba(0, 0, 255, 1)">throw</span> <span style="color: rgba(0, 0, 255, 1)">new</span> ArgumentException(<span style="color: rgba(0, 0, 255, 1)">string</span>.Format(<span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(128, 0, 0, 1)">worker Id can't be greater than %d or less than 0</span><span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(0, 0, 0, 1)">, maxWorkerId));
            }
            </span><span style="color: rgba(0, 0, 255, 1)">if</span> (datacenterId &gt; maxDatacenterId || datacenterId &lt; <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">)
            {
                </span><span style="color: rgba(0, 0, 255, 1)">throw</span> <span style="color: rgba(0, 0, 255, 1)">new</span> ArgumentException(<span style="color: rgba(0, 0, 255, 1)">string</span>.Format(<span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(128, 0, 0, 1)">datacenter Id can't be greater than %d or less than 0</span><span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(0, 0, 0, 1)">, maxDatacenterId));
            }
            </span><span style="color: rgba(0, 0, 255, 1)">this</span>.workerId =<span style="color: rgba(0, 0, 0, 1)"> workerId;
            </span><span style="color: rgba(0, 0, 255, 1)">this</span>.datacenterId =<span style="color: rgba(0, 0, 0, 1)"> datacenterId;
      }

      </span><span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> nextId()
      {
            </span><span style="color: rgba(0, 0, 255, 1)">lock</span><span style="color: rgba(0, 0, 0, 1)"> (syncRoot)
            {
                </span><span style="color: rgba(0, 0, 255, 1)">long</span> timestamp =<span style="color: rgba(0, 0, 0, 1)"> timeGen();

                </span><span style="color: rgba(0, 0, 255, 1)">if</span> (timestamp &lt;<span style="color: rgba(0, 0, 0, 1)"> lastTimestamp)
                {
                  </span><span style="color: rgba(0, 0, 255, 1)">throw</span> <span style="color: rgba(0, 0, 255, 1)">new</span> ApplicationException(<span style="color: rgba(0, 0, 255, 1)">string</span>.Format(<span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(128, 0, 0, 1)">Clock moved backwards.Refusing to generate id for %d milliseconds</span><span style="color: rgba(128, 0, 0, 1)">"</span>, lastTimestamp -<span style="color: rgba(0, 0, 0, 1)"> timestamp));
                }

                </span><span style="color: rgba(0, 0, 255, 1)">if</span> (lastTimestamp ==<span style="color: rgba(0, 0, 0, 1)"> timestamp)
                {
                  sequence </span>= (sequence + <span style="color: rgba(128, 0, 128, 1)">1</span>) &amp;<span style="color: rgba(0, 0, 0, 1)"> sequenceMask;
                  </span><span style="color: rgba(0, 0, 255, 1)">if</span> (sequence == <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">)
                  {
                        timestamp </span>=<span style="color: rgba(0, 0, 0, 1)"> tilNextMillis(lastTimestamp);
                  }
                }
                </span><span style="color: rgba(0, 0, 255, 1)">else</span><span style="color: rgba(0, 0, 0, 1)">
                {
                  sequence </span>= <span style="color: rgba(128, 0, 128, 1)">0L</span><span style="color: rgba(0, 0, 0, 1)">;
                }

                lastTimestamp </span>=<span style="color: rgba(0, 0, 0, 1)"> timestamp;

                </span><span style="color: rgba(0, 0, 255, 1)">return</span> ((timestamp - twepoch) &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span>)timestampLeftShift) | (datacenterId &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span>)datacenterIdShift) | (workerId &lt;&lt; (<span style="color: rgba(0, 0, 255, 1)">int</span>)workerIdShift) |<span style="color: rgba(0, 0, 0, 1)"> sequence;
            }
      }

      </span><span style="color: rgba(0, 0, 255, 1)">protected</span> <span style="color: rgba(0, 0, 255, 1)">long</span> tilNextMillis(<span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> lastTimestamp)
      {
            </span><span style="color: rgba(0, 0, 255, 1)">long</span> timestamp =<span style="color: rgba(0, 0, 0, 1)"> timeGen();
            </span><span style="color: rgba(0, 0, 255, 1)">while</span> (timestamp &lt;=<span style="color: rgba(0, 0, 0, 1)"> lastTimestamp)
            {
                timestamp </span>=<span style="color: rgba(0, 0, 0, 1)"> timeGen();
            }
            </span><span style="color: rgba(0, 0, 255, 1)">return</span><span style="color: rgba(0, 0, 0, 1)"> timestamp;
      }

      </span><span style="color: rgba(0, 0, 255, 1)">protected</span> <span style="color: rgba(0, 0, 255, 1)">long</span><span style="color: rgba(0, 0, 0, 1)"> timeGen()
      {
            </span><span style="color: rgba(0, 0, 255, 1)">return</span> (<span style="color: rgba(0, 0, 255, 1)">long</span>)(DateTime.UtcNow - <span style="color: rgba(0, 0, 255, 1)">new</span> DateTime(<span style="color: rgba(128, 0, 128, 1)">1970</span>, <span style="color: rgba(128, 0, 128, 1)">1</span>, <span style="color: rgba(128, 0, 128, 1)">1</span>, <span style="color: rgba(128, 0, 128, 1)">0</span>, <span style="color: rgba(128, 0, 128, 1)">0</span>, <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">, DateTimeKind.Utc)).TotalMilliseconds;
      }
    }</span></pre>
</div>
<p>&nbsp;</p>
<p>测试代码如下:</p>
<div class="cnblogs_code" style="background-color: rgba(245, 245, 245, 1); border: 1px solid rgba(204, 204, 204, 1); padding: 5px">
<pre><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">void</span><span style="color: rgba(0, 0, 0, 1)"> TestIdWorker()
      {
            HashSet</span>&lt;<span style="color: rgba(0, 0, 255, 1)">long</span>&gt; <span style="color: rgba(0, 0, 255, 1)">set</span> = <span style="color: rgba(0, 0, 255, 1)">new</span> HashSet&lt;<span style="color: rgba(0, 0, 255, 1)">long</span>&gt;<span style="color: rgba(0, 0, 0, 1)">();
            IdWorker idWorker1 </span>= <span style="color: rgba(0, 0, 255, 1)">new</span> IdWorker(<span style="color: rgba(128, 0, 128, 1)">0</span>, <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">);
            IdWorker idWorker2 </span>= <span style="color: rgba(0, 0, 255, 1)">new</span> IdWorker(<span style="color: rgba(128, 0, 128, 1)">1</span>, <span style="color: rgba(128, 0, 128, 1)">0</span><span style="color: rgba(0, 0, 0, 1)">);
            Thread t1 </span>= <span style="color: rgba(0, 0, 255, 1)">new</span> Thread(() =&gt; DoTestIdWoker(idWorker1, <span style="color: rgba(0, 0, 255, 1)">set</span><span style="color: rgba(0, 0, 0, 1)">));
            Thread t2 </span>= <span style="color: rgba(0, 0, 255, 1)">new</span> Thread(() =&gt; DoTestIdWoker(idWorker2, <span style="color: rgba(0, 0, 255, 1)">set</span><span style="color: rgba(0, 0, 0, 1)">));
            t1.IsBackground </span>= <span style="color: rgba(0, 0, 255, 1)">true</span><span style="color: rgba(0, 0, 0, 1)">;
            t2.IsBackground </span>= <span style="color: rgba(0, 0, 255, 1)">true</span><span style="color: rgba(0, 0, 0, 1)">;

            t1.Start();
            t2.Start();
            </span><span style="color: rgba(0, 0, 255, 1)">try</span><span style="color: rgba(0, 0, 0, 1)">
            {
                Thread.Sleep(</span><span style="color: rgba(128, 0, 128, 1)">30000</span><span style="color: rgba(0, 0, 0, 1)">);
                t1.Abort();
                t2.Abort();
            }
            </span><span style="color: rgba(0, 0, 255, 1)">catch</span><span style="color: rgba(0, 0, 0, 1)"> (Exception e)
            {
            }

            Console.WriteLine(</span><span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(128, 0, 0, 1)">done</span><span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(0, 0, 0, 1)">);
      }

      </span><span style="color: rgba(0, 0, 255, 1)">private</span> <span style="color: rgba(0, 0, 255, 1)">static</span> <span style="color: rgba(0, 0, 255, 1)">void</span> DoTestIdWoker(IdWorker idWorker, HashSet&lt;<span style="color: rgba(0, 0, 255, 1)">long</span>&gt; <span style="color: rgba(0, 0, 255, 1)">set</span><span style="color: rgba(0, 0, 0, 1)">)
      {
            </span><span style="color: rgba(0, 0, 255, 1)">while</span> (<span style="color: rgba(0, 0, 255, 1)">true</span><span style="color: rgba(0, 0, 0, 1)">)
            {
                </span><span style="color: rgba(0, 0, 255, 1)">long</span> id =<span style="color: rgba(0, 0, 0, 1)"> idWorker.nextId();
                </span><span style="color: rgba(0, 0, 255, 1)">if</span> (!<span style="color: rgba(0, 0, 255, 1)">set</span><span style="color: rgba(0, 0, 0, 1)">.Add(id))
                {
                  Console.WriteLine(</span><span style="color: rgba(128, 0, 0, 1)">"</span><span style="color: rgba(128, 0, 0, 1)">duplicate:</span><span style="color: rgba(128, 0, 0, 1)">"</span> +<span style="color: rgba(0, 0, 0, 1)"> id);
                }

                Thread.Sleep(</span><span style="color: rgba(128, 0, 128, 1)">1</span><span style="color: rgba(0, 0, 0, 1)">);
            }
      }</span></pre>
</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>snowflake算法可以根据自身项目的需要进行一定的修改。比如估算未来的数据中心个数,每个数据中心的机器数以及统一毫秒可以能的并发数来调整在算法中所需要的bit数。</p>
<p>优点:</p>
<p>1)不依赖于数据库,灵活方便,且性能优于数据库。</p>
<p>2)ID按照时间在单机上是递增的。</p>
<p>缺点:</p>
<p>1)在单机上是递增的,但是由于涉及到分布式环境,每台机器上的时钟不可能完全同步,在算法上要解决时间回拨的问题。</p>
<p>&nbsp;</p>
<p><strong><span style="text-decoration: underline">6. 利用zookeeper生成唯一ID</span></strong></p>
<p>&nbsp;</p>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;">zookeeper主要通过其znode数据版本来生成序列号,可以生成32位和64位的数据版本号,客户端可以使用这个版本号来作为唯一的序列号。</pre>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;">很少会使用zookeeper来生成唯一ID。主要是由于需要依赖zookeeper,并且是多步调用API,如果在竞争较大的情况下,需要考虑使用分布式锁。因此,性能在高并发的分布式环境下,也不甚理想。</pre>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;">&nbsp;</pre>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;"><strong><span style="text-decoration: underline"><span style="font-family: Verdana">7. MongoDB的ObjectId</span></span></strong></pre>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;">MongoDB的ObjectId和snowflake算法类似。它设计成轻量型的,不同的机器都能用全局唯一的同种方法方便地生成它。MongoDB 从一开始就设计用来作为分布式数据库,处理多个节点是一个核心要求。使其在分片环境中要容易生成得多。</pre>
<p>其格式如下:</p>
<p><img src="http://images.blogjava.net/blogjava_net/dongbule/46046/o_111.PNG" alt=""></p>
<p>&nbsp;</p>
<p>前4 个字节是从标准纪元开始的时间戳,单位为秒。时间戳,与随后的5 个字节组合起来,提供了秒级别的唯一性。由于时间戳在前,这意味着ObjectId 大致会按照插入的顺序排列。这对于某些方面很有用,如将其作为索引提高效率。这4 个字节也隐含了文档创建的时间。绝大多数客户端类库都会公开一个方法从ObjectId 获取这个信息。 <br>接下来的3 字节是所在主机的唯一标识符。通常是机器主机名的散列值。这样就可以确保不同主机生成不同的ObjectId,不产生冲突。

<br>为了确保在同一台机器上并发的多个进程产生的ObjectId 是唯一的,接下来的两字节来自产生ObjectId 的进程标识符(PID)。

<br>前9 字节保证了同一秒钟不同机器不同进程产生的ObjectId 是唯一的。后3 字节就是一个自动增加的计数器,确保相同进程同一秒产生的ObjectId 也是不一样的。同一秒钟最多允许每个进程拥有2563(16 777 216)个不同的ObjectId。 </p>
<p>实现的源码可以到MongoDB官方网站下载。</p>
<p>&nbsp;</p>
<pre class="brush: csharp; auto-links: true; collapse: true; first-line: 1; gutter: true; html-script: false; light: false; ruler: false; smart-tabs: false; tab-size: 4; toolbar: true;"><span style="font-size: 15px"><strong>8. TiDB的主键</strong></span></pre>
<p>TiDB默认是支持自增主键的,对未声明主键的表,会提供了一个隐式主键_tidb_rowid,因为这个主键大体上是单调递增的,所以也会出现我们前面说的“尾部热点”问题。</p>
<p>TiDB也提供了UUID函数,而且在4.0版本中还提供了另一种解决方案AutoRandom。TiDB 模仿MySQL的 AutoIncrement,提供了AutoRandom关键字用于生成一个随机ID填充指定列。</p><br><br>
来源:https://www.cnblogs.com/haoxinyue/p/5208136.html
頁: [1]
查看完整版本: 分布式系统唯一ID生成方案汇总