I am trying to find out the maximum number of files I can store in a folder when using the AWS EFS file system. The total number of files I am interested in is around 2.5 million, and each file's size is about 10KB - 20KB. I've found this relevant question which suggests I run df -i
. Unfortunately, when I run it, I get:
Filesystem Inodes IUsed IFree IUse% Mounted on
udev 55824 303 55521 1% /dev
tmpfs 58849 467 58382 1% /run
/dev/nvme0n1p1 1024000 75489 948511 8% /
tmpfs 58849 1 58848 1% /dev/shm
tmpfs 58849 3 58846 1% /run/lock
tmpfs 58849 18 58831 1% /sys/fs/cgroup
fs-XXXXXXXX.efs.XXXXXXXXX.amazonaws.com:/ 0 0 0 - /mnt/efs
tmpfs 58849 10 58839 1% /run/user/1000
As you can see, the file system I am interested in (fs-XXXX...) mounted on /mnt/efs
gives me zero for the number of Inodes and I'm not sure what to do next. The AWS documentation on the limits (here) doesn't specify such a limit. Any ideas would be much appreciated!