Timing Wheel 时间轮算法 java实现

原文地址:http://blog.csdn.net/mindfloating/article/details/8033340

最近自己在写一个网络服务程序时需要管理大量客户端连接的,其中每个客户端连接都需要管理它的 timeout 时间。

通常连接的超时管理一般设置为30~60秒不等,并不需要太精确的时间控制。

另外由于服务端管理着多达数万到数十万不等的连接数,因此我们没法为每个连接使用一个Timer,那样太消耗资源不现实。


最早面临类似问题的应该是在操作系统和网络协议栈的实现中,以TCP协议为例:

其可靠传输依赖超时重传机制,因此每个通过TCP传输的 packet 都需要一个 timer 来调度 timeout 事件。

根据George Varghese 和 Tony Lauck 1996 年的论文(http://cseweb.ucsd.edu/users/varghese/PAPERS/twheel.ps.Z)

提出了一种定时轮的方式来管理和维护大量的 timer 调度,本文主要根据该论文讨论下实现一种定时轮的要点。


定时轮是一种数据结构,其主体是一个循环列表(circular buffer),每个列表中包含一个称之为槽(slot)的结构(附图)。

至于 slot 的具体结构依赖具体应用场景。

以本文开头所述的管理大量连接 timeout 的场景为例,描述一下 timing wheel的具体实现细节。


定时轮的工作原理可以类比于始终,如上图箭头(指针)按某一个方向按固定频率轮动,每一次跳动称为一个 tick。

这样可以看出定时轮由个3个重要的属性参数,ticksPerWheel(一轮的tick数),tickDuration(一个tick的持续时间)

以及 timeUnit(时间单位),例如 当ticksPerWheel=60,tickDuration=1,timeUnit=秒,这就和现实中的始终的秒针走动完全类似了。


这里给出一种简单的实现方式,指针按 tickDuration 的设置进行固定频率的转动,其中的必要约定如下:

  1. 新加入的对象总是保存在当前指针转动方向上一个位置
  2. 相等的对象仅存在于一个 slot 中
  3. 指针转动到当前位置对应的 slot 中保存的对象就意味着 timeout 了

在 Timing Wheel 模型中包含4种操作:

Client invoke:

1. START_TIMER(Interval, Request_ID, Expiry_Action)

2. STOP_TIMER(Request_ID)

Timer tick invoke:

3. PER_TICK_BOOKKEEPING

4. EXPIRY_PROCESSING


Timing Wheel 实现中主要考察的是前3种操作的时间和空间复杂度,而第4种属于超时处理通常实现为回调方法,由调用方的实现决定其效率,下面看一个用 java 实现的 Timing Wheel 的具体例子:

TimingWheel.java

[java]  view plain copy
  1. /** 
  2.  * A timing-wheel optimized for approximated I/O timeout scheduling.
     
  3.  * {@link TimingWheel} creates a new thread whenever it is instantiated and started, so don't create many instances. 
  4.  * 

     

  5.  * The classic usage as follows:
     
  6.  * 
  7. using timing-wheel manage any object timeout
  8.  
  9.  * 
     
  10.  *    // Create a timing-wheel with 60 ticks, and every tick is 1 second. 
  11.  *    private static final TimingWheel TIMING_WHEEL = new TimingWheel(1, 60, TimeUnit.SECONDS); 
  12.  *     
  13.  *    // Add expiration listener and start the timing-wheel. 
  14.  *    static { 
  15.  *      TIMING_WHEEL.addExpirationListener(new YourExpirationListener()); 
  16.  *      TIMING_WHEEL.start(); 
  17.  *    } 
  18.  *     
  19.  *    // Add one element to be timeout approximated after 60 seconds 
  20.  *    TIMING_WHEEL.add(e); 
  21.  *     
  22.  *    // Anytime you can cancel count down timer for element e like this 
  23.  *    TIMING_WHEEL.remove(e); 
  24.  *  
  25.  *  
  26.  * After expiration occurs, the {@link ExpirationListener} interface will be invoked and the expired object will be  
  27.  * the argument for callback method {@link ExpirationListener#expired(Object)} 
  28.  * 

     

  29.  * {@link TimingWheel} is based on George Varghese and Tony Lauck's paper, 
  30.  * 'Hashed and Hierarchical Timing Wheels: data structures  
  31.  * to efficiently implement a timer facility'.  More comprehensive slides are located here. 
  32.  *  
  33.  * @author mindwind 
  34.  * @version 1.0, Sep 20, 2012 
  35.  */  
  36. public class TimingWheel {  
  37.       
  38.     private final long tickDuration;  
  39.     private final int ticksPerWheel;  
  40.     private volatile int currentTickIndex = 0;  
  41.       
  42.     private final CopyOnWriteArrayList> expirationListeners = new CopyOnWriteArrayList>();  
  43.     private final ArrayList> wheel;  
  44.     private final Map> indicator = new ConcurrentHashMap>();  
  45.       
  46.     private final AtomicBoolean shutdown = new AtomicBoolean(false);  
  47.     private final ReadWriteLock lock = new ReentrantReadWriteLock();  
  48.     private Thread workerThread;  
  49.       
  50.     // ~ -------------------------------------------------------------------------------------------------------------  
  51.   
  52.     /** 
  53.      * Construct a timing wheel. 
  54.      *  
  55.      * @param tickDuration 
  56.      *            tick duration with specified time unit. 
  57.      * @param ticksPerWheel 
  58.      * @param timeUnit 
  59.      */  
  60.     public TimingWheel(int tickDuration, int ticksPerWheel, TimeUnit timeUnit) {  
  61.         if (timeUnit == null) {  
  62.             throw new NullPointerException("unit");  
  63.         }  
  64.         if (tickDuration <= 0) {  
  65.             throw new IllegalArgumentException("tickDuration must be greater than 0: " + tickDuration);  
  66.         }  
  67.         if (ticksPerWheel <= 0) {  
  68.             throw new IllegalArgumentException("ticksPerWheel must be greater than 0: " + ticksPerWheel);  
  69.         }  
  70.           
  71.         this.wheel = new ArrayList>();  
  72.         this.tickDuration = TimeUnit.MILLISECONDS.convert(tickDuration, timeUnit);  
  73.         this.ticksPerWheel = ticksPerWheel + 1;  
  74.           
  75.         for (int i = 0; i < this.ticksPerWheel; i++) {  
  76.             wheel.add(new Slot(i));  
  77.         }  
  78.         wheel.trimToSize();  
  79.           
  80.         workerThread = new Thread(new TickWorker(), "Timing-Wheel");  
  81.     }  
  82.       
  83.     // ~ -------------------------------------------------------------------------------------------------------------  
  84.       
  85.     public void start() {  
  86.         if (shutdown.get()) {  
  87.             throw new IllegalStateException("Cannot be started once stopped");  
  88.         }  
  89.   
  90.         if (!workerThread.isAlive()) {  
  91.             workerThread.start();  
  92.         }  
  93.     }  
  94.       
  95.     public boolean stop() {  
  96.         if (!shutdown.compareAndSet(falsetrue)) {  
  97.             return false;  
  98.         }  
  99.           
  100.         boolean interrupted = false;  
  101.         while (workerThread.isAlive()) {  
  102.             workerThread.interrupt();  
  103.             try {  
  104.                 workerThread.join(100);  
  105.             } catch (InterruptedException e) {  
  106.                 interrupted = true;  
  107.             }  
  108.         }  
  109.         if (interrupted) {  
  110.             Thread.currentThread().interrupt();  
  111.         }  
  112.           
  113.         return true;  
  114.     }  
  115.       
  116.     public void addExpirationListener(ExpirationListener listener) {  
  117.         expirationListeners.add(listener);  
  118.     }  
  119.       
  120.     public void removeExpirationListener(ExpirationListener listener) {  
  121.         expirationListeners.remove(listener);  
  122.     }  
  123.       
  124.     /** 
  125.      * Add a element to {@link TimingWheel} and start to count down its life-time. 
  126.      *  
  127.      * @param e 
  128.      * @return remain time to be expired in millisecond. 
  129.      */  
  130.     public long add(E e) {  
  131.         synchronized(e) {  
  132.             checkAdd(e);  
  133.               
  134.             int previousTickIndex = getPreviousTickIndex();  
  135.             Slot slot = wheel.get(previousTickIndex);  
  136.             slot.add(e);  
  137.             indicator.put(e, slot);  
  138.               
  139.             return (ticksPerWheel - 1) * tickDuration;  
  140.         }  
  141.     }  
  142.       
  143.     private void checkAdd(E e) {  
  144.         Slot slot = indicator.get(e);  
  145.         if (slot != null) {  
  146.             slot.remove(e);  
  147.         }  
  148.     }  
  149.       
  150.     private int getPreviousTickIndex() {  
  151.         lock.readLock().lock();  
  152.         try {  
  153.             int cti = currentTickIndex;  
  154.             if (cti == 0) {  
  155.                 return ticksPerWheel - 1;  
  156.             }  
  157.               
  158.             return cti - 1;  
  159.         } finally {  
  160.             lock.readLock().unlock();  
  161.         }  
  162.     }  
  163.       
  164.     /** 
  165.      * Removes the specified element from timing wheel. 
  166.      *  
  167.      * @param e 
  168.      * @return true if this timing wheel contained the specified 
  169.      *         element 
  170.      */  
  171.     public boolean remove(E e) {  
  172.         synchronized (e) {  
  173.             Slot slot = indicator.get(e);  
  174.             if (slot == null) {  
  175.                 return false;  
  176.             }  
  177.   
  178.             indicator.remove(e);  
  179.             return slot.remove(e) != null;  
  180.         }  
  181.     }  
  182.   
  183.     private void notifyExpired(int idx) {  
  184.         Slot slot = wheel.get(idx);  
  185.         Set elements = slot.elements();  
  186.         for (E e : elements) {  
  187.             slot.remove(e);  
  188.             synchronized (e) {  
  189.                 Slot latestSlot = indicator.get(e);  
  190.                 if (latestSlot.equals(slot)) {  
  191.                     indicator.remove(e);  
  192.                 }  
  193.             }  
  194.             for (ExpirationListener listener : expirationListeners) {  
  195.                 listener.expired(e);  
  196.             }  
  197.         }  
  198.     }  
  199.       
  200.     // ~ -------------------------------------------------------------------------------------------------------------  
  201.        
  202.     private class TickWorker implements Runnable {  
  203.   
  204.         private long startTime;  
  205.         private long tick;  
  206.   
  207.         @Override  
  208.         public void run() {  
  209.             startTime = System.currentTimeMillis();  
  210.             tick = 1;  
  211.   
  212.             for (int i = 0; !shutdown.get(); i++) {  
  213.                 if (i == wheel.size()) {  
  214.                     i = 0;  
  215.                 }  
  216.                 lock.writeLock().lock();  
  217.                 try {  
  218.                     currentTickIndex = i;  
  219.                 } finally {  
  220.                     lock.writeLock().unlock();  
  221.                 }  
  222.                 notifyExpired(currentTickIndex);  
  223.                 waitForNextTick();  
  224.             }  
  225.         }  
  226.   
  227.         private void waitForNextTick() {  
  228.             for (;;) {  
  229.                 long currentTime = System.currentTimeMillis();  
  230.                 long sleepTime = tickDuration * tick - (currentTime - startTime);  
  231.   
  232.                 if (sleepTime <= 0) {  
  233.                     break;  
  234.                 }  
  235.   
  236.                 try {  
  237.                     Thread.sleep(sleepTime);  
  238.                 } catch (InterruptedException e) {  
  239.                     return;  
  240.                 }  
  241.             }  
  242.               
  243.             tick++;  
  244.         }  
  245.     }  
  246.       
  247.     private static class Slot {  
  248.           
  249.         private int id;  
  250.         private Map elements = new ConcurrentHashMap();  
  251.           
  252.         public Slot(int id) {  
  253.             this.id = id;  
  254.         }  
  255.   
  256.         public void add(E e) {  
  257.             elements.put(e, e);  
  258.         }  
  259.           
  260.         public E remove(E e) {  
  261.             return elements.remove(e);  
  262.         }  
  263.           
  264.         public Set elements() {  
  265.             return elements.keySet();  
  266.         }  
  267.   
  268.         @Override  
  269.         public int hashCode() {  
  270.             final int prime = 31;  
  271.             int result = 1;  
  272.             result = prime * result + id;  
  273.             return result;  
  274.         }  
  275.   
  276.         @Override  
  277.         public boolean equals(Object obj) {  
  278.             if (this == obj)  
  279.                 return true;  
  280.             if (obj == null)  
  281.                 return false;  
  282.             if (getClass() != obj.getClass())  
  283.                 return false;  
  284.             @SuppressWarnings("rawtypes")  
  285.             Slot other = (Slot) obj;  
  286.             if (id != other.id)  
  287.                 return false;  
  288.             return true;  
  289.         }  
  290.   
  291.         @Override  
  292.         public String toString() {  
  293.             return "Slot [id=" + id + ", elements=" + elements + "]";  
  294.         }  
  295.           
  296.     }  
  297.       
  298. }  


ExpirationListener.java

[java]  view plain copy
  1. /** 
  2.  * A listener for expired object events. 
  3.  *  
  4.  * @author mindwind 
  5.  * @version 1.0, Sep 20, 2012 
  6.  * @see TimingWheel 
  7.  */  
  8. public interface ExpirationListener {  
  9.       
  10.     /** 
  11.      * Invoking when a expired event occurs. 
  12.      *  
  13.      * @param expiredObject 
  14.      */  
  15.     void expired(E expiredObject);  
  16.       
  17. }  

我们分析一下这个简化版本  TimingWheel 实现中的 4 个主要操作的实现:


START_TIMER(Interval, Request_ID, Expiry_Action) ,这段伪代码的实现对应于TimingWheel的 add(E e) 方法。

  • 首先检查同样的元素是否已添加到 TimingWheel 中,若已存在则删除旧的引用,重新安置元素在wheel中位置。这个检查是为了满足约束条件2(相等的对象仅存在于一个 slot 中,重新加入相同的元素相当于重置了该元素的 Timer)
  • 获取当前 tick 指针位置的前一个 slot 槽位,放置新加入的元素,并在内部记录下该位置
  • 返回新加入元素的 timeout 时间,以毫秒计算(一般的应用级程序到毫秒这个精度已经足够了)
  • 显然,时间复杂度为O(1)

STOP_TIMER(Request_ID),这段伪代码的实现对应于TimingWheel的 remove(E e) 方法。

  • 获取元素在 TimingWheel 中对应 slot 位置
  • 从中 slot 中删除
  • 显然,时间复杂度也为O(1)

 PER_TICK_BOOKKEEPING,伪代码对应于 TimingWheel 中 TickerWorker 中的  run() 方法。

  • 获取当前 tick 指针的 slot
  • 对当前 slot 的所有元素进行 timeout 处理(notifyExpired())
  • ticker 不需要针对每个元素去判断其 timeout 时间,故时间复杂度也为 O(1)

 EXPIRY_PROCESSING,伪代码对应于TimingWheel 中的 notifyExpired() 方法

  • 实现了对每个 timeout 元素的 Expiry_Action 处理
  • 这里时间复杂度显然 是 O(n)的。

在维护大量连接的例子中:

  • 连接建立时,把一个连接放入 TimingWheel 中进入 timeout 倒计时
  • 每次收到长连接心跳时,重新加入一次TimingWheel 相当于重置了 timer
  • timeout 时间到达时触发 EXPIRY_PROCESSING
  • EXPIRY_PROCESSING 实际就是关闭超时的连接。

这个简化版的 TimingWheel 实现一个实例只能支持一个固定的 timeout 时长调度,不能支持对于每个元素特定的 timeout 时长。

一种改进的做法是设计一个函数,计算每个元素特定的deadline,并根据deadline计算放置在wheel中的特定位置,这个以后再完善。


你可能感兴趣的:(linux多线程)