Merging 2 NFS mounts each of 100TB capacity #912
-
Hi, I am having 2 NFS mounts each of 100TB capacity i.e 100+100 = 200 TB. I am planning to mount these 2 NFS on Kubernetes POD and use mergerfs to show them as a single filesystem. Then put Nginx in front of the new union folder as a file explorer. Just want to understand do you see any problems or pitfalls in this design, as the size of the mount is large i.e. 100TB each. Will mergerfs have any problem if the capacity of mount is large as in my case? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
No. Why would mergerfs have issues with the capacity? 200TB is not that much storage and well within the 64bit limits of modern POSIX filesystem size and offset values. The biggest possible issue is using NFS as it's not fully POSIX compliant and has some known complications when interacting with FUSE but that depends entirely on your usage patterns. |
Beta Was this translation helpful? Give feedback.
No. Why would mergerfs have issues with the capacity? 200TB is not that much storage and well within the 64bit limits of modern POSIX filesystem size and offset values. The biggest possible issue is using NFS as it's not fully POSIX compliant and has some known complications when interacting with FUSE but that depends entirely on your usage patterns.