Linux – File count limit for NFS Mounted Drive

linuxmount

Is there a known upper limit on the number of files one can place in a folder on an NFS mounted drive on 64bit Linux systems? I have come across one excellent source that discusses related issues but there appears to be nothing specific to NFS.

Best Answer

I don't see how NFS is relevant. The issue here will be the actual file system of the exported partition. The fact that you are mounting it locally via NFS shouldn't make any difference at all, it is the underlying filesystem that needs to deal with the files so you will have the same limits as those mentioned in the SO answer you linked to.

So, as far as I know, there is no limit to the number of files an NFS partition can hold. There are limits for the actual file system, but not for the sharing protocol you use.

Related Question