skip to Main Content

I am getting "Error loading data" in Job run monitoring page on AWS Glue. I can able to see the data when I logged in as "Admin" user but I cannot see the data while I am logging in as "role" user. Do we need to add any specific permission to see the job monitoring data in Role policy.

Screenshot of the error message

2

Answers


  1. Your IAM role should have glue:UseGlueStudio permission.

    Login or Signup to reply.
  2. If you’re unable to see AWS Glue job run monitoring data, you may need to adjust the permissions of the "role" user.

    From screenshot you seem to be missing glue:UseGlueStudio permission.

    Here’s a general guide to help you configure the necessary permissions:

    1. AWS Glue Permissions: At a minimum, the role/user should have the following AWS Glue permissions to view job details:

      • glue:GetJobs
      • glue:GetJobRun
      • glue:GetJobRuns
      • glue:UseGlueStudio
    2. IAM Policy: Update the IAM policy attached to the "role" user to ensure it includes the necessary AWS Glue permissions:

      {
        "Version": "2012-10-17",
        "Statement": [
          {
            "Effect": "Allow",
            "Action": [
              "glue:GetJobs",
              "glue:GetJobRun",
              "glue:GetJobRuns"
            ],
            "Resource": "*"
          }
        ]
      }
      
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search