I must execute a rsync ( not only copy or move ) from all my buckets from s3 to google cloud. I need create the same infraestructure of s3 to google. I have like 2Tera in s3, and all days I receive new files..
My solution today is
gsutil rsync -r -m s3://bucket gs://bucket
But this solution is slower .
Do you have an ideia to faster?
Thanks.