2 Respuestas
- Más nuevo
- Más votos
- Más comentarios
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"
]
}
respondido hace un año
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.
respondido hace un año
Contenido relevante
- OFICIAL DE AWSActualizada hace 3 años
- OFICIAL DE AWSActualizada hace 3 años
- OFICIAL DE AWSActualizada hace 2 años
- OFICIAL DE AWSActualizada hace 3 años
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.