slow nfs performance
I’m running a two node k3s cluster at home, I thought I could simply mount an
nfs share on each worker node, and essentially have the same storage accross
all nodes. I’m already learning why this is not reccommended.
[1]
Slow # [2]
I’ve been running some cronjobs and argo workflows on the second node for
awhile, these are things that run in the background and I don’t care if they
take a bit longer to keep my master node freed up for more critical work.
I just started trying to build this site in a cronjob, It was taking 20 minutes
to build, and something I noticed was that markata was taking minutes to run
glob ( search for files ), normally this happens in a few ms and I never
notice this step.
[3]
I just moved into the master node and the results were wild at ~30x faster
Permissions # [4]
I have seen where you can get diffent permissions on the nfs share based on
user id. Since I’m homelabbing here I only have one user per machine. As you
step into enterprise level VMs wi...