最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

分布式框架Zookeeper?api的使用介紹

 更新時(shí)間:2022年09月02日 16:04:22   作者:悠然予夏  
Zookeeper作為?個(gè)分布式框架,主要用來解決分布式?致性問題,它提供了簡單的分布式原語,并且對(duì)多種編程語?提供了API,所以接下來重點(diǎn)來看下Zookeeper的java客戶端API使用方式

前言

Zookeeper API共包含五個(gè)包,分別為:

  • org.apache.zookeeper
  • org.apache.zookeeper.data
  • org.apache.zookeeper.server
  • org.apache.zookeeper.server.quorum
  • org.apache.zookeeper.server.upgrade

其中org.apache.zookeeper,包含Zookeeper類,他是我們編程時(shí)最常?的類文件。這個(gè)類是Zookeeper客戶端的主要類文件。如果要使用Zookeeper服務(wù),應(yīng)?程序?先必須創(chuàng)建?個(gè)Zookeeper實(shí)例,這時(shí)就需要使用此類。?旦客戶端和Zookeeper服務(wù)端建立起了連接,Zookeeper系統(tǒng)將會(huì)給本次連接會(huì)話分配?個(gè)ID值,并且客戶端將會(huì)周期性的向服務(wù)器端發(fā)送心跳來維持會(huì)話連接。只要連接有效,客戶端就可以使?Zookeeper API來做相應(yīng)處理了

導(dǎo)入依賴

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

建立會(huì)話

package com.lagou.api;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;
public class CreateSession implements Watcher {
    private static CountDownLatch countDownLatch = new CountDownLatch(1);
    /**
     * 建立會(huì)話
     */
    public static void main(String[] args) throws IOException, InterruptedException {
        /*
            客戶端可以通過創(chuàng)建?個(gè)zk實(shí)例來連接zk服務(wù)器
            new Zookeeper(connectString,sesssionTimeOut,Wather)
            connectString: 連接地址:IP:端?
            sesssionTimeOut:會(huì)話超時(shí)時(shí)間:單位毫秒
            Wather:監(jiān)聽器(當(dāng)特定事件觸發(fā)監(jiān)聽時(shí),zk會(huì)通過watcher通知到客戶端)
        */
        ZooKeeper zooKeeper = new ZooKeeper("127.0.0.1:2181", 5000, new CreateSession());
        System.out.println(zooKeeper.getState());
        // 計(jì)數(shù)工具類 CountDownLatch : 不讓main方法結(jié)束,讓線程處于等待阻塞
        countDownLatch.await();
        System.out.println("客戶端與服務(wù)端會(huì)話真正建立了");
    }
    /**
     * 回調(diào)方法:處理來自服務(wù)器端的watcher通知
     */
    // 當(dāng)前類實(shí)現(xiàn)了Watcher接?,重寫了process?法,該?法負(fù)責(zé)處理來?Zookeeper服務(wù)端的watcher通知,在收到服務(wù)端發(fā)送過來的SyncConnected事件之后,解除主程序在CountDownLatch上的等待阻塞,?此,會(huì)話創(chuàng)建完畢
    public void process(WatchedEvent watchedEvent) {
        //當(dāng)連接創(chuàng)建了,服務(wù)端發(fā)送給客戶端SyncConnected事件
        if(watchedEvent.getState() == Event.KeeperState.SyncConnected) {
            // 解除主程序在CountDownLatch上的等待阻塞
            countDownLatch.countDown();
        }
    }
}

注意,ZooKeeper 客戶端和服務(wù)端會(huì)話的建立是?個(gè)異步的過程,也就是說在程序中,構(gòu)造?法會(huì)在處理完客戶端初始化工作后立即返回,在?多數(shù)情況下,此時(shí)并沒有真正建立好?個(gè)可用的會(huì)話,在會(huì)話的生命周期中處于“CONNECTING”的狀態(tài)。當(dāng)該會(huì)話真正創(chuàng)建完畢后ZooKeeper服務(wù)端會(huì)向會(huì)話對(duì)應(yīng)的客戶端發(fā)送?個(gè)事件通知,以告知客戶端,客戶端只有在獲取這個(gè)通知之后,才算真正建立了會(huì)話。

創(chuàng)建節(jié)點(diǎn)

package com.lagou.api;
import org.apache.zookeeper.*;
import java.io.IOException;
import java.util.concurrent.CountDownLatch;
public class CreateNote implements Watcher {
    private static ZooKeeper zooKeeper;
    /**
     * 建立會(huì)話
     */
    public static void main(String[] args) throws IOException, InterruptedException, KeeperException {
        /*
            客戶端可以通過創(chuàng)建?個(gè)zk實(shí)例來連接zk服務(wù)器
            new Zookeeper(connectString,sesssionTimeOut,Wather)
            connectString: 連接地址:IP:端?
            sesssionTimeOut:會(huì)話超時(shí)時(shí)間:單位毫秒
            Wather:監(jiān)聽器(當(dāng)特定事件觸發(fā)監(jiān)聽時(shí),zk會(huì)通過watcher通知到客戶端)
        */
        zooKeeper = new ZooKeeper("127.0.0.1:2181", 5000, new CreateNote());
        System.out.println(zooKeeper.getState());
        Thread.sleep(Integer.MAX_VALUE);
    }
    // 創(chuàng)建節(jié)點(diǎn)的方法
    private static void createNoteSync() throws InterruptedException, KeeperException {
        /**
         *	path	:節(jié)點(diǎn)創(chuàng)建的路徑
         *	data[]	:節(jié)點(diǎn)創(chuàng)建要保存的數(shù)據(jù),是個(gè)byte類型的
         *	acl	:節(jié)點(diǎn)創(chuàng)建的權(quán)限信息(4種類型)
         *	    ANYONE_ID_UNSAFE	: 表示任何?
         *	    AUTH_IDS	:此ID僅可?于設(shè)置ACL。它將被客戶機(jī)驗(yàn)證的ID替換。
         *	    OPEN_ACL_UNSAFE	:這是?個(gè)完全開放的ACL(常?)--> world:anyone
         *	    CREATOR_ALL_ACL	:此ACL授予創(chuàng)建者身份驗(yàn)證ID的所有權(quán)限
         *	createMode	:創(chuàng)建節(jié)點(diǎn)的類型(4種類型)
         *	    PERSISTENT:持久節(jié)點(diǎn)
         *	    PERSISTENT_SEQUENTIAL:持久順序節(jié)點(diǎn)
         *	    EPHEMERAL:臨時(shí)節(jié)點(diǎn)
         *	    EPHEMERAL_SEQUENTIAL:臨時(shí)順序節(jié)點(diǎn)
         String node = zookeeper.create(path,data,acl,createMode);
         */
        // 持久節(jié)點(diǎn)
        String note_persistent = zooKeeper.create("/lg-persistent", "持久節(jié)點(diǎn)內(nèi)容".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
        // 臨時(shí)節(jié)點(diǎn)
        String note_ephemeral = zooKeeper.create("/lg-ephemeral", "臨時(shí)節(jié)點(diǎn)內(nèi)容".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.EPHEMERAL);
        // 持久順序節(jié)點(diǎn)
        String note_sequential = zooKeeper.create("/lg-sequential", "持久順序節(jié)點(diǎn)內(nèi)容".getBytes(), ZooDefs.Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT_SEQUENTIAL);
        System.out.println("創(chuàng)建的持久節(jié)點(diǎn): " + note_persistent);
        System.out.println("創(chuàng)建的臨時(shí)節(jié)點(diǎn): " + note_ephemeral);
        System.out.println("創(chuàng)建的持久順序節(jié)點(diǎn): " + note_sequential);
    }
    /**
     * 回調(diào)方法:處理來自服務(wù)器端的watcher通知
     */
    public void process(WatchedEvent watchedEvent) {
        // SyncConnected
        if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
            // 創(chuàng)建節(jié)點(diǎn)
            try {
                createNoteSync();
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    }
}

獲取節(jié)點(diǎn)數(shù)據(jù)

package com.lagou.api;
import org.apache.zookeeper.*;
import java.io.IOException;
import java.util.List;
public class GetNoteData implements Watcher {
    private static ZooKeeper zooKeeper;
    /**
     * 建立會(huì)話
     */
    public static void main(String[] args) throws IOException, InterruptedException, KeeperException {
        /*
            客戶端可以通過創(chuàng)建?個(gè)zk實(shí)例來連接zk服務(wù)器
            new Zookeeper(connectString,sesssionTimeOut,Wather)
            connectString: 連接地址:IP:端?
            sesssionTimeOut:會(huì)話超時(shí)時(shí)間:單位毫秒
            Wather:監(jiān)聽器(當(dāng)特定事件觸發(fā)監(jiān)聽時(shí),zk會(huì)通過watcher通知到客戶端)
        */
        zooKeeper = new ZooKeeper("127.0.0.1:2181", 5000, new GetNoteData());
        System.out.println(zooKeeper.getState());
        Thread.sleep(Integer.MAX_VALUE);
    }
    /**
     * 回調(diào)方法:處理來自服務(wù)器端的watcher通知
     */
    public void process(WatchedEvent watchedEvent) {
        /*
            子節(jié)點(diǎn)列表發(fā)生改變時(shí),服務(wù)端會(huì)發(fā)送noteChildrenChanged事件通知
            要重新獲取子節(jié)點(diǎn)列表,同時(shí)注意:通知是一次性的,需要反復(fù)注冊(cè)監(jiān)聽
         */
        if (watchedEvent.getType() == Event.EventType.NodeChildrenChanged) {
            List<String> children = null;
            try {
                children = zooKeeper.getChildren("/lg-persistent", true);
            } catch (KeeperException | InterruptedException e) {
                throw new RuntimeException(e);
            }
            System.out.println(children);
        }
        // SyncConnected
        if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
            // 獲取節(jié)點(diǎn)數(shù)據(jù)的方法
            try {
                getNoteData();
                // 獲取節(jié)點(diǎn)的子節(jié)點(diǎn)列表方法
                getChildren();
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    }
    /*
        獲取某個(gè)節(jié)點(diǎn)的內(nèi)容
     */
    private void getNoteData() throws Exception {
        /**
         *	path	: 獲取數(shù)據(jù)的路徑
         *	watch	: 是否開啟監(jiān)聽
         *	stat	: 節(jié)點(diǎn)狀態(tài)信息
         *	    null: 表示獲取最新版本的數(shù)據(jù)
         *	zk.getData(path, watch, stat);
         */
        byte[] data = zooKeeper.getData("/lg-persistent", false, null);
        System.out.println(new String(data));
    }
    /*
        獲取某個(gè)節(jié)點(diǎn)的子節(jié)點(diǎn)列表方法
     */
    public static void getChildren() throws InterruptedException, KeeperException {
        /*
            path:路徑
            watch:是否要啟動(dòng)監(jiān)聽,當(dāng)?節(jié)點(diǎn)列表發(fā)?變化,會(huì)觸發(fā)監(jiān)聽
            zooKeeper.getChildren(path, watch);
        */
        List<String> children = zooKeeper.getChildren("/lg-persistent", true);
        System.out.println(children);
    }
}

修改節(jié)點(diǎn)數(shù)據(jù)

package com.lagou.api;
import org.apache.zookeeper.*;
import org.apache.zookeeper.data.Stat;
import java.io.IOException;
public class UpdateNoteData implements Watcher {
    private static ZooKeeper zooKeeper;
    /**
     * 建立會(huì)話
     */
    public static void main(String[] args) throws IOException, InterruptedException, KeeperException {
        /*
            客戶端可以通過創(chuàng)建?個(gè)zk實(shí)例來連接zk服務(wù)器
            new Zookeeper(connectString,sesssionTimeOut,Wather)
            connectString: 連接地址:IP:端?
            sesssionTimeOut:會(huì)話超時(shí)時(shí)間:單位毫秒
            Wather:監(jiān)聽器(當(dāng)特定事件觸發(fā)監(jiān)聽時(shí),zk會(huì)通過watcher通知到客戶端)
        */
        zooKeeper = new ZooKeeper("127.0.0.1:2181", 5000, new UpdateNoteData());
        System.out.println(zooKeeper.getState());
        Thread.sleep(Integer.MAX_VALUE);
    }
    /**
     * 回調(diào)方法:處理來自服務(wù)器端的watcher通知
     */
    public void process(WatchedEvent watchedEvent) {
        // SyncConnected
        if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
            // 更新數(shù)據(jù)節(jié)點(diǎn)內(nèi)容的方法
            try {
                updateNoteSync();
            } catch (InterruptedException | KeeperException e) {
                throw new RuntimeException(e);
            }
        }
    }
    /*
        更新數(shù)據(jù)節(jié)點(diǎn)內(nèi)容的方法
     */
    private void updateNoteSync() throws InterruptedException, KeeperException {
        /*
            path:路徑
            data:要修改的內(nèi)容 byte[]
            version:為-1,表示對(duì)最新版本的數(shù)據(jù)進(jìn)?修改
            zooKeeper.setData(path, data,version);
        */
        byte[] data = zooKeeper.getData("/lg-persistent", false, null);
        System.out.println("修改前的值:" + new String(data));
        // 修改 /lg-persistent 的數(shù)據(jù)    stat: 狀態(tài)信息對(duì)象
        Stat stat = zooKeeper.setData("/lg-persistent", "客戶端修改了節(jié)點(diǎn)數(shù)據(jù)".getBytes(), -1);
        byte[] data2 = zooKeeper.getData("/lg-persistent", false, null);
        System.out.println("修改后的值:" + new String(data2));
    }
}

刪除節(jié)點(diǎn)

package com.lagou.api;
import org.apache.zookeeper.*;
import org.apache.zookeeper.data.Stat;
import java.io.IOException;
public class DeleteNote implements Watcher {
    private static ZooKeeper zooKeeper;
    /**
     * 建立會(huì)話
     */
    public static void main(String[] args) throws IOException, InterruptedException, KeeperException {
        /*
            客戶端可以通過創(chuàng)建?個(gè)zk實(shí)例來連接zk服務(wù)器
            new Zookeeper(connectString,sesssionTimeOut,Wather)
            connectString: 連接地址:IP:端?
            sesssionTimeOut:會(huì)話超時(shí)時(shí)間:單位毫秒
            Wather:監(jiān)聽器(當(dāng)特定事件觸發(fā)監(jiān)聽時(shí),zk會(huì)通過watcher通知到客戶端)
        */
        zooKeeper = new ZooKeeper("127.0.0.1:2181", 5000, new DeleteNote());
        System.out.println(zooKeeper.getState());
        Thread.sleep(Integer.MAX_VALUE);
    }
    /**
     * 回調(diào)方法:處理來自服務(wù)器端的watcher通知
     */
    public void process(WatchedEvent watchedEvent) {
        // SyncConnected
        if (watchedEvent.getState() == Event.KeeperState.SyncConnected) {
            // 刪除節(jié)點(diǎn)
            try {
                deleteNoteSync();
            } catch (InterruptedException | KeeperException e) {
                throw new RuntimeException(e);
            }
        }
    }
    /*
        刪除節(jié)點(diǎn)方法
     */
    private void deleteNoteSync() throws InterruptedException, KeeperException {
        /*
            zooKeeper.exists(path,watch) :判斷節(jié)點(diǎn)是否存在
            zookeeper.delete(path,version) : 刪除節(jié)點(diǎn)
        */
        Stat stat = zooKeeper.exists("/lg-persistent/c1", false);
        System.out.println(stat == null ? "該節(jié)點(diǎn)不存在" : "該節(jié)點(diǎn)存在");
        if (stat != null) {
            zooKeeper.delete("/lg-persistent/c1", -1);
        }
        Stat stat2 = zooKeeper.exists("/lg-persistent/c1", false);
        System.out.println(stat2 == null ? "該節(jié)點(diǎn)不存在" : "該節(jié)點(diǎn)存在");
    }
}

到此這篇關(guān)于分布式框架Zookeeper api的使用介紹的文章就介紹到這了,更多相關(guān)Zookeeper api內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • java實(shí)現(xiàn)系統(tǒng)托盤示例

    java實(shí)現(xiàn)系統(tǒng)托盤示例

    桌面的系統(tǒng)托盤即當(dāng)程序最小化或者關(guān)閉按鈕程序并沒有退出,而是最小化在任務(wù)狀態(tài)區(qū)域,下面是使用java實(shí)現(xiàn)系統(tǒng)托盤示例
    2014-03-03
  • Java實(shí)現(xiàn)排球比賽計(jì)分系統(tǒng)

    Java實(shí)現(xiàn)排球比賽計(jì)分系統(tǒng)

    這篇文章主要為大家詳細(xì)介紹了Java實(shí)現(xiàn)排球比賽計(jì)分系統(tǒng),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Java 基于TCP Socket 實(shí)現(xiàn)文件上傳

    Java 基于TCP Socket 實(shí)現(xiàn)文件上傳

    這篇文章主要介紹了Java 基于TCP Socket 實(shí)現(xiàn)文件上傳的示例代碼,幫助大家更好的理解和使用Java,感興趣的朋友可以了解下
    2020-12-12
  • springboot Mongodb的集成與使用實(shí)例詳解

    springboot Mongodb的集成與使用實(shí)例詳解

    這篇文章主要介紹了springboot Mongodb的集成與使用實(shí)例詳解,需要的朋友可以參考下
    2018-04-04
  • SpringCloudGateway 網(wǎng)關(guān)登錄校驗(yàn)實(shí)現(xiàn)思路

    SpringCloudGateway 網(wǎng)關(guān)登錄校驗(yàn)實(shí)現(xiàn)思路

    文章介紹了在微服務(wù)架構(gòu)中使用Spring Cloud Gateway進(jìn)行登錄校驗(yàn)的方法,通過在網(wǎng)關(guān)層面進(jìn)行登錄校驗(yàn),并將用戶信息通過請(qǐng)求頭傳遞給下游微服務(wù),解決了每個(gè)微服務(wù)都需要獨(dú)立進(jìn)行登錄校驗(yàn)的問題,此外,還討論了如何在微服務(wù)之間傳遞用戶信息
    2024-11-11
  • java實(shí)現(xiàn)簡易飛機(jī)大戰(zhàn)

    java實(shí)現(xiàn)簡易飛機(jī)大戰(zhàn)

    這篇文章主要為大家詳細(xì)介紹了java實(shí)現(xiàn)簡易飛機(jī)大戰(zhàn),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-05-05
  • Java自定義長度可變數(shù)組的操作

    Java自定義長度可變數(shù)組的操作

    這篇文章主要介紹了Java自定義長度可變數(shù)組的操作,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2021-02-02
  • jxl 導(dǎo)出數(shù)據(jù)到excel的實(shí)例講解

    jxl 導(dǎo)出數(shù)據(jù)到excel的實(shí)例講解

    下面小編就為大家分享一篇jxl 導(dǎo)出數(shù)據(jù)到excel的實(shí)例講解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2017-12-12
  • JavaEE在線人數(shù)管理系統(tǒng)

    JavaEE在線人數(shù)管理系統(tǒng)

    這篇文章主要為大家分享了JavaEE在線人數(shù)管理系統(tǒng),顯示在線人數(shù)、在線人詳細(xì)信息、管理員踢人等功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-09-09
  • maven插件maven-assembly-plugin打包歸納文件zip/tar使用

    maven插件maven-assembly-plugin打包歸納文件zip/tar使用

    java項(xiàng)目運(yùn)行的文件需要jar或者war格式,同時(shí)還需要使用Java命令,本文主要介紹了maven插件maven-assembly-plugin打包歸納文件zip/tar使用,具有一定的參考價(jià)值,感興趣的可以了解一下
    2024-02-02

最新評(píng)論

通江县| 竹山县| 即墨市| 塔河县| 陈巴尔虎旗| 甘泉县| 宣城市| 上饶市| 红河县| 和顺县| 孟州市| 合阳县| 武定县| 西安市| 什邡市| 九寨沟县| 台前县| 乌海市| 金秀| 贵阳市| 绥滨县| 开封县| 罗源县| 榕江县| 临朐县| 林州市| 搜索| 紫金县| 金塔县| 东平县| 邢台市| 宣威市| 喀什市| 石台县| 隆尧县| 霍山县| 云浮市| 姚安县| 建水县| 尼木县| 伽师县|