Rclone Mount Errors after updates

What is the problem you are having with rclone?

  • I recently updated from rclone 1.48 to 1.49.4.
  • I use rclone mount and rclone move primarily.
  • Rclone mount is run on boot via a systemd service
  • After updating, the mount service began to fail often, causing apps to crash.
  • I updated the service with some new parameters suggested in @Animosity022 github repo (see below for service details)
  • Now, many apps lag like crazy (Sonarr, Radarr, Plex) and the log file for the mount service shows several errors now (examples bellow)

I need some help with triage and fixing this issue.

What is your rclone version (output from rclone version)

v1.49.4

Which OS you are using and how many bits (eg Windows 7, 64 bit)

Debian 64 bit

Which cloud storage system are you using? (eg Google Drive)

Google Drive

The command you were trying to run (eg rclone copy /tmp remote:tmp)

The rclone mount service:

Type=notify
#Environment=RCLONE_CONFIG=/opt/rclone/rclone.conf
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount vault: /mnt/gvault \
--allow-other \
--attr-timeout 1000h \
--buffer-size 1G \
--dir-cache-time 1000h \
--log-level INFO \
--log-file /opt/rclone/logs/gvault-service.log \
--poll-interval 15s \
--timeout 1h \
--umask 002 \
--user-agent vaultapp \
--rc \
--rc-addr 127.0.0.1:5572
ExecStop=/bin/fusermount -uz /mnt/gvault
Restart=on-failure
User=root
Group=root

[Install]
WantedBy=multi-user.target

A log from the command with the -vv flag (eg output from rclone -vv copy /tmp remote:tmp)

  • getting several of these types of errors:
2019/10/04 12:43:08 INFO  : Google drive root '': Change notify listener failure: Get https://www.googleapis.com/drive/v3/changes?alt=json&fields=nextPageToken%2CnewStartPageToken%2Cchanges%28fileId%2Cfile%28name%2Cparents%2CmimeType%29%29&includeItemsFromAllDrives=true&pageSize=1000&pageToken=862288&prettyPrint=false&supportsAllDrives=true: stream error: stream ID 2225; INTERNAL_ERROR
  • and these
2019/10/04 11:41:08 ERROR : media/tv/someredacted.avi: ReadFileHandle.Read error: low level retry 1/10: stream error: stream ID 2753; INTERNAL_ERROR
  • and these
2019/10/04 11:41:08 ERROR : media/tv/someredacted.mkv: ReadFileHandle.Read error: low level retry 1/10: open file failed: Get https://www.googleapis.com/drive/v3/files/1Z...redactedlongstring...xVG?alt=media: stream error: stream ID 2751; INTERNAL_ERROR
  • and these
2019/10/04 11:40:38 INFO  : Google drive root '': Failed to get StartPageToken: Get https://www.googleapis.com/drive/v3/changes/startPageToken?alt=json&prettyPrint=false&supportsAllDrives=true: stream error: stream ID 2771; INTERNAL_ERROR

This is a known issue with the 1.49.4 version. For now, the recommended fix is to try this updated build : https://beta.rclone.org/branch/v1.49.4-003-gb5ea6af6-v1.49-fixes-beta/ & report here with any issues: 1.49.4 / Plex / Internal Errors on Google Drive

I just found the thread from a few days ago by @Animosity022. Which is more stable. Downgrading to 1.49.3 or using the beta? Im on my home production server, so I'm going for stability, not feature sets.

Can you try the beta? It is a candidate for 1.49.5 so testing much appreciated. I think it should fix the problems which seem to be caused by the go version rather than Rclone's code.

I updated to the beta and posted my findings to the main thread. 1.49.4 / Plex / Internal Errors on Google Drive

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.