Problem updating file cache by rclone mount

I mounted S3 from digitalocean on my remote server. If I delete a file/folder directly through a third-party client, then it is not updated in the mounted volume on my remote server. If you unmount and remount, the update works. Tell me what is the problem?
Even after several hours, directories and files in the mounted folder are not updated.
Here is my mount command:

rclone mount digitalocean:vaultcouture/images/import /home/digitalocean --allow-other --uid 33 --gid 33 --log-file /home/rclone.log --daemon --poll-interval 10 --dir-cache-time 1m --vfs-cache-max-age 1m --vfs-cache-mode=full --vfs-cache-mode=off --exclude ".DS_Store"

rclone v1.67.0

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

rclone.conf:

[digitalocean]
type = s3
provider = DigitalOcean
env_auth = false
access_key_id = *******
secret_access_key = *******
region = ****
endpoint = *******
acl = public-read

welcome to the forum,

that should not be the case,
at most, there should be a 1 minute delay, based on --dir-cache-time 1m
you need to trigger rclone to re-scan the directory, but navigating into it.

to see exactly what rclone is doing, use -vv for debug output.

--poll-interval 10
does nothting, as s3 remotes do not support polling.

--vfs-cache-mode=full --vfs-cache-mode=off
need to pick one, not both.

and can check out my summary of the two rclone vfs caches.
https://forum.rclone.org/t/status-about-using-rclone-for-music-storage-playback-in-2021-access-times-improved/27648/34

I changed the command to the following but the problem remains. What else can I do to solve this problem with updating directories and files?
Command:

rclone mount digitalocean:vaultcouture/images/import /home/digitalocean --allow-other --uid 33 --gid 33 --log-file /home/rclone.log --daemon --dir-cache-time 1m --vfs-cache-max-age 1m --vfs-cache-mode=full --exclude ".DS_Store"

Tell me, what is the correct command to update the folders cache?

It has been covered in this thread:

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