소스 검색

Merge pull request #7016 from fanminshi/faq_add_meaning_of_etcd

why: add origin of the term etcd
fanmin shi 9 년 전
부모
커밋
bc2d47118d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      Documentation/learning/why.md

+ 2 - 0
Documentation/learning/why.md

@@ -1,5 +1,7 @@
 # Why etcd
 # Why etcd
 
 
+The name "etcd" originated from two ideas, the unix "/etc" folder and "d"istibuted systems. The "/etc" folder is a place to store configuration data for a single system whereas etcd stores configuration information for large scale distributed systems. Hence, a "d"istributed "/etc" is "etcd".
+
 etcd stores metadata in a consistent and fault-tolerant way. Distributed systems use etcd as a consistent key-value store for configuration management, service discovery, and coordinating distributed work. Common distributed patterns using etcd include leader election, [distributed locks][etcd-concurrency], and monitoring machine liveness.
 etcd stores metadata in a consistent and fault-tolerant way. Distributed systems use etcd as a consistent key-value store for configuration management, service discovery, and coordinating distributed work. Common distributed patterns using etcd include leader election, [distributed locks][etcd-concurrency], and monitoring machine liveness.
 
 
 ## Use cases
 ## Use cases