Rclone server-side copy to a new bucket - optimzations needed

What is the problem you are having with rclone?

I needed optimized rclone copy command to speed up the server side copies from one bucket to another new bucket (completely new). I do not want to list/head on the destination side, since i knew that is completely new. Itseems these server side copies are slow due to listings . Please suggest

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

v1.74.3
rocky 9.6

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

Minio

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

rclone copy oldminio:bkp-b1 oldminio:bkp-backup --progress --log-level=DEBUG --log-file=/root/rclone_serverside/bkp-b1.log --size-only --transfers=128 --checkers=512

Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.

[oldminio]
provider = Minio
access_key_id= XXX
secret_access_key = XXX
endpoint == http://XXX.XXX.XXX.XXX
chunk_size=100m

A log from the command that you were trying to run with the -vv flag

Try --no-check-dest. You don't want that when the dest isn't empty but it should speed things up.