Hi all,
I’m running into an issue with my TrueNAS SCALE setup involving SABnzbd and Radarr, both installed from the official TrueNAS app catalog. My goal is to have Radarr and SABnzbd work together such that file moves are instant (i.e., done via rename()
on the same filesystem), avoiding the slow copy+delete process.
Current Configuration (Not Working as Expected)
I initially configured the apps with the following mount paths:
Mount Path (Container) | Host Path (TrueNAS) |
---|---|
/data/incomplete |
/mnt/Tank/media/downloads/incomplete |
/data/complete |
/mnt/Tank/media/downloads/complete |
/data/movies |
/mnt/Tank/media/movies |
These paths are configured identically in both SABnzbd and Radarr.
Application Settings
In SABnzbd:
- Temporary Download Folder:
/data/incomplete
- Completed Download Folder:
/data/complete
In Radarr:
- Root Folder:
/data/movies
- Remote Path Mapping:
- Host:
localhost_ipaddress
- Remote Path:
/data/complete
- Local Path:
/data/complete
- Host:
Problem
Despite sharing the same host paths and mount points, the move from SABnzbd’s completed downloads to Radarr’s movie folder is not instant. It seems Radarr performs a copy-then-delete instead of a fast rename()
operation — which adds unnecessary delay, especially with large media files.
My Questions
- Is this unified
/data
mount structure the only reliable way to achieve instant moves in TrueNAS SCALE with isolated app containers? - Why do seemingly identical mount paths (
/data/complete
vs/data/movies
) not allow instant moves, even when host paths are the same? - Would using TrueCharts versions of SABnzbd and Radarr offer better support for shared volumes or allow using a shared PVC?
- Is there a more TrueNAS-native way to enforce volume sharing between two apps?
Thanks in advance for your help and insights. Let me know if any more technical details are needed.