-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Slow read rate #134
Comments
I'd suggest:
Inside the log file, you should see a bunch of lines like this:
When an app (TachiyomiSY in your case) reads a file, rclone first fetches a chunk of data from SMB into memory and then the app reads from memory. The first line in the example above is logged whenever rclone reads data from your SMB server into memory. In my example, it read The other lines are when the app reads a chunk of data. In the If it's only slow in TachiyomiSY, but not in the file manager, then I suspect it is trying to read the file in a non-optimal way. For example, these are some common things that could cause things to be slow:
The best case scenario for performance is when the file is read beginning to end in large chunks. Copying a file in a file manager is normally like this. With a good Wi-Fi connection, rclone's SMB backend should be able to do 25-30 MiB/s pretty easily. |
Hello,
I'm trying it using TachiyomiSY (Mihon, comic reader) for the downloaded / local storage chapters, but when trying to open it, it is reading the files very slowly.
Is there a way to understand why is it loading slow, even when a chapter is only 15MB per file/chapter in .cbz. Sometime during scrolling, it take good 10 second to load the next part of the same file.
My SMB disk is SSD, using normal file explorer around 5MBps rw.
Idle timeout 15m0s.
The text was updated successfully, but these errors were encountered: