Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Zookeeper を使用して、クライアントとデータベースの間で単一のクライアント書き込みロックを適用するにはどうすればよいですか?
(つまり、一度に 1 つのクライアントだけがデータベースに書き込むことができます)
Python を使用している場合、Kazoo でこれを行うのは簡単です。
from kazoo.client import KazooClient
k = KazooClient(マイホスト) k.start()
k.Lock() を使用: do_exlusive_write()