In the event that you need to reduce your inode usage, you can use SSH access to help identify the problem directories with the most inodes present in them with this command:
Â
find . -maxdepth 1 -type d | while read line; do echo "$( find "$line"| wc -l) $line"; done | sort -rn