you can use the same folder for unfinished downloads. I personally use a symlink as jellyfin won’t pickup partial files
Comment on Someone help me understand the sonarr to jellyfin workflow
Evotech@lemmy.world 2 weeks ago
Sonarr gets torrents and sends to qbittorrent, qbittorrent downloads the torrent and puts the downloaded file somewhere, sonarr then picks up that file and moves it to its final destination where jellyfin expects it
Gonzako@lemmy.world 1 week ago
ipkpjersi@lemmy.ml 1 week ago
It’s important to have seperate directories for unfinished torrent downloads and complete ones, and only have sonarr pick up from the completed one
Back when I used Torrents instead of Usenet for sonarr, I had only the one folder, since Plex would generally pick up the library changes automatically anyway. I’d assume that Jellyfin is similar, although I don’t use it enough to know for sure. These days I use only Usenet for sonarr/radarr since I’m paying for Usenet and it’s excellent for automation/new content, and SABnzbd provides both incomplete and complete folders by default anyway.
Evotech@lemmy.world 1 week ago
I also only use Usenet, so yeah, might not be the case for torrents
Elkenders@feddit.uk 2 weeks ago
And it’s good to use hard links.
Wrrzag@lemmy.ml 1 week ago
Op cant because he’s using 2 different filesystems
trevor@lemmy.blahaj.zone 1 week ago
Can someone explain why, and what to use them for?
lucid@lemmy.dbzer0.com 1 week ago
It basically creates a second pointer to the same inode which makes file moves instant. So instead of copying the data to a new location and deleting it from the old it points to the existing inode immediately. You can’t do it across filesystems though so that’s why trash guides recommends using
/data/media/tv
and/data/torrents
instead of the/tv
and/downloads
paths the lsio setup suggests since docker treats top level folders as different file systems.It’s mostly useful for torrents in my experience when you need to reseed stuff but also don’t want to point Jellyfin/Plex to a live downloads directory for security reasons.