Hi, ZooKeeper's documentation [1] mentions as Timeliness consistency guarantee:
--- The clients view of the system is guaranteed to be up-to-date within a certain time bound. (On the order of tens of seconds.) Either system changes will be seen by a client within this bound, or the client will detect a service outage. -- Can we safely assume this guarantee is governed by the syncLimit configuration property? That is, if a client A successfully writes to a znode /example at T0, and another client B successfully reads from /example at T0 + syncLimit + 1 without any updates in between to this ZNode, client B is *guaranteed* to read the value written by A, even without explicitly calling the *sync API*? Thanks, Paulo [1] https://zookeeper.apache.org/doc/r3.3.3/zookeeperProgrammers.html