Question
How to improve NFS Kubernetes Write Performance
I was following the tutorial found at https://www.digitalocean.com/community/tutorials/how-to-set-up-readwritemany-rwx-persistent-volumes-with-nfs-on-digitalocean-kubernetes and was able to get an NFS share with persistent volume claim across all pods and it is working well with autoscaling.
My challenge is performance. I am having really slow write speeds which is impacting the performance of my PHP application. I’ve modified the mount options during the nfs-server deployment (which I came across in a few other threads) but it doesn’t seem to help.
mountOptions:
- noatime
- rsize=8192
- wsize=8192
- tcp
- timeo=14
- intr 0 0
Does anyone have any ideas as to how to improve the write performance?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×