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
Currently, FileCache checks the underlying filesystem with stat command, depending on GNU stat, to ensure it is not the remote filesystem. On the other hand, BSD stat does not support such usage, e.g. macos. Otherwise, it throws exception that indicates wrong usage of BSD stat, by GNU stat options.
Current workaround is to set pfio.cache.file_cache._FORCE_LOCAL=False , but we had better have better way to address this issue.
The text was updated successfully, but these errors were encountered:
Currently, FileCache checks the underlying filesystem with
stat
command, depending on GNU stat, to ensure it is not the remote filesystem. On the other hand, BSD stat does not support such usage, e.g. macos. Otherwise, it throws exception that indicates wrong usage of BSD stat, by GNU stat options.Current workaround is to set
pfio.cache.file_cache._FORCE_LOCAL=False
, but we had better have better way to address this issue.The text was updated successfully, but these errors were encountered: