Copy Data From Azure Blob Storage to AWS S3

前端 未结 2 1897
自闭症患者
自闭症患者 2020-12-14 13:41

I am new to Azure Data Factory and have an interesting requirement.

I need to move files from Azure Blob storage to Amazon S3, ideally using Azure Data Factory.

2条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-14 14:16

    Download Files From Azure Storage using AzCopy into a temporal local repository

    You can download the files from Azure Cloud storage to your local system, just follow the below command, use the recursive flag to copy all the files

    azcopy /Source:[source_container_url] /Dest:[local_file_path] /Sourcekey:[source_storage_account_access_key] /s
    

    Upload Local Files to Amazon S3 using aws s3 cp command

     aws s3 cp local_file_path s3://my-bucket/ --recursive
    

提交回复
热议问题