amazon s3 - Bulk transfer of all S3 assets to Google Cloud -
i'm looking move s3 assets google cloud bunch of reasons. however, have ~25 buckets, thousands of files in each. i'm aware of google storage transfer tool - https://cloud.google.com/storage/transfer/getting-started - works on buckets 1 @ time. there of them @ once?
the google cloud storage transfer service still best bet, if buckets very, large.
if buckets aren't large enough bother setting up, use gsutil command-line tool little bit of scripting accomplish this:
for bucket in bucket1 bucket2 bucket3 bucket4 etc; gsutil -m cp -r s3://$bucket/* gs://$bucket done
Comments
Post a Comment