It takes a long time for the file to appear in the Bucket. Is the file upload to MinIO using rclone mount asynchronous?

It takes a very long time for the file to appear in the Bucket. Is the file upload to MinIO using rclone mount asynchronous?
The files appear immediately in D:\target, but they take a long time to show up in the bucket.

command: rclone.exe mount minio:catia D:\target --vfs-cache-mode=writes --file-perms 0777 --dir-perms 0777 --use-mmap --cache-dir D:\minio-cache --no-check-certificate

helm deploy minio-operator v6.0.3
windows server 2022
rclone v1.68.0

another qeustion:
I've mounted the MinIO bucket to D:\target, but I've noticed that the executable programs inside cannot be run directly.

I opened the monitor and found that rclone.exe is uploading data in the background at a not-so-fast speed.

Yes, it does. You can check the progress adding -v and -P in your command. If you disable --vfs-cache-mode=writes by switching it to --vfs-cache-mode=off it will be transfering files in real time. Be aware tho, when vfs-cache-mode is off autoretry is not working anymore, so network problems cause errors on the app level.

rclone mount Here it's explained.

Instead of posting pictures without any comments explaining their context please answer all questions you were asked when you started this thread. Then somebody might be able to help you.

Re running executables from your mount on Windows:

There is a file that failed to upload, and judging by the file size, only a part of it was uploaded. It can't be deleted either through the web page, using the mc command, or after mounting with rclone.How can I force delete it? command doesn't work: # mc rm minio/catia/Xenoblade.xci --force --insecure
mc: Failed to remove minio/catia/Xenoblade.xci. A timeout occurred while trying to lock a resource, please reduce your request rate

Again. If you missed it please provide all details you were asked for. Otherwise you waste time.

STOP and READ USE THIS TEMPLATE NO EXCEPTIONS - By not using this, you waste your time, our time and really hate puppies. Please remove these two lines and that will confirm you have read them.

Followed by multiple questions for you to answer.

A file seems to have encountered an issue during upload with rclone. A 13GB file is only showing as 37MB. It's now impossible to delete it. Are there any methods to forcibly remove it? What other information do you need from me?
rclone-minio.log (17.3 KB)

could be rclone, could be minio?
take a look a the debug log for rclone and the debug log for minio.

if you kill the mount, rclone should release any files.
if not, then figure out if rclone or another executable has a lock on the file.

https://github.com/rclone/rclone/wiki/how-to-run-.exe-application-on-rclone-mount
i wrote that wonderful wiki, let me know if you have any questions about it?

The --file-perms=0777 option works for .exe files, but not for .msi files