Rclone stops copying after some time

What is the problem you are having with rclone?

When i'm copying files after some time it simply stops, and also if i try to check version or update rclone when this happens it's also unable to do it.
I think rclone stops completely when this happens

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

root@lb03:~# rclone selfupdate --check
yours: 1.60.0
latest: 1.64.2 (released 2023-10-19)
upgrade: v1.64.2
beta: 1.65.0-beta.7469.4ab57eb90 (released 2023-10-31)
upgrade: https://beta.rclone.org/v1.65.0-beta.7469.4ab57eb90

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

Cloudflare R2

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

rclone copy -v --stats 5s --transfers 100 "r2:bucket" "r2_2:bucket"
and
rclone selfupdate --check

The rclone config contents with secrets removed.

[r2]
type = s3
provider = Cloudflare
access_key_id = redacted
secret_access_key = redacted
region = auto
endpoint = https://redacted.r2.cloudflarestorage.com

[r2_2]
type = s3
provider = Cloudflare
access_key_id = redacted
secret_access_key = redacted
region = auto
endpoint = https://redacted.r2.cloudflarestorage.com

A log from the command with the -vv flag

root@lb03:~# rclone copy -v --stats 5s --transfers 100 "r2:bucket" "r2_2:bucket"
2023/11/01 00:57:09 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:         5.0s

2023/11/01 00:57:14 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:        10.0s

2023/11/01 00:57:19 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:        15.0s

2023/11/01 00:57:24 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:        20.0s

2023/11/01 00:57:29 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:        25.0s

2023/11/01 00:57:34 INFO  :
Transferred:              0 B / 0 B, -, 0 B/s, ETA -
Elapsed time:        30.0s

^C
root@lb03:~# rclone selfupdate --check
yours:  1.60.0
2023/11/01 01:00:03 ERROR : Failed to get rclone latest version: Get "https://downloads.rclone.org/version.txt": dial tcp 95.217.6.16:443: i/o timeout
2023/11/01 01:00:33 ERROR : Failed to get rclone beta version: Get "https://beta.rclone.org/version.txt": dial tcp 95.217.6.16:443: i/o timeout
root@lb03:~# ping 95.217.6.16
PING 95.217.6.16 (95.217.6.16) 56(84) bytes of data.
64 bytes from 95.217.6.16: icmp_seq=1 ttl=49 time=41.5 ms
64 bytes from 95.217.6.16: icmp_seq=2 ttl=49 time=39.4 ms
^C
--- 95.217.6.16 ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1000ms
rtt min/avg/max/mdev = 39.470/40.498/41.527/1.048 ms
root@lb03:~#

I found out that the bug was because i'm using VMware ESXi to virtualize a machine where the rclone is installed, and there's only one machine in use in this VMware ESXi server, i was using all cpu cores only for one machine, now i used less cores and the rclone is working fine.

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