ETCD
Describe what is ETCD
Last updated
Describe what is ETCD
Last updated
It is a database that store the data of container and the data of cluster such as Node
, Pod
, Config Map,
Secret
, Account
, Role
and etc with key-value format.
The Advantage of Key-value DB:
Example:
ID | Name |
---|---|
If you want to add new column in Table it will not affect to existing record in table
ID | Name |
---|---|
ID | Name | Age |
---|---|---|
But If we use relational DB every record in table will need to determine the Age
value
Noted:
If you setup cluster manually , you need to download ETCD binary file
and install on Master Node
by yourself. Each Master Node
will separate ETCD but we are able to configure parameter to sync the data across Node .
1
Bob
2
Sam
3
Tony
1
Bob
2
Sam
3
Tony
4
Jane
20