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
LocalFileSystem: Reuse FileStore instance for FsStat
Currently, we are calling Files.getFileStore for every request to
VirtualFileSystem.getFileStat.
On some systems, such as macOS, this may introduce extremely long wait
times for NFS operations, effectively hanging the entire NFS client.
Delays as high as 14 seconds (!) have been observed.
Move the FileStore access to LocalFileSystem's constructor, such that it
can be reused.
Signed-off-by: Christian Kohlschütter <[email protected]>
0 commit comments