If I watch events from the Zookeeper CLI I see all of them, however some are not "seen" by the Zookeeper rust client. For example, in the screenshot below you can see a NodeCreated and NodeDeleted for the path /nodes/node0000000079 in the CLI.
But I only get one watch in rust
Is this a bug in the Zookeeper rust client or should I be looking elsewhere?
Hi,
In my local setup I have seen several times how watch events seem to be lost by the Zookeper client. This is the code where I watch for events:
And I'm running zookeeper via docker compose
If I watch events from the Zookeeper CLI I see all of them, however some are not "seen" by the Zookeeper rust client. For example, in the screenshot below you can see a
NodeCreated
andNodeDeleted
for the path/nodes/node0000000079
in the CLI.But I only get one watch in rust
Is this a bug in the Zookeeper rust client or should I be looking elsewhere?