Share Your AWS re:Post Experience - Quick 3 Question Survey
Help us improve AWS re:Post! We're interested in understanding how you use re:Post and its impact on your AWS journey. Please take a moment to complete our brief 3-question survey.
【以下的问题经过翻译处理】 使用write_dynamic_frame.from_options写入动态框架的相同作业在Glue 2.0中成功(像往常一样),但在将版本更改为Glue 3.0时,出现以下错误消息而失败。有人遇到过这个问题并找到了原因或解决方法吗?
An error occurred while calling o90.pyWriteDynamicFrame. java.io.IOException: Unknown Server Side Encryption algorithm aws:kms
【以下的回答经过翻译处理】 我遇到了同样的问题。对我来说,解决方案是在读取文件时从使用"s3a" URI模式切换到只使用"s3"。 df = spark.read.json('s3a://...')
改写成这样:
df = spark.read.json('s3://...')
您未登录。 登录 发布回答。
一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。