2 個答案
- 最新
- 最多得票
- 最多評論
0
This error occurs when the role is not able to fetch the results from S3, which is caused probably that the role did not have the proper S3 permissions. Can you confirm that the role you specified in work group has the following permissions or check if there is any explicit "Deny" for S3 output location ? (Please replace the S3 bucket with yours) You can read more about the role permissions in this documentation.
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:ListBucket",
"s3:DeleteObject",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::DOC-EXAMPLE-BUCKET/*",
"arn:aws:s3:::DOC-EXAMPLE-BUCKET"
]
}
已回答 1 年前
0
I understand your issue still persists. To answer your question, we require details that are non-public information. Please open a support case with AWS using the following link.
已回答 1 年前
相關內容
- AWS 官方已更新 7 個月前
- AWS 官方已更新 8 個月前
- AWS 官方已更新 7 個月前
The spark workgroup IAM role has AWSAthenaSparkRolePolicy. It does not have any "Deny" and the first permission is exactly the permissions that you wrote only for my specified output bucket. I also added my other bucket with data, but this does not solve the issue.