Reputation: 170
I would like to know if the etcd database stores the date and time of when a key-value pair were created. Additionally, I would also like to know if etcd stores such information about previous versions of a key-value pair as well.
I went through the etcd.io v5 document and tried to look for the solution. I was expecting to learn if etcd has any such features due to which the creation date & time of a pair is stored.
Upvotes: 0
Views: 555
Reputation: 6621
Short answer is NO
etcd saves revisions as integers, but no timestamps on creation of a key.
Upvotes: 1