What is the problem you are having with rclone?
I'm trying to make a copy between a ceph bucket on an Object Storage S3 (OVH), but no objects are transferred. The source is readable with rclone ls. On the other hand, copying another bucket, which has fewer objects, from the same source to the destination works.
Run the command 'rclone version' and share the full output of the command.
rclone v1.63.0
- os/version: debian 11.7 (64 bit)
- os/kernel: 5.10.0-19-amd64 (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.20.5
- go/linking: static
- go/tags: none
Which cloud storage system are you using? (eg Google Drive)
Source : Ceph Object Storage
Destination : OVH S3
The command you were trying to run (eg rclone copy /tmp remote:tmp
)
rclone mkdir prod-ovh:/docapi-fr01
rclone lsd prod-ovh:
-1 2023-07-06 15:00:41 -1 docapi-fr01
rclone sync prod-ceph:/docapi-fr01 prod-ovh:/docapi-fr01 -vv
The rclone config contents with secrets removed.
[prod-ovh]
type = s3
provider = Other
env_auth = false
access_key_id = XXX
secret_access_key = XXX
acl = private
region = gra
location_constraint = gra
endpoint = https://s3.gra.io.cloud.ovh.net/
[prod-ceph]
type = s3
provider = Ceph
access_key_id = XXX
secret_access_key = XXX
endpoint = XXX
acl = private
A log from the command with the -vv
flag
2023/07/06 15:29:35 DEBUG : Creating backend with remote "prod-ceph:/docapi-fr01"
2023/07/06 15:29:35 DEBUG : Using config file from "/root/.config/rclone/rclone.conf"
2023/07/06 15:29:35 DEBUG : name = "prod-ceph", root = "/docapi-fr01", opt = &s3.Options{Provider:"Ceph", EnvAuth:false, AccessKeyID:"XXX", SecretAccessKey:"XXX", Region:"", Endpoint:"https://XXX", STSEndpoint:"", LocationConstraint:"", ACL:"private", BucketACL:"", RequesterPays:false, ServerSideEncryption:"", SSEKMSKeyID:"", SSECustomerAlgorithm:"", SSECustomerKey:"", SSECustomerKeyBase64:"", SSECustomerKeyMD5:"", StorageClass:"", UploadCutoff:209715200, CopyCutoff:4999341932, ChunkSize:5242880, MaxUploadParts:10000, DisableChecksum:false, SharedCredentialsFile:"", Profile:"", SessionToken:"", UploadConcurrency:4, ForcePathStyle:true, V2Auth:false, UseAccelerateEndpoint:false, LeavePartsOnError:false, ListChunk:1000, ListVersion:0, ListURLEncode:fs.Tristate{Value:false, Valid:false}, NoCheckBucket:false, NoHead:false, NoHeadObject:false, Enc:0x3000002, MemoryPoolFlushTime:60000000000, MemoryPoolUseMmap:false, DisableHTTP2:false, DownloadURL:"", DirectoryMarkers:false, UseMultipartEtag:fs.Tristate{Value:false, Valid:false}, UsePresignedRequest:false, Versions:false, VersionAt:fs.Time{wall:0x0, ext:0, loc:(*time.Location)(nil)}, Decompress:false, MightGzip:fs.Tristate{Value:false, Valid:false}, UseAcceptEncodingGzip:fs.Tristate{Value:false, Valid:false}, NoSystemMetadata:false}
2023/07/06 15:29:35 DEBUG : Resolving service "s3" region "us-east-1"
2023/07/06 15:29:35 DEBUG : fs cache: renaming cache item "prod-ceph:/docapi-fr01" to be canonical "prod-ceph:docapi-fr01"
2023/07/06 15:29:35 DEBUG : Creating backend with remote "prod-ovh:/docapi-fr01"
2023/07/06 15:29:35 DEBUG : name = "prod-ovh", root = "/docapi-fr01", opt = &s3.Options{Provider:"Other", EnvAuth:false, AccessKeyID:"XXX", SecretAccessKey:"XXX", Region:"gra", Endpoint:"https://s3.gra.io.cloud.ovh.net/", STSEndpoint:"", LocationConstraint:"gra", ACL:"private", BucketACL:"", RequesterPays:false, ServerSideEncryption:"", SSEKMSKeyID:"", SSECustomerAlgorithm:"", SSECustomerKey:"", SSECustomerKeyBase64:"", SSECustomerKeyMD5:"", StorageClass:"", UploadCutoff:209715200, CopyCutoff:4999341932, ChunkSize:5242880, MaxUploadParts:10000, DisableChecksum:false, SharedCredentialsFile:"", Profile:"", SessionToken:"", UploadConcurrency:4, ForcePathStyle:true, V2Auth:false, UseAccelerateEndpoint:false, LeavePartsOnError:false, ListChunk:1000, ListVersion:0, ListURLEncode:fs.Tristate{Value:false, Valid:false}, NoCheckBucket:false, NoHead:false, NoHeadObject:false, Enc:0x3000002, MemoryPoolFlushTime:60000000000, MemoryPoolUseMmap:false, DisableHTTP2:false, DownloadURL:"", DirectoryMarkers:false, UseMultipartEtag:fs.Tristate{Value:false, Valid:false},UsePresignedRequest:false, Versions:false, VersionAt:fs.Time{wall:0x0, ext:0, loc:(*time.Location)(nil)}, Decompress:false, MightGzip:fs.Tristate{Value:false, Valid:false}, UseAcceptEncodingGzip:fs.Tristate{Value:false, Valid:false}, NoSystemMetadata:false}
2023/07/06 15:29:35 DEBUG : Resolving service "s3" region "gra"
2023/07/06 15:29:35 DEBUG : fs cache: renaming cache item "prod-ovh:/docapi-fr01" to be canonical "prod-ovh:docapi-fr01"
2023/07/06 15:30:35 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Elapsed time: 1m0.0s
2023/07/06 15:31:35 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Elapsed time: 2m0.0s
2023/07/06 15:32:35 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Elapsed time: 3m0.0s
2023/07/06 15:33:35 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Elapsed time: 4m0.0s
[...]