Please, advice , attempting to backup outside minio my milvus collections but it seems I am missing something and restored copy is not seen in my backup minio folder by the milvus-backup tool so it cannot be restored , the comands I execute are as follow:
./milvus-backup create -n backup_book2 ## I create the backup inside myminio here
./mc ls myminio/a-bucket/backup ## The backup_book2 is seen here
[2023-03-12 21:47:22 UTC] 0B backup_book2/
./mc cp --recursive myminio/a-bucket/backup/backup_book2 ./book2/ ## copy outside minio
./mc cp --recursive ./book2/ myminio/a-bucket/backup/backup_book3 ## copy to minio in different minio folder(backup_book3)
./mc ls myminio/a-bucket/backup ## the backup_book3 is seen correctly as it looks in mc
[2023-03-12 21:47:22 UTC] 0B backup_book2/
[2023-03-12 21:47:22 UTC] 0B backup_book3/
./milvus-backup list ## But the milvus-backup do not see it ... :(
Backups:
backup_book2
Not sure , why after mc cp {local_linux_folder}/backup_book2 to {myminio}/backup_book3 the milvus-backup tool do not show/see the backup_book3 folder that was restored via mc to myminio ?
Is there some meta info that need to be updated additionally somewhere or maybe a better option to online backup/restore from/to milvus cluster?