You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Linux filesystems allow the files which are being written/read to be moved or even deleted without causing errors. This is probably because an open file creates a hidden hard link to the inode (not persisted) which keeps the inode up while the file name is removed.
We need to implement it in some way preferably without locking as I believe this mechanism is used by log rotators/archivers.
The text was updated successfully, but these errors were encountered:
Linux filesystems allow the files which are being written/read to be moved or even deleted without causing errors. This is probably because an open file creates a hidden hard link to the inode (not persisted) which keeps the inode up while the file name is removed.
We need to implement it in some way preferably without locking as I believe this mechanism is used by log rotators/archivers.
The text was updated successfully, but these errors were encountered: