ZooKeeper實現分布式鎖

1.什么是分布式鎖

一般的鎖:一般我們說的鎖是但進程多線程的鎖,在多線程并發(fā)編程中,用于線程之間的數據同步,保護共享資源的訪問

分布式鎖:分布式鎖指的是在分布式環(huán)境下,保護跨進程,跨主機,跨網絡的共享資源,實現互斥訪問,保證一致性

2.分布式鎖的架構圖

20160320214246073.png

3.分布式鎖的算法流程

20160320221558695.png
package com.jike.lock;
 
import java.util.concurrent.TimeUnit;
 
public interface DistributedLock {
    
    /*
     * 獲取鎖,如果沒有得到就等待
     */
    public void acquire() throws Exception;
 
    /*
     * 獲取鎖,直到超時
     */
    public boolean acquire(long time, TimeUnit unit) throws Exception;
 
    /*
     * 釋放鎖
     */
    public void release() throws Exception;
 
 
}
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
 
import org.I0Itec.zkclient.IZkDataListener;
import org.I0Itec.zkclient.ZkClient;
import org.I0Itec.zkclient.exception.ZkNoNodeException;
 
public class BaseDistributedLock {
    
    private final ZkClientExt client;
    private final String  path;
    
    //zookeeper中l(wèi)ocker節(jié)點的路徑
    private final String  basePath;
    private final String  lockName;
    private static final Integer  MAX_RETRY_COUNT = 10;
        
    public BaseDistributedLock(ZkClientExt client, String path, String lockName){
 
        this.client = client;
        this.basePath = path;
        this.path = path.concat("/").concat(lockName);      
        this.lockName = lockName;
        
    }
    
    private void deleteOurPath(String ourPath) throws Exception{
        client.delete(ourPath);
    }
    
    private String createLockNode(ZkClient client,  String path) throws Exception{
        
        return client.createEphemeralSequential(path, null);
    }
    
    private boolean waitToLock(long startMillis, Long millisToWait, String ourPath) throws Exception{
        
        boolean  haveTheLock = false;
        boolean  doDelete = false;
        
        try
        {
 
            while ( !haveTheLock )
            {
                //獲取lock節(jié)點下的所有節(jié)點
                List<String> children = getSortedChildren();
                String sequenceNodeName = ourPath.substring(basePath.length()+1);
 
                //獲取當前節(jié)點的在所有節(jié)點列表中的位置
                int  ourIndex = children.indexOf(sequenceNodeName);
                //節(jié)點位置小于0,說明沒有找到節(jié)點
                if ( ourIndex<0 ){
                    throw new ZkNoNodeException("節(jié)點沒有找到: " + sequenceNodeName);
                }
                
                //節(jié)點位置大于0說明還有其他節(jié)點在當前的節(jié)點前面,就需要等待其他的節(jié)點都釋放
                boolean isGetTheLock = ourIndex == 0;
                String  pathToWatch = isGetTheLock ? null : children.get(ourIndex - 1);
 
                if ( isGetTheLock ){
                    
                    haveTheLock = true;
                    
                }else{
                    /**
                     * 獲取當前節(jié)點的次小的節(jié)點,并監(jiān)聽節(jié)點的變化
                     */
                    String  previousSequencePath = basePath .concat( "/" ) .concat( pathToWatch );
                    final CountDownLatch    latch = new CountDownLatch(1);
                    final IZkDataListener previousListener = new IZkDataListener() {
                        
                        public void handleDataDeleted(String dataPath) throws Exception {
                            latch.countDown();          
                        }
                        
                        public void handleDataChange(String dataPath, Object data) throws Exception {
                            // ignore                                   
                        }
                    };
 
                    try 
                    {                  
                        //如果節(jié)點不存在會出現異常
                        client.subscribeDataChanges(previousSequencePath, previousListener);
                        
                        if ( millisToWait != null )
                        {
                            millisToWait -= (System.currentTimeMillis() - startMillis);
                            startMillis = System.currentTimeMillis();
                            if ( millisToWait <= 0 )
                            {
                                doDelete = true;    // timed out - delete our node
                                break;
                            }
 
                            latch.await(millisToWait, TimeUnit.MICROSECONDS);
                        }
                        else
                        {
                            latch.await();
                        }
                    }
                    catch ( ZkNoNodeException e ) 
                    {
                        //ignore
                    }finally{
                        client.unsubscribeDataChanges(previousSequencePath, previousListener);
                    }
 
                }
            }
        }
        catch ( Exception e )
        {
            //發(fā)生異常需要刪除節(jié)點
            doDelete = true;
            throw e;
        }
        finally
        {
            //如果需要刪除節(jié)點
            if ( doDelete )
            {
                deleteOurPath(ourPath);
            }
        }
        return haveTheLock;
    }
    
    private String getLockNodeNumber(String str, String lockName)
    {
        int index = str.lastIndexOf(lockName);
        if ( index >= 0 )
        {
            index += lockName.length();
            return index <= str.length() ? str.substring(index) : "";
        }
        return str;
    }
    
    List<String> getSortedChildren() throws Exception
    {
        try{
            
            List<String> children = client.getChildren(basePath);
            Collections.sort
            (
                children,
                new Comparator<String>()
                {
                    public int compare(String lhs, String rhs)
                    {
                        return getLockNodeNumber(lhs, lockName).compareTo(getLockNodeNumber(rhs, lockName));
                    }
                }
            );
            return children;
            
        }catch(ZkNoNodeException e){
            
            client.createPersistent(basePath, true);
            return getSortedChildren();
            
        }
    }
    
    protected void releaseLock(String lockPath) throws Exception{
        deleteOurPath(lockPath);    
        
    }
    
    /**
     * 嘗試獲取鎖
     * @param time
     * @param unit
     * @return
     * @throws Exception
     */
    protected String attemptLock(long time, TimeUnit unit) throws Exception{
        
        final long      startMillis = System.currentTimeMillis();
        final Long      millisToWait = (unit != null) ? unit.toMillis(time) : null;
 
        String          ourPath = null;
        boolean         hasTheLock = false;
        boolean         isDone = false;
        int             retryCount = 0;
        
        //網絡閃斷需要重試一試
        while ( !isDone )
        {
            isDone = true;
 
            try
            {
                ourPath = createLockNode(client, path);
                hasTheLock = waitToLock(startMillis, millisToWait, ourPath);
            }
            catch ( ZkNoNodeException e )
            {
                if ( retryCount++ < MAX_RETRY_COUNT )
                {
                    isDone = false;
                }
                else
                {
                    throw e;
                }
            }
        }
        if ( hasTheLock )
        {
            return ourPath;
        }
 
        return null;
    }
    
    
}
 
import org.I0Itec.zkclient.serialize.BytesPushThroughSerializer;
 
public class TestDistributedLock {
    
    public static void main(String[] args) {
        
        final ZkClientExt zkClientExt1 = new ZkClientExt("192.168.1.105:2181", 5000, 5000, new BytesPushThroughSerializer());
        final SimpleDistributedLockMutex mutex1 = new SimpleDistributedLockMutex(zkClientExt1, "/Mutex");
        
        final ZkClientExt zkClientExt2 = new ZkClientExt("192.168.1.105:2181", 5000, 5000, new BytesPushThroughSerializer());
        final SimpleDistributedLockMutex mutex2 = new SimpleDistributedLockMutex(zkClientExt2, "/Mutex");
        
        try {
            mutex1.acquire();
            System.out.println("Client1 locked");
            Thread client2Thd = new Thread(new Runnable() {
                
                public void run() {
                    try {
                        mutex2.acquire();
                        System.out.println("Client2 locked");
                        mutex2.release();
                        System.out.println("Client2 released lock");
                        
                    } catch (Exception e) {
                        e.printStackTrace();
                    }               
                }
            });
            client2Thd.start();
            Thread.sleep(5000);
            mutex1.release();           
            System.out.println("Client1 released lock");
            
            client2Thd.join();
            
        } catch (Exception e) {
 
            e.printStackTrace();
        }
        
    }
 
}

原文鏈接:https://blog.csdn.net/ZuoAnYinXiang/article/details/50938430

最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

  • 本章學習需要先安裝 zookeeper。安裝教程在另一篇博客:https://blog.csdn.net/weix...
    LuckToMeetDian葉閱讀 742評論 3 0
  • 微信原文: 利用Zookeeper實現 - 分布式鎖 博客原文:利用Zookeeper實現 - 分布式鎖 在許...
    小旋鋒的簡書閱讀 12,590評論 3 44
  • ZooKeeper 節(jié)點是有生命周期的,這取決于節(jié)點的類型。在 ZooKeeper 中,節(jié)點類型可以分為持久節(jié)點(...
    bbe9e62bc5ba閱讀 799評論 0 0
  • 給99分,是我的一個情結。差一分在可惜沒四大惡人,而四大惡人也已經兩個不在了。 我看電影憑感覺,從來不聽別人評價,...
    一土先生閱讀 697評論 2 3
  • 今天,八十一歲的阿太走完了她的一生。若計較起她這一輩子的成就,無非就是平凡普通到生育了五個子女而已,無波無瀾似無意...
    阿志是圈圈閱讀 588評論 0 1

友情鏈接更多精彩內容