深讀源碼-java同步系列之zookeeper分佈式鎖

問題

(1)zookeeper如何實現分佈式鎖?

(2)zookeeper分佈式鎖有哪些優點?

(3)zookeeper分佈式鎖有哪些缺點?

簡介

zooKeeper是一個分佈式的,開放源碼的分佈式應用程序協調服務,它可以爲分佈式應用提供一致性服務,它是Hadoop和Hbase的重要組件,同時也可以作爲配置中心、註冊中心運用在微服務體系中。

本章我們將介紹zookeeper如何實現分佈式鎖運用在分佈式系統中。

基礎知識

什麼是znode?

zooKeeper操作和維護的爲一個個數據節點,稱爲 znode,採用類似文件系統的層級樹狀結構進行管理,如果 znode 節點包含數據則存儲爲字節數組(byte array)。

而且,同一個節點多個客戶同時創建,只有一個客戶端會成功,其它客戶端創建時將失敗。

zooKeeper

節點類型

znode 共有四種類型:

  • 持久(無序)

  • 持久有序

  • 臨時(無序)

  • 臨時有序

其中,持久節點如果不手動刪除會一直存在,臨時節點當客戶端session失效就會自動刪除節點。

什麼是watcher?

watcher(事件監聽器),是zookeeper中的一個很重要的特性。

zookeeper允許用戶在指定節點上註冊一些watcher,並且在一些特定事件觸發的時候,zooKeeper服務端會將事件通知到感興趣的客戶端上去,該機制是Zookeeper實現分佈式協調服務的重要特性

KeeperState EventType 觸發條件 說明 操作
SyncConnected(3) None(-1) 客戶端與服務端成功建立連接 此時客戶端和服務器處於連接狀態 -
同上 NodeCreated(1) Watcher監聽的對應數據節點被創建 同上 Create
同上 NodeDeleted(2) Watcher監聽的對應數據節點被刪除 同上 Delete/znode
同上 NodeDataChanged(3) Watcher監聽的對應數據節點的數據內容發生變更 同上 setDate/znode
同上 NodeChildChanged(4) Wather監聽的對應數據節點的子節點列表發生變更 同上 Create/child
Disconnected(0) None(-1) 客戶端與ZooKeeper服務器斷開連接 此時客戶端和服務器處於斷開連接狀態 -
Expired(-112) None(-1) 會話超時 此時客戶端會話失效,通常同時也會受到SessionExpiredException異常 -
AuthFailed(4) None(-1) 通常有兩種情況,1:使用錯誤的schema進行權限檢查 2:SASL權限檢查失敗 通常同時也會收到AuthFailedException異常 -

原理解析

方案一

既然,同一個節點只能創建一次,那麼,加鎖時檢測節點是否存在,不存在則創建之,存在或者創建失敗則監聽這個節點的刪除事件,這樣,當釋放鎖的時候監聽的客戶端再次競爭去創建這個節點,成功的則獲取到鎖,不成功的則再次監聽該節點。

zooKeeper

比如,有三個客戶端client1、client2、client3同時獲取/locker/user_1這把鎖,它們將按照如下步驟運行:

(1)三者同時嘗試創建/locker/user_1節點;

(2)client1創建成功,它獲取到鎖;

(3)client2和client3創建失敗,它們監聽/locker/user_1的刪除事件;

(4)client1執行鎖內業務邏輯;

(5)client1釋放鎖,刪除節點/locker/user_1;

(6)client2和client3都捕獲到節點/locker/user_1被刪除的事件,二者皆被喚醒;

(7)client2和client3同時去創建/locker/user_1節點;

(8)回到第二步,依次類推;

不過,這種方案有個很嚴重的弊端——驚羣效應。

如果併發量很高,多個客戶端同時監聽同一個節點,釋放鎖時同時喚醒這麼多個客戶端,然後再競爭,最後還是隻有一個能獲取到鎖,其它客戶端又要沉睡,這些客戶端的喚醒沒有任何意義,極大地浪費系統資源,那麼有沒有更好的方案呢?答案是當然有,請看方案二。

方案二

爲了解決方案一中的驚羣效應,我們可以使用有序子節點的形式來實現分佈式鎖,而且爲了規避客戶端獲取鎖後突然斷線的風險,我們有必要使用臨時有序節點。

zooKeeper

比如,有三個客戶端client1、client2、client3同時獲取/locker/user_1這把鎖,它們將按照如下步驟運行:

(1)三者同時在/locker/user_1/下面創建臨時有序子節點;

(2)三者皆創建成功,分別爲/locker/user_1/0000000001、/locker/user_1/0000000003、/locker/user_1/0000000002;

(3)檢查自己創建的節點是不是子節點中最小的;

(4)client1發現自己是最小的節點,它獲取到鎖;

(5)client2和client3發現自己不是最小的節點,它們無法獲取到鎖;

(6)client2創建的節點爲/locker/user_1/0000000003,它監聽其上一個節點/locker/user_1/0000000002的刪除事件;

(7)client3創建的節點爲/locker/user_1/0000000002,它監聽其上一個節點/locker/user_1/0000000001的刪除事件;

(8)client1執行鎖內業務邏輯;

(9)client1釋放鎖,刪除節點/locker/user_1/0000000001;

(10)client3監聽到節點/locker/user_1/0000000001的刪除事件,被喚醒;

(11)client3再次檢查自己是不是最小的節點,發現是,則獲取到鎖;

(12)client3執行鎖內業務邏輯;

(13)client3釋放鎖,刪除節點/locker/user_1/0000000002;

(14)client2監聽到節點/locker/user_1/0000000002的刪除事件,被喚醒;

(15)client2執行鎖內業務邏輯;

(16)client2釋放鎖,刪除節點/locker/user_1/0000000003;

(17)client2檢查/locker/user_1/下是否還有子節點,沒有了則刪除/locker/user_1節點;

(18)流程結束;

這種方案相對於方案一來說,每次釋放鎖時只喚醒一個客戶端,減少了線程喚醒的代價,提高了效率。

zookeeper原生API實現

pom文件

pom中引入以下jar包:

<dependency>
    <groupId>org.apache.zookeeper</groupId>
    <artifactId>zookeeper</artifactId>
    <version>3.5.5</version>
</dependency>

Locker接口

定義一個Locker接口,與上一章mysql分佈式鎖使用同一個接口。

public interface Locker {
    void lock(String key, Runnable command);
}

zookeeper分佈式鎖實現

這裏通過內部類ZkLockerWatcher處理zookeeper的相關操作,需要注意以下幾點:

(1)zk連接建立完畢之前不要進行相關操作,否則會報ConnectionLoss異常,這裏通過LockSupport.park();阻塞連接線程並在監聽線程中喚醒處理;

(2)客戶端線程與監聽線程不是同一個線程,所以可以通過LockSupport.park();及LockSupport.unpark(thread);來處理;

(3)中間很多步驟不是原子的(坑),所以需要再次檢測,詳見代碼中註釋;

@Slf4j
@Component
public class ZkLocker implements Locker {
    @Override
    public void lock(String key, Runnable command) {
        ZkLockerWatcher watcher = ZkLockerWatcher.conn(key);
        try {
            if (watcher.getLock()) {
                command.run();
            }
        } finally {
            watcher.releaseLock();
        }
    }

    private static class ZkLockerWatcher implements Watcher {
        public static final String connAddr = "127.0.0.1:2181";
        public static final int timeout = 6000;
        public static final String LOCKER_ROOT = "/locker";

        ZooKeeper zooKeeper;
        String parentLockPath;
        String childLockPath;
        Thread thread;

        public static ZkLockerWatcher conn(String key) {
            ZkLockerWatcher watcher = new ZkLockerWatcher();
            try {
                ZooKeeper zooKeeper = watcher.zooKeeper = new ZooKeeper(connAddr, timeout, watcher);
                watcher.thread = Thread.currentThread();
                // 阻塞等待連接建立完畢
                LockSupport.park();
                // 根節點如果不存在,就創建一個(併發問題,如果兩個線程同時檢測不存在,兩個同時去創建必須有一個會失敗)
                if (zooKeeper.exists(LOCKER_ROOT, false) == null) {
                    try {
                        zooKeeper.create(LOCKER_ROOT, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
                    } catch (KeeperException e) {
                        // 如果節點已存在,則創建失敗,這裏捕獲異常,並不阻擋程序正常運行
                        log.info("創建節點 {} 失敗", LOCKER_ROOT);
                    }
                }
                // 當前加鎖的節點是否存在
                watcher.parentLockPath = LOCKER_ROOT + "/" + key;
                if (zooKeeper.exists(watcher.parentLockPath, false) == null) {
                    try {
                        zooKeeper.create(watcher.parentLockPath, "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
                    } catch (KeeperException e) {
                        // 如果節點已存在,則創建失敗,這裏捕獲異常,並不阻擋程序正常運行
                        log.info("創建節點 {} 失敗", watcher.parentLockPath);
                    }
                }

            } catch (Exception e) {
                log.error("conn to zk error", e);
                throw new RuntimeException("conn to zk error");
            }
            return watcher;
        }

        public boolean getLock() {
            try {
                this.childLockPath = zooKeeper.create(parentLockPath + "/", "".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL_SEQUENTIAL);
                // 檢查自己是不是最小的節點,是則獲取成功,不是則監聽上一個節點
                return getLockOrWatchLast();
            } catch (Exception e) {
                log.error("get lock error", e);
                throw new RuntimeException("get lock error");
            } finally {
//                System.out.println("getLock: " + childLockPath);
            }
        }

        public void releaseLock() {
            try {
                if (childLockPath != null) {
                    // 釋放鎖,刪除節點
                    zooKeeper.delete(childLockPath, -1);
                }
                // 最後一個釋放的刪除鎖節點
                List<String> children = zooKeeper.getChildren(parentLockPath, false);
                if (children.isEmpty()) {
                    try {
                        zooKeeper.delete(parentLockPath, -1);
                    } catch (KeeperException e) {
                        // 如果刪除之前又新加了一個子節點,會刪除失敗
                        log.info("刪除節點 {} 失敗", parentLockPath);
                    }
                }
                // 關閉zk連接
                if (zooKeeper != null) {
                    zooKeeper.close();
                }
            } catch (Exception e) {
                log.error("release lock error", e);
                throw new RuntimeException("release lock error");
            } finally {
//                System.out.println("releaseLock: " + childLockPath);
            }
        }

        private boolean getLockOrWatchLast() throws KeeperException, InterruptedException {
            List<String> children = zooKeeper.getChildren(parentLockPath, false);
            // 必須要排序一下,這裏取出來的順序可能是亂的
            Collections.sort(children);
            // 如果當前節點是第一個子節點,則獲取鎖成功
            if ((parentLockPath + "/" + children.get(0)).equals(childLockPath)) {
                return true;
            }

            // 如果不是第一個子節點,就監聽前一個節點
            String last = "";
            for (String child : children) {
                if ((parentLockPath + "/" + child).equals(childLockPath)) {
                    break;
                }
                last = child;
            }

            if (zooKeeper.exists(parentLockPath + "/" + last, true) != null) {
                this.thread = Thread.currentThread();
                // 阻塞當前線程
                LockSupport.park();
                // 喚醒之後重新檢測自己是不是最小的節點,因爲有可能上一個節點斷線了
                return getLockOrWatchLast();
            } else {
                // 如果上一個節點不存在,說明還沒來得及監聽就釋放了,重新檢查一次
                return getLockOrWatchLast();
            }
        }

        @Override
        public void process(WatchedEvent event) {
            if (this.thread != null) {
                // 喚醒阻塞的線程(這是在監聽線程,跟獲取鎖的線程不是同一個線程)
                LockSupport.unpark(this.thread);
                this.thread = null;
            }
        }
    }
}

測試代碼

我們這裏起兩批線程,一批獲取user_1這個鎖,一批獲取user_2這個鎖。

@RunWith(SpringRunner.class)
@SpringBootTest(classes = Application.class)
public class ZkLockerTest {

    @Autowired
    private Locker locker;

    @Test
    public void testZkLocker() throws IOException {
        for (int i = 0; i < 1000; i++) {
            new Thread(()->{
                locker.lock("user_1", ()-> {
                    try {
                        System.out.println(String.format("user_1 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-"+i).start();
        }
        for (int i = 1000; i < 2000; i++) {
            new Thread(()->{
                locker.lock("user_2", ()-> {
                    try {
                        System.out.println(String.format("user_2 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-"+i).start();
        }

        System.in.read();
    }
}

運行結果:

可以看到穩定在500ms左右打印兩個鎖的結果。

user_1 time: 1568973299578, threadName: Thread-10
user_2 time: 1568973299579, threadName: Thread-1780
user_1 time: 1568973300091, threadName: Thread-887
user_2 time: 1568973300091, threadName: Thread-1542
user_1 time: 1568973300594, threadName: Thread-882
user_2 time: 1568973300594, threadName: Thread-1539
user_2 time: 1568973301098, threadName: Thread-1592
user_1 time: 1568973301098, threadName: Thread-799
user_1 time: 1568973301601, threadName: Thread-444
user_2 time: 1568973301601, threadName: Thread-1096
user_1 time: 1568973302104, threadName: Thread-908
user_2 time: 1568973302104, threadName: Thread-1574
user_2 time: 1568973302607, threadName: Thread-1515
user_1 time: 1568973302607, threadName: Thread-80
user_1 time: 1568973303110, threadName: Thread-274
user_2 time: 1568973303110, threadName: Thread-1774
user_1 time: 1568973303615, threadName: Thread-324
user_2 time: 1568973303615, threadName: Thread-1621

curator實現

上面的原生API實現更易於理解zookeeper實現分佈式鎖的邏輯,但是難免保證沒有什麼問題,比如不是重入鎖,不支持讀寫鎖等。

下面我們一起看看現有的輪子curator是怎麼實現的。

Curator實現分佈式鎖,傳送門直達《Curator實現分佈式鎖》

pom文件

pom文件中引入以下jar包:

<dependency>
    <groupId>org.apache.curator</groupId>
    <artifactId>curator-recipes</artifactId>
    <version>4.0.0</version>
</dependency>
<dependency>
    <groupId>org.apache.curator</groupId>
    <artifactId>curator-framework</artifactId>
    <version>4.0.0</version>
</dependency>

代碼實現

下面是互斥鎖的一種實現方案:

import cn.com.sdd.study.concurrent.zookeeper.ZkCuratorLocker;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

import java.io.IOException;

/**
 * @author suidd
 * @name ZkCuratorLockerTest
 * @description 基於curator zookeeper分佈式鎖實現測試類
 * @date 2020/5/27 14:13
 * Version 1.0
 **/
@SpringBootTest
public class ZkCuratorLockerTest {
    @Autowired
    private ZkCuratorLocker zkCuratorLocker;

    /**
     * @param
     * @return change notes
     * @author suidd
     * @description //基於curator zookeeper分佈式鎖實現測試類
     * @date 2020/5/27 16:21
     **/
    @Test
    public void testZkCuratorLocker() throws IOException {
        for (int i = 0; i < 1000; i++) {
            new Thread(() -> {
                zkCuratorLocker.lock("user_1", () -> {
                    try {
                        System.out.println(String.format("user_1 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-" + i).start();
        }
        for (int i = 10; i < 2000; i++) {
            new Thread(() -> {
                zkCuratorLocker.lock("user_2", () -> {
                    try {
                        System.out.println(String.format("user_2 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-" + i).start();
        }

        System.in.read();
    }
}

除了互斥鎖,curator還提供了讀寫鎖、多重鎖、信號量等實現方式,而且他們是可重入的鎖。

測試代碼

和原生API測試類一樣

    /**
     * @param
     * @return change notes
     * @author suidd
     * @description //基於curator zookeeper分佈式鎖實現測試類
     * @date 2020/5/27 16:21
     **/
    @Test
    public void testZkCuratorLocker() throws IOException {
        for (int i = 0; i < 1000; i++) {
            new Thread(() -> {
                zkCuratorLocker.lock("user_1", () -> {
                    try {
                        System.out.println(String.format("user_1 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-" + i).start();
        }
        for (int i = 10; i < 2000; i++) {
            new Thread(() -> {
                zkCuratorLocker.lock("user_2", () -> {
                    try {
                        System.out.println(String.format("user_2 time: %d, threadName: %s", System.currentTimeMillis(), Thread.currentThread().getName()));
                        Thread.sleep(500);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                });
            }, "Thread-" + i).start();
        }

        System.in.read();
    }

運行結果:

 

user_1 time: 1590567759967, threadName: Thread-442
user_2 time: 1590567759969, threadName: Thread-15
user_1 time: 1590567760623, threadName: Thread-448
user_2 time: 1590567760625, threadName: Thread-16
user_1 time: 1590567761273, threadName: Thread-84
user_2 time: 1590567761275, threadName: Thread-19
user_1 time: 1590567761922, threadName: Thread-513
user_2 time: 1590567761924, threadName: Thread-20
user_1 time: 1590567762571, threadName: Thread-127
user_2 time: 1590567762573, threadName: Thread-23
user_1 time: 1590567763223, threadName: Thread-231
user_2 time: 1590567763225, threadName: Thread-24
user_1 time: 1590567763873, threadName: Thread-506
user_2 time: 1590567763875, threadName: Thread-31
user_1 time: 1590567764529, threadName: Thread-75
user_2 time: 1590567764531, threadName: Thread-28

總結

(1)zookeeper中的節點有四種類型:持久、持久有序、臨時、臨時有序;

(2)zookeeper提供了一種非常重要的特性——監聽機制,它可以用來監聽節點的變化;

(3)zookeeper分佈式鎖是基於 臨時有序節點 + 監聽機制 實現的;

(4)zookeeper分佈式鎖加鎖時在鎖路徑下創建臨時有序節點;

(5)如果自己是第一個節點,則獲得鎖;

(6)如果自己不是第一個節點,則監聽前一個節點,並阻塞當前線程;

(7)當監聽到前一個節點的刪除事件時,喚醒當前節點的線程,並再次檢查自己是不是第一個節點;

(8)使用臨時有序節點而不是持久有序節點是爲了讓客戶端無故斷線時能夠自動釋放鎖;

彩蛋

zookeeper分佈式鎖有哪些優點?

1)zookeeper本身可以集羣部署,相對於mysql的單點更可靠;

2)不會佔用mysql的連接數,不會增加mysql的壓力;

3)使用監聽機制,減少線程上下文切換的次數;

4)客戶端斷線能夠自動釋放鎖,非常安全;

5)有現有的輪子curator可以使用;

6)curator實現方式是可重入的,對現有代碼改造成本小;

zookeeper分佈式鎖有哪些缺點?

1)加鎖會頻繁地“寫”zookeeper,增加zookeeper的壓力;

2)寫zookeeper的時候會在集羣進行同步,節點數越多,同步越慢,獲取鎖的過程越慢;

3)需要另外依賴zookeeper,而大部分服務是不會使用zookeeper的,增加了系統的複雜性;

4)相對於redis分佈式鎖,性能要稍微略差一些;

使用curator問題

1.使用curator報錯KeeperException$UnimplementedException: KeeperErrorCode = Unimplemented

原因是Zookeeper的版本與curator的版本不匹配造成的

curator作爲zookeeper的客戶端,並不是最新版的就沒問題,因爲它的版本和zookeeper的版本有對應關係。

ZooKeeper 3.5.x

Curator4.0十分依賴Zookeeper3.5.X

 

ZooKeeper 3.4.x

Curator4.0在軟兼容模式下支持Zookeeper3.4.X,但是需要依賴排除zookeeper

 

複製代碼

<dependency>

    <groupId>org.apache.curator</groupId>

    <artifactId>curator-recipes</artifactId>

    <version>${curator-version}</version>

    <exclusions>

        <exclusion>

            <groupId>org.apache.zookeeper</groupId>

            <artifactId>zookeeper</artifactId>

        </exclusion>

    </exclusions>

</dependency>

複製代碼

同時必須加入Zookeeper3.4.X的依賴,並且呢,因爲是軟兼容模式,一些3.4.X不具備的新特性是不能使用的。

 

低版本

對於Curator2.X是支持Zookeeper3.4.X的,所以如果目前你是Zookeeper3.4.X的版本,還是使用Curator2.X的吧

比如本人測試用的依賴如下

我本地zookeeper版本是3.4.12,所以如果使用高版本的curator,必須依賴排除zookeeper

<!--curator-->
<dependency>
    <groupId>org.apache.curator</groupId>
    <artifactId>curator-recipes</artifactId>
    <version>4.0.0</version>
    <exclusions>
        <exclusion>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<!--zookeeper-->
<dependency>
    <groupId>org.apache.zookeeper</groupId>
    <artifactId>zookeeper</artifactId>
    <version>3.4.12</version>
</dependency>

參考鏈接:https://www.cnblogs.com/tong-yuan/p/11619006.html#top

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章