You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to rsync a bucket from gcs -> aws via gsutil.
I am using composer to schedule a bash script that runs:
set -e;export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}export AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY};
sudo apt-get update -y && sudo apt-get install google-cloud-cli -y # This in itself is an issue with the python runtime on GKE
gsutil -o "GSUtil:max_upload_compression_buffer_size=8G" -m rsync -r gs://MY-BUCKET/MY_PREFIX/year={{execution_date.year}}/month={{execution_date.strftime('%m')}}/day={{execution_date.strftime('%d')}} \
s3://MY-BUCKET/MY_PREFIX/year={{execution_date.year}}/month={{execution_date.strftime('%m')}}/day={{execution_date.strftime('%d')}}
If I remove the -m option, composer fails out - An issue i should ask them about - but a few files upload. If I leave the -m I get:
Hi,
I am trying to rsync a bucket from gcs -> aws via gsutil.
I am using composer to schedule a bash script that runs:
If I remove the -m option, composer fails out - An issue i should ask them about - but a few files upload. If I leave the -m I get:
Not exactly sure if its on the AWS end or not, but any help would be appreciated.
The text was updated successfully, but these errors were encountered: