Skip to Content
ZooKeeperによる分散システム管理
book

ZooKeeperによる分散システム管理

by Flavio Junqueira, Benjamin Reed, 中田 秀基
October 2014
Beginner to intermediate
240 pages
3h 38m
Japanese
O'Reilly Japan, Inc.
Content preview from ZooKeeperによる分散システム管理

3章ZooKeeper API入門

前章では、zkCliを用いて基本的なZooKeeperの操作を紹介した。本章では、アプリケーションで実際にどのようにAPIを用いるかを見ていく。まず、ZooKeeperのAPIを使ったプログラミングを紹介し、セッションの作り方とWatcherの実装法を紹介する。さらに、マスタ・ワーカのサンプルアプリケーションを書く。

3.1 ZooKeeper CLASSPATHの設定

ZooKeeperのJavaプログラムをコンパイルし、実行するためには適切にクラスパスを設定しなければならない。ZooKeeperは、本体のJARファイル以外にも多くのサードパーティライブラリを用いる。タイピングを少しだけ楽にし、読みやすくするために、環境変数CLASSPATHに必要なすべてのライブラリを入れておこう。ZooKeeperの配布パッケージのbinディレクトリのzkEnv.shが環境変数を設定してくれる。このスクリプトを次のように実行する。

ZOOBINDIR="<配布パッケージのパス>/bin"
. "$ZOOBINDIR"/zkEnv.sh

(Windowsではピリオドの代わりにcallを用い、zkEnv.shではなくzkEnv.cmdスクリプトを用いる。)

スクリプトを実行すれば、CLASSPATH変数が正しく設定される。これらを用いてJavaプログラムをコンパイルし実行する。

3.2 ZooKeeperセッションの作成

ZooKeeper APIはZooKeeperハンドルを中心に構成されている。ハンドルはすべてのAPI呼び出しで用いられる。このハンドルは、ZooKeeperとのセッションを表している。図3-1に示すように、ZooKeeperの1つのサーバとの間に確立したセッションは、その接続が途絶えると他のZooKeeperサーバにマイグレートする。セッションが生きている限り、ハンドルは有効である。ZooKeeperクライアントライブラリは、セッションを維持するために、ZooKeeperサーバとの接続を維持しようとし続ける。ハンドルがクローズされた場合は、ZooKeeperクライアントは、サーバが接続を遮断したのだとわかる。ZooKeeperはクライアントが死んだと判断すると、セッションを無効化する。その後クライアントが、無効化されたセッションに対応するハンドルを使ってZooKeeperサーバに接続しようとすると、ZooKeeperサーバはクライアントライブラリにそのセッションが無効になっていることを知らせる。するとそのハンドルを使った操作はすべてエラーを返す。 ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

パフォーマンス向上のためのデザイン設計

パフォーマンス向上のためのデザイン設計

Lara Callender Hogan, 西脇 靖紘, 星野 靖子
Python機械学習クックブック

Python機械学習クックブック

Chris Albon, 中田 秀基
Javaパフォーマンス

Javaパフォーマンス

Scott Oaks, Acroquest Technology株式会社, 寺田 佳央, 牧野 聡
ハイパフォーマンスPython

ハイパフォーマンスPython

Micha Gorelick, Ian Ozsvald, 相川 愛三

Publisher Resources

ISBN: 9784873116938Other