I’m having a re-occurrence of the following issue:
I moved my sonarr install to a vm running on esx, and have set up autofs to mount my TV show folder (/media/TV) on my media server
/etc/auto.nfs
TV -fstype=nfs,rw,soft,noexec,rsize=8192,wsize=8192,tcp,nolock 192.168.1.8:/export/TV
if I run mount, I see the following:
192.168.1.8:/export/TV on /nfs/TV type nfs (rw,noexec,relatime,vers=3,rsize=8192,wsize=8192,namlen=255,soft,nolock,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.1.8,mountvers=3,mountport=38117,mountproto=tcp,local_lock=all,addr=192.168.1.8)
according to the linked ticket above, i can indeed see avialable space on the mount:
root@sabnzbd:/nfs# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 195G 11G 175G 6% /
udev 10M 0 10M 0% /dev
tmpfs 201M 4.8M 196M 3% /run
tmpfs 501M 4.0K 501M 1% /dev/shm
tmpfs 5.0M 0 5.0M 0% /run/lock
tmpfs 501M 0 501M 0% /sys/fs/cgroup
192.168.1.8:/export/TV 17T 12T 5.0T 70% /nfs/TV
but sonarr reports 0B free. Strangely enough, if I go to history, and select “manual import” it copies to the media server without issue, it is only the automatic importing after a download is complete that fails to work:
Not enough free space (0) to import: /home/sabnzbd/complete/Blunt Talk S01E05 720p HDTV x264-BATV/Blunt.Talk.S01E05.720p.HDTV.x264-BATV.mkv (566203825)
I am watching traffic with tcpdump as well as reading the logs, but have not found a fix yet. I have confirmed that autofs has mounted the share, and that it’s not a matter of sonarr accessing an unmounted share or anything (timeout set to 10 minutes).
Thanks!