aws.glue.get_job_runs
Example SQL Queries
SELECT * FROMaws.glue.get_job_runsWHERE"job_name" = 'VALUE';Description
Retrieves metadata for all runs of a given job definition.
Table Definition
| Column Name | Column Data Type |
|---|---|
| job_name Required Input Column The name of the job definition being used in this run. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| allocated_capacity This field is deprecated. Use MaxCapacity instead. The number of Glue data processing units (DPUs) allocated to this JobRun. From 2 to 100 DPUs can be allocated; the default is 10. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page. | BIGINT |
| arguments The job arguments associated with this run. For this job run, they replace the default arguments set in the job definition itself. You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes. Job arguments may be logged. Do not pass plaintext secrets as arguments. Retrieve secrets from a Glue Connection, Secrets Manager or other secret management mechanism if you intend to keep them within the Job. For information about how to specify and consume your own Job arguments, see the Calling Glue APIs in Python topic in the developer guide. For information about the arguments you can provide to this field when configuring Spark jobs, see the Special Parameters Used by Glue topic in the developer guide. For information about the arguments you can provide to this field when configuring Ray jobs, see Using job parameters in Ray jobs in the developer guide. | MAP(VARCHAR, VARCHAR) |
| attempt The number of the attempt to run this job. | BIGINT |
| completed_on The date and time that this job run completed. | TIMESTAMP_S |
| dpu_seconds This field can be set for either job runs with execution class FLEX or when Auto Scaling is enabled, and represents the total time each executor ran during the lifecycle of a job run in seconds, multiplied by a DPU factor (1 for G.1X, 2 for G.2X, or 0.25 for G.025X workers). This value may be different than the executionEngineRuntime * MaxCapacity as in the case of Auto Scaling jobs, as the number of executors running at a given time may be less than the MaxCapacity. Therefore, it is possible that the value of DPUSeconds is less than executionEngineRuntime * MaxCapacity. | DOUBLE |
| error_message An error message associated with this job run. | VARCHAR |
| execution_class Indicates whether the job is run with a standard or flexible execution class. The standard execution-class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. Only jobs with Glue version 3.0 and above and command type glueetl will be allowed to set ExecutionClass to FLEX. The flexible execution class is available for Spark jobs. | VARCHAR |
| execution_time The amount of time (in seconds) that the job run consumed resources. | BIGINT |
| glue_version In Spark jobs, GlueVersion determines the versions of Apache Spark and Python that Glue available in a job. The Python version indicates the version supported for jobs of type Spark. Ray jobs should set GlueVersion to 4.0 or greater. However, the versions of Ray, Python and additional libraries available in your Ray job are determined by the Runtime parameter of the Job command. For more information about the available Glue versions and corresponding Spark and Python versions, see Glue version in the developer guide. Jobs that are created without specifying a Glue version default to Glue 0.9. | VARCHAR |
| id The ID of this job run. | VARCHAR |
| job_mode A mode that describes how a job was created. Valid values are:
When the JobMode field is missing or null, SCRIPT is assigned as the default value. | VARCHAR |
| job_run_queuing_enabled Specifies whether job run queuing is enabled for the job run. A value of true means job run queuing is enabled for the job run. If false or not populated, the job run will not be considered for queueing. | BOOLEAN |
| job_run_state The current state of the job run. For more information about the statuses of jobs that have terminated abnormally, see Glue Job Run Statuses. | VARCHAR |
| last_modified_on The last time that this job run was modified. | TIMESTAMP_S |
| log_group_name The name of the log group for secure logging that can be server-side encrypted in Amazon CloudWatch using KMS. This name can be /aws-glue/jobs/, in which case the default encryption is NONE. If you add a role name and SecurityConfiguration name (in other words, /aws-glue/jobs-yourRoleName-yourSecurityConfigurationName/), then that security configuration is used to encrypt the log group. | VARCHAR |
| maintenance_window This field specifies a day of the week and hour for a maintenance window for streaming jobs. Glue periodically performs maintenance activities. During these maintenance windows, Glue will need to restart your streaming jobs. Glue will restart the job within 3 hours of the specified maintenance window. For instance, if you set up the maintenance window for Monday at 10:00AM GMT, your jobs will be restarted between 10:00AM GMT to 1:00PM GMT. | VARCHAR |
| max_capacity For Glue version 1.0 or earlier jobs, using the standard worker type, the number of Glue data processing units (DPUs) that can be allocated when this job runs. A DPU is a relative measure of processing power that consists of 4 vCPUs of compute capacity and 16 GB of memory. For more information, see the Glue pricing page. For Glue version 2.0+ jobs, you cannot specify a Maximum capacity. Instead, you should specify a Worker type and the Number of workers. Do not set MaxCapacity if using WorkerType and NumberOfWorkers. The value that can be allocated for MaxCapacity depends on whether you are running a Python shell job, an Apache Spark ETL job, or an Apache Spark streaming ETL job:
| DOUBLE |
| notification_property Specifies configuration properties of a job run notification. | STRUCT( |
Show child fields
| |
| number_of_workers The number of workers of a defined workerType that are allocated when a job runs. | BIGINT |
| predecessor_runs A list of predecessors to this job run. | STRUCT( |
Show child fields
| |
| previous_run_id The ID of the previous run of this job. For example, the JobRunId specified in the StartJobRun action. | VARCHAR |
| profile_name The name of an Glue usage profile associated with the job run. | VARCHAR |
| security_configuration The name of the SecurityConfiguration structure to be used with this job run. | VARCHAR |
| started_on The date and time at which this job run was started. | TIMESTAMP_S |
| state_detail This field holds details that pertain to the state of a job run. The field is nullable. For example, when a job run is in a WAITING state as a result of job run queuing, the field has the reason why the job run is in that state. | VARCHAR |
| timeout The JobRun timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. This value overrides the timeout value set in the parent job. Streaming jobs must have timeout values less than 7 days or 10080 minutes. When the value is left blank, the job will be restarted after 7 days based if you have not setup a maintenance window. If you have setup maintenance window, it will be restarted during the maintenance window after 7 days. | BIGINT |
| trigger_name The name of the trigger that started this job run. | VARCHAR |
| worker_type The type of predefined worker that is allocated when a job runs. Accepts a value of G.1X, G.2X, G.4X, G.8X or G.025X for Spark jobs. Accepts the value Z.2X for Ray jobs.
| VARCHAR |