I have a big amount of objects stored in Minio. I need to move them from one bucket to another. Due to the big amount of the objects (and the size of the objects themselves), I do not want to upload them into memory.
The only way I found so far is copying the objects to the destination bucket and removing them from the source bucket.
Is there a way to move them with one command (like mv
)?
@yaskovdev S3 API does not allow for mv
like functionality. So, the steps that you have described are the only way to do that.