Lots of "Unable to determine if file is sample" after moving files from seedbox to Google Drive

What is the problem you are having with rclone?

After uploading files from my new seedbox to Google Drive, I can't import them into radarr/sonarr etc with error "Unable to determine if file is sample"

Run the command 'rclone version' and share the full output of the command.

rclone v1.57.0

  • os/version: ubuntu 20.04 (64 bit)
  • os/kernel: 5.4.0 (x86_64)
  • os/type: linux
  • os/arch: amd64
  • go/version: go1.17.2
  • go/linking: static
  • go/tags: none

#####################

I've recently setup a seedbox, but I'm getting lots of "Unable to determine if file is sample" when I try to input files from Google Drive.

My current workflow is (I've tried lots of variants....):

  1. Radarr/Sonarr on local machine (unRaid docker)
  2. nzbget/rutorrent on rapidseedbox
  3. rutorrent: (i) hardlink automove to new seedbox directory, (ii) rclone move job to Google Drive (iii) radarr tries to import file from new Google Drive location
  4. nzbget: (i) file saved in seedbox directory (ii) rclone move job to Google Drive (iii) radarr tries to import file from new Google Drive location

# Upload nzbget files

/usr/local/bin/rclone move /home/user/local tdrive_vfs: --config=/home/user/.config/rclone/rclone.conf --user-agent="external" -vv --order-by modtime,ascending --min-age 5m --fast-list --check-first --drive-chunk-size=256M --transfers=4 --checkers=8 --exclude _unpack/** --exclude rutorrent/** --drive-stop-on-upload-limit --delete-empty-src-dirs --bwlimit=100M

# Move rutorrent files

/usr/local/bin/rclone move /home/user/local/seedbox/rutorrent tdrive_vfs:seedbox/rutorrent --config=/home/user/.config/rclone/rclone.conf --user-agent="external" -vv --order-by modtime,ascending --min-age 20m --fast-list --check-first --drive-chunk-size=256M --transfers=4 --checkers=8 --drive-stop-on-upload-limit --bwlimit=100M

Imgur

Locally, I have a mergerfs mount that sees the new files added to Google Drive. This is my rclone mount command - is the umask 000 the problem? I don't really understand permissions

rclone mount \
	--allow-other \
	--umask 000 \
	--dir-cache-time 5000h \
	--attr-timeout 5000h \
	--log-level INFO \
	--poll-interval 10s \
	--cache-dir=/mnt/user/mount_rclone/cache/tdrive_vfs \
	--drive-pacer-min-sleep 10ms \
	--drive-pacer-burst 1000 \
	--vfs-cache-mode full \
	--vfs-cache-max-size 10G \
	--vfs-cache-max-age 96h \
	--vfs-read-ahead 1G \
	tdrive_vfs: /mount_location &

I have to wait for a few jobs to finish before I reboot, so I'm trying to get likely candidates identified first!

Thanks in advance for any help