There are ~10 million files on a disk (not under the same directory).
I want to get [(file_name, file_size, file_atime)] of all files. But the command
find /data -type f -printf "%p\t%A@\t%s\n"
is hopelessly slow and cause the IO %util ~100%.
Any advice?