ETCD

Describe what is ETCD

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

1

Bob

2

Sam

3

Tony

If you want to add new column in Table it will not affect to existing record in table

ID
Name

1

Bob

2

Sam

3

Tony

ID
Name
Age

4

Jane

20

But If we use relational DB every record in table will need to determine the Age value

Last updated