Zookper是一種分布式的,開(kāi)源的,應(yīng)用于分布式應(yīng)用的協(xié)作服務(wù)。它提供了一些簡(jiǎn)單的操作,使得分布式應(yīng)用可以基于這些接口實(shí)現(xiàn)諸如同步、配置維護(hù)和分集群或者命名的服務(wù)。Zookper很容易編程接入,它使用了一個(gè)和文件樹(shù)結(jié)構(gòu)相似的數(shù)據(jù)模型。
雖然ZooKeeper是一個(gè)Java應(yīng)用程序,但C也可以使用。這里就有個(gè)PHP的擴(kuò)展,你可以從PECL中下載,或從GitHub中直接獲取PHP-ZooKeeper。
要使用該擴(kuò)展你首先要安裝ZooKeeper。可以從官方網(wǎng)站下載。
$ tar zxfv zookeeper-3.4.5.tar.gz
$ cd zookeeper-3.4.5/src/c
$ ./configure --prefix=/usr/
$ make
$ sudo make install
這樣就會(huì)安裝ZooKeeper的庫(kù)和頭文件。現(xiàn)在準(zhǔn)備編譯PHP擴(kuò)展。
$ git clone https://github.com/andreiz/php-zookeeper.git
$ cd php-zookeeper
$ phpize
$ ./configure
$ make
$ sudo make install
將“zookeeper.so”添加到PHP配置中。
$ vim /etc/php5/cli/conf.d/20-zookeeper.ini
因?yàn)槲也恍枰\(yùn)行在web服務(wù)環(huán)境下,所以這里我只編輯了CLI的配置。將下面的行復(fù)制到ini文件中。
使用如下命令來(lái)確定擴(kuò)展是否已起作用。
$ php -m | grep zookeeper
zookeeper
現(xiàn)在是時(shí)候運(yùn)行ZooKeeper了。目前唯一還沒(méi)有做的是配置。創(chuàng)建一個(gè)用于存放所有service數(shù)據(jù)的目錄。
$ mkdir /home/you-account/zoo
$ cd
$ cd zookeeper-3.4.5/
$ cp conf/zoo_sample.cfg conf/zoo.cfg
$ vim conf/zoo.cfg
找到名為“dataDir”的屬性,將其指向“/home/you-account/zoo”目錄。
$ bin/zkServer.sh start
$ bin/zkCli.sh -server 127.0.0.1:2181
[zk: 127.0.0.1:2181(CONNECTED) 14] create /test 1
Created /test
[zk: 127.0.0.1:2181(CONNECTED) 19] ls /
[test, zookeeper]
此時(shí),你已成功連到了ZooKeeper,并創(chuàng)建了一個(gè)名為“/test”的znode(稍后我們會(huì)用到)。ZooKeeper以樹(shù)形結(jié)構(gòu)保存數(shù)據(jù)。這很類(lèi)似于文件系統(tǒng),但“文件夾”(譯者注:這里指非最底層的節(jié)點(diǎn))又和文件很像。znode是ZooKeeper保存的實(shí)體。Node(節(jié)點(diǎn))的說(shuō)法很容易被混淆,所以為了避免混淆這里使用了znode。
因?yàn)槲覀兩院筮€會(huì)使用,所以這里我們讓客戶(hù)端保持連接狀態(tài)。開(kāi)啟一個(gè)新窗口,并創(chuàng)建一個(gè)zookeeperdemo1.php文件。
?php
class ZookeeperDemo extends Zookeeper {
public function watcher( $i, $type, $key ) {
echo "Insider Watcher\n";
// Watcher gets consumed so we need to set a new one
$this->get( '/test', array($this, 'watcher' ) );
}
}
$zoo = new ZookeeperDemo('127.0.0.1:2181');
$zoo->get( '/test', array($zoo, 'watcher' ) );
while( true ) {
echo '.';
sleep(2);
}
現(xiàn)在運(yùn)行該腳本。
此處應(yīng)該會(huì)每隔2秒產(chǎn)生一個(gè)點(diǎn)。現(xiàn)在切換到ZooKeeper客戶(hù)端,并更新“/test”值。
[zk: 127.0.0.1:2181(CONNECTED) 20] set /test foo
這樣就會(huì)靜默觸發(fā)PHP腳本中的“Insider Watcher”消息。怎么會(huì)這樣的?
ZooKeeper提供了可以綁定在znode的監(jiān)視器。如果監(jiān)視器發(fā)現(xiàn)znode發(fā)生變化,該service會(huì)立即通知所有相關(guān)的客戶(hù)端。這就是PHP腳本如何知道變化的。Zookeeper::get方法的第二個(gè)參數(shù)是回調(diào)函數(shù)。當(dāng)觸發(fā)事件時(shí),監(jiān)視器會(huì)被消費(fèi)掉,所以我們需要在回調(diào)函數(shù)中再次設(shè)置監(jiān)視器。
現(xiàn)在你可以準(zhǔn)備創(chuàng)建分布式應(yīng)用程序了。其中的挑戰(zhàn)是讓這些獨(dú)立的程序決定哪個(gè)(是leader)協(xié)調(diào)它們的工作,以及哪些(是worker)需要執(zhí)行。這個(gè)處理過(guò)程叫做leader選舉,在ZooKeeper Recipes and Solutions你能看到相關(guān)的實(shí)現(xiàn)方法。
這里簡(jiǎn)單來(lái)說(shuō)就是,每個(gè)處理(或服務(wù)器)緊盯著相鄰的那個(gè)處理(或服務(wù)器)。如果一個(gè)已被監(jiān)視的處理(也即Leader)退出或者崩潰了,監(jiān)視程序就會(huì)查找其相鄰(此時(shí)最老)的那個(gè)處理作為L(zhǎng)eader。
在真實(shí)的應(yīng)用程序中,leader會(huì)給worker分配任務(wù)、監(jiān)控進(jìn)程和保存結(jié)果。這里為了簡(jiǎn)化,我跳過(guò)了這些部分。
創(chuàng)建一個(gè)新的PHP文件,命名為worker.php。
?php
class Worker extends Zookeeper {
const CONTAINER = '/cluster';
protected $acl = array(
array(
'perms' => Zookeeper::PERM_ALL,
'scheme' => 'world',
'id' => 'anyone' ) );
private $isLeader = false;
private $znode;
public function __construct( $host = '', $watcher_cb = null, $recv_timeout = 10000 ) {
parent::__construct( $host, $watcher_cb, $recv_timeout );
}
public function register() {
if( ! $this->exists( self::CONTAINER ) ) {
$this->create( self::CONTAINER, null, $this->acl );
}
$this->znode = $this->create( self::CONTAINER . '/w-',
null,
$this->acl,
Zookeeper::EPHEMERAL | Zookeeper::SEQUENCE );
$this->znode = str_replace( self::CONTAINER .'/', '', $this->znode );
printf( "I'm registred as: %s\n", $this->znode );
$watching = $this->watchPrevious();
if( $watching == $this->znode ) {
printf( "Nobody here, I'm the leader\n" );
$this->setLeader( true );
}
else {
printf( "I'm watching %s\n", $watching );
}
}
public function watchPrevious() {
$workers = $this->getChildren( self::CONTAINER );
sort( $workers );
$size = sizeof( $workers );
for( $i = 0 ; $i $size ; $i++ ) {
if( $this->znode == $workers[ $i ] ) {
if( $i > 0 ) {
$this->get( self::CONTAINER . '/' . $workers[ $i - 1 ], array( $this, 'watchNode' ) );
return $workers[ $i - 1 ];
}
return $workers[ $i ];
}
}
throw new Exception( sprintf( "Something went very wrong! I can't find myself: %s/%s",
self::CONTAINER,
$this->znode ) );
}
public function watchNode( $i, $type, $name ) {
$watching = $this->watchPrevious();
if( $watching == $this->znode ) {
printf( "I'm the new leader!\n" );
$this->setLeader( true );
}
else {
printf( "Now I'm watching %s\n", $watching );
}
}
public function isLeader() {
return $this->isLeader;
}
public function setLeader($flag) {
$this->isLeader = $flag;
}
public function run() {
$this->register();
while( true ) {
if( $this->isLeader() ) {
$this->doLeaderJob();
}
else {
$this->doWorkerJob();
}
sleep( 2 );
}
}
public function doLeaderJob() {
echo "Leading\n";
}
public function doWorkerJob() {
echo "Working\n";
}
}
$worker = new Worker( '127.0.0.1:2181' );
$worker->run();
打開(kāi)至少3個(gè)終端,在每個(gè)終端中運(yùn)行以下腳本:
# term1
$ php worker.php
I'm registred as: w-0000000001
Nobody here, I'm the leader
Leading
# term2
$ php worker.php
I'm registred as: w-0000000002
I'm watching w-0000000001
Working
# term3
$ php worker.php
I'm registred as: w-0000000003
I'm watching w-0000000002
Working
現(xiàn)在模擬Leader崩潰的情形。使用Ctrl+c或其他方法退出第一個(gè)腳本。剛開(kāi)始不會(huì)有任何變化,worker可以繼續(xù)工作。后來(lái),ZooKeeper會(huì)發(fā)現(xiàn)超時(shí),并選舉出新的leader。
雖然這些腳本很容易理解,但是還是有必要對(duì)已使用的Zookeeper標(biāo)志作注釋。
$this->znode = $this->create( self::CONTAINER . '/w-',
null,
$this->acl,
Zookeeper::EPHEMERAL | Zookeeper::SEQUENCE );
每個(gè)znode都是EPHEMERAL和SEQUENCE的。
EPHEMRAL代表當(dāng)客戶(hù)端失去連接時(shí)移除該znode。這就是為何PHP腳本會(huì)知道超時(shí)。SEQUENCE代表在每個(gè)znode名稱(chēng)后添加順序標(biāo)識(shí)。我們通過(guò)這些唯一標(biāo)識(shí)來(lái)標(biāo)記worker。
在PHP部分還有些問(wèn)題要注意。該擴(kuò)展目前還是beta版,如果使用不當(dāng)很容易發(fā)生segmentation fault。比如,不能傳入普通函數(shù)作為回調(diào)函數(shù),傳入的必須為方法。我希望更多PHP社區(qū)的同仁可以看到Apache ZooKeeper的好,同時(shí)該擴(kuò)展也會(huì)獲得更多的支持。
ZooKeeper是一個(gè)強(qiáng)大的軟件,擁有簡(jiǎn)潔和簡(jiǎn)單的API。由于文檔和示例都做的很好,任何人都可以很容易的編寫(xiě)分布式軟件。
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請(qǐng)查看下面相關(guān)鏈接
您可能感興趣的文章:- PHP添加文字水印或圖片水印的水印類(lèi)完整源代碼與使用示例
- PHP實(shí)現(xiàn)對(duì)數(shù)字分隔加千分號(hào)的方法
- PHP生成指定范圍內(nèi)的N個(gè)不重復(fù)的隨機(jī)數(shù)
- PHP中十六進(jìn)制顏色與RGB顏色值互轉(zhuǎn)的方法
- Ubuntu16.04搭建php5.6Web服務(wù)器環(huán)境
- PHP標(biāo)準(zhǔn)庫(kù)(PHP SPL)詳解
- PHP PDO數(shù)據(jù)庫(kù)操作預(yù)處理與注意事項(xiàng)
- PHP-FPM的配置與優(yōu)化講解
- php-fpm中max_children的配置
- PHP自動(dòng)生成縮略圖函數(shù)的源碼示例