znodes
In Apache ZooKeeper, znodes are the nodes that form the hierarchical namespace used to store small amounts of data and metadata. Each znode has a path, holds a data payload (as a byte array), and a stat with versioning information. The data payload is limited by a default size of 1 MB.
Znodes come in several flavors: persistent znodes remain until explicitly deleted; ephemeral znodes are tied to
Clients can read and write znode data, check existence, and enumerate children of a znode. The data
ZooKeeper provides a linearizable consistency model and uses a protocol among a quorum of servers to ensure
When a client session ends, all ephemeral znodes created during the session are deleted automatically. Changes