Can we use nfs storage class as PVC for etcd #19415
-
What would you like to be added?Can we use nfs storage class as PVC for etcd in kubernetes cluster . We are using etcd for Milvus key value store. currently we local storage class. we want to use NFS. Why is this needed?class. we want to use NFS. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can, but I would very strongly advise against it. NFS is a bad idea as storage for any database, because it guarantees neither the ordering nor the completion of writes. This can cause database corruption, on etcd or any other transactional database. There are specific NFS stacks that fix these problems, but unless you know that you're using one of those, steer clear. |
Beta Was this translation helpful? Give feedback.
You can, but I would very strongly advise against it. NFS is a bad idea as storage for any database, because it guarantees neither the ordering nor the completion of writes. This can cause database corruption, on etcd or any other transactional database.
There are specific NFS stacks that fix these problems, but unless you know that you're using one of those, steer clear.