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
Compressed archives will not playback properly. A similar setup exported/mounted using CIFS works as expected. Non-compressed archives (store) also works fine when NFSv2/v3 is used. Using rar2fs purely on the client side also works reliable.
The problem is related to how NFS is interacting with the file system. When used remotely rar2fs needs to handle the stateless access patterns from NFS. When rar2fs is used locally this interaction is avoided.
Original issue reported on code.google.com by hasse69 on 2011-02-04
The text was updated successfully, but these errors were encountered:
The reason why it works when rar2fs is used locally on the client side is that all NFSv2/v3
interaction with the exported/mounted file system has already been completed when FUSE/rar2fs
is notified about the file system events. When used remotely rar2fs has to face the
overhead created by NFS's repeated open-read-close cycles (each of which results in
a new decompression thread).
Original issue reported on code.google.com by hasse69 on 2011-02-05 18:25:44
What steps will reproduce the problem?
Compressed archives will not playback properly. A similar setup exported/mounted using CIFS works as expected. Non-compressed archives (store) also works fine when NFSv2/v3 is used. Using rar2fs purely on the client side also works reliable.
The problem is related to how NFS is interacting with the file system. When used remotely rar2fs needs to handle the stateless access patterns from NFS. When rar2fs is used locally this interaction is avoided.
Original issue reported on code.google.com by
hasse69
on 2011-02-04The text was updated successfully, but these errors were encountered: