Faster Import?
#4674
Replies: 1 comment 2 replies
-
Hello! This is kind of a wild guess, but I think the bottleneck for most imports is storage (i.e., reading the music files from your disk). The importer is multithreaded, so it's already overlapping computation with network communication and disk I/O. So one thing to remember is that you can let things "run ahead" while you wait at the prompt and it will do a lot of the I/O work in the background. Beyond this, there may not be much that can be done—except disabling plugins you don't need (principally Chromaprint fingerprinting). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have to import almost 400,000 tracks, and it appears that doing so will take forever and a day. I tried using GNU Parallel to speed up the process but it got even slower (multiple processes fighting over the SQLite lock maybe)? Is there any other way to speed up large imports?
Beta Was this translation helpful? Give feedback.
All reactions