简体   繁体   English

如何将数据从Amazon AWS S3传输到Google云存储

[英]how do I transfer data from amazon aws S3 to google cloud storage

I am trying to load data from aws S3 to google cloud storage: - I am using gsutil - I've made the file on S3 public 我正在尝试将数据从AWS S3加载到Google云端存储:-我正在使用gsutil-我已将文件在S3上公开

on the gsutil command line on a windows machine I entered: 在我输入的Windows计算机上的gsutil命令行上:

python C:\\gsutil\\gsutil cp https://s3.amazonaws.com/my_bucket/myfile.csv.gz gs://my_folder python C:\\ gsutil \\ gsutil cp https://s3.amazonaws.com/my_bucket/myfile.csv.gz gs:// my_folder

The error I receive is: InvalidUriError: Unrecognized scheme "https" 我收到的错误是:InvalidUriError:无法识别的方案“ https”

I have tried substituting http for https 我尝试用http代替https

I have successfully uploaded from my local computer to google cloud storage substituting in a local file. 我已经成功地从本地计算机上载到了Google云端存储中,并替换成了本地文件。

Thanks. 谢谢。

http or https are not supported by gsutil command. gsutil命令不支持http或https。 Try... 尝试...

python C:\gsutil\gsutil cp s3://my_bucket/myfile.csv.gz gs://my_folder

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 将数据从 Google Cloud Storage 导出到 Amazon S3 - Exporting data from Google Cloud Storage to Amazon S3 如何在不进行任何手动操作的情况下将数据从 Google 云存储传输到 S3? - How to Transfer data from Google cloud storage to S3 without any manual activity? 从Amazon S3传输Google云端存储 - 无效的访问密钥 - Google Cloud Storage transfer from Amazon S3 - Invalid access key 从AWS S3转移到Google-Cloud-Storage“UNKNOWN”失败 - Transfer from AWS S3 to Google-Cloud-Storage “UNKNOWN” failures 通过无服务器方式的云功能将数据从Google云存储移动到Amazon s3 - Moving data from google cloud storage to Amazon s3 via cloud function in a serverless fashion 如何将数据从Amazon S3传输到Amazon EC2 - How to transfer data from Amazon S3 to Amazon EC2 只要在AWS S3存储桶中创建新文件,是否有任何服务/ google cloud api支持调用从AWS S3到google存储的文件传输? - is there any service/google cloud api support to invoke file transfer from AWS S3 to google storage, as soon as new file get created in AWS S3 bucket? 如何从Amazon S3云存储中获取文件 - How to get the files from amazon s3 cloud storage 自动将Amazon S3文件或Google Cloud Storage中的链接添加到Google Cloud SQL表 - Automatically add links from Amazon S3 files or Google Cloud Storage to Google Cloud SQL table 如何使用 gsutil 通过 http 链接从谷歌云存储下载到 AWS 实例或 s3 存储桶? - How to use gsutil to download from google cloud storage to AWS instance or s3 bucket with a http link?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM