2 réponses
- Le plus récent
- Le plus de votes
- La plupart des commentaires
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"
]
}
répondu il y a un an
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.
répondu il y a un an
Contenus pertinents
- demandé il y a 10 mois
- demandé il y a un an
- demandé il y a 6 mois
- AWS OFFICIELA mis à jour il y a 4 ans
- AWS OFFICIELA mis à jour il y a 2 ans
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.