Replies: 2 comments 2 replies
-
According to Redhat 6 (probably valid for higher versions):
|
Beta Was this translation helpful? Give feedback.
-
Have you had a look at https://www.beegfs.io/c/home/hive/ ? |
Beta Was this translation helpful? Give feedback.
-
Description
I am deploying a Robinhood instance to scan the filesystem and purge unused "old files." We define old files as those that have not been read or written in the last 90 days.
Since BeeGFS is not Lustre (thank you, Captain Obvious 👑), Robinhood needs to scan the entire filesystem to update its information instead of parsing filesystem logs.
Here are my current rules:
However, BeeGFS is mounted with the
relatime
flag, as shown below:Problem
According to the [BeeGFS documentation](https://doc.beegfs.io/latest/advanced_topics/storage_tuning.html#mount-options):
Since
relatime
is enabled,last_access
timestamps may not be updated accurately when files are read, leading to potential unintended deletions of recently accessed files.Question
How can I properly handle this situation to ensure only truly unused files are deleted, without accidentally removing files that have been read but not modified?
Beta Was this translation helpful? Give feedback.
All reactions