Cloud-Migration-Tool
Cloud-Migration-Tool copied to clipboard
cannot double migrate 1 source bucket
Cannot migrate a single sourceBucket into 2 different destination buckets. Below is a sample configuration that might be used for this scenario (buckets section is most important here):
{
"cloudmig": {
"buckets": {"srcbucket1:/": "dstbucket1:/", "srcbucket1:/": "dstbucket2:/"},
"create-directories": true
}
}
Expected results:
- srcbucket1 is migrated to dstbucket1
- AND
- srcbucket1 is migrated to dstbucket2
Actual results:
- srcbucket1 is migrated to dstbucket1
- OR
- srcbucket1 is migrated to dstbucket2
A workaround is to migrate the same source twice, using two different bucket configurations.