mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

This commit: - Fires a critical alert when the etcd database quota is 95% full at any given point of time to alert the user to defrag or increase the quota in order to avoid the alarm getting triggered which blocks all the writes to etcd meaning there can't be any new objects created. This is needed to make sure the cluster supports running large number of nodes and objects. - Fires a warning when there is a sudden surge in etcd writes leading to increase in the etcd database quota size at an alarming rate as it is disruptive. It might be because of a rougue process and it's important to alert the admin.
The etcd documentation
etcd is a distributed key-value store designed to reliably and quickly preserve and provide access to critical data. It enables reliable distributed coordination through distributed locking, leader elections, and write barriers. An etcd cluster is intended for high availability and permanent data storage and retrieval.
Please note that the files in this directory are source files for the built and rendered documentation that can be viewed at etcd.io/docs.