kazoo
kazoo copied to clipboard
Kazoo is a high-level Python library that makes it easier to use Apache Zookeeper.
We're seeing in our stack traces that a `NoNodeError` is thrown here https://github.com/python-zk/kazoo/blob/88b657a0977161f3815657878ba48f82a97a3846/kazoo/recipe/lock.py#L225 quite a bit. I know that it should be impossible for it to happen because of this...
Hi, Current versions of Zookeeper allow to specify a TTL for node removal. What about making this library compatible with that? Thanks in advance, Daniel
Hi there! First of all, thank you for such a great recipe as `TreeCache`. We recently tried to use it, but started experiencing ussies upon reconnection with large trees. After...
1. start python process,create zk client,hosts has two effective zk server 2. find zk client connect zk server and kill this zk server 3. don't reconnect other zk server and...
Hi ,guys, here is my code ``` python def watch_state(state): """ Listen zookeeper connection events """ if state == KazooState.LOST: self.logger.warn('connection to zookeeper lost, session expired') elif state == KazooState.SUSPENDED:...
We are using zookeeper Go client and Python client in different pod in kubernetes but using the same zookeeper infrastructure. Two pods are trying to use a lock with the...
I sincere recommend kazoo to support asyncio handler, your know twisted can be transform object from asyncio , in the future, may more and more Asynchronous framework can be transform...
The TreeCache recipe is not bounded to the client while initialization. Is that on purpose or its just a miss?
Please correct me if I am wrong, but there is currently no way how to retry a connection of datawatcher when the zookeeper cluster goes offline or some connectivity issue...
I use uwsgi to start django application, which call `start` method in kazoo client instance to connect zookeeper server, it hangs. even if I use `--enable-threads` . Exception traceback as...