我正在尝试使用 GC 函数(相当于 AWS Lambda)将文件从 GCS 移动到 s3 存储桶。为了实现它,我尝试了 3 种不同的方法。在方法 1 中,我得到错误,虽然我在其他 2 个选项中没有得到错误,但文件实际上并没有被复制。
有人可以帮忙吗?
另外两种方法都标有#,我分别尝试了每一种。
s3_client.upload_file 不起作用,因为它需要源文件的路径,当我提供“gs://<google_bucket_name>/30327570.pdf”时,它说
'不存在这样的文件或目录'
gustil 命令正确执行,没有错误,但没有在 s3 存储桶中创建新文件。
import os
from google.cloud import storage
import boto3
import subprocess
s3_client=boto3.client('s3',aws_access_key_id='XYZ',aws_secret_access_key='ABC')
client = storage.Client()
def hello_gcs(data, context):
bucket = client.get_bucket(data['bucket'])
blob = bucket.blob(data['name'])
#subprocess.call(['gsutil -m rsync -r gs://<google_bucket_name>/30327570.pdf s3://<aws_bucket_name>'], shell=True)
subprocess.call(['gsutil cp gs://<google_bucket_name>/30327570.pdf s3://<aws_bucket_name>'], shell=True)
#s3_client.upload_file('gs://<google_bucket_name>/30327570.pdf','<aws_bucket_name>','30327570.pdf')
牛魔王的故事
宝慕林4294392
相关分类