Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data Job = Job' {
- numberOfWorkers :: Maybe Int
- command :: Maybe JobCommand
- notificationProperty :: Maybe NotificationProperty
- lastModifiedOn :: Maybe POSIX
- connections :: Maybe ConnectionsList
- workerType :: Maybe WorkerType
- securityConfiguration :: Maybe Text
- glueVersion :: Maybe Text
- nonOverridableArguments :: Maybe (HashMap Text Text)
- role' :: Maybe Text
- name :: Maybe Text
- logUri :: Maybe Text
- maxRetries :: Maybe Int
- executionProperty :: Maybe ExecutionProperty
- allocatedCapacity :: Maybe Int
- maxCapacity :: Maybe Double
- timeout :: Maybe Natural
- defaultArguments :: Maybe (HashMap Text Text)
- description :: Maybe Text
- createdOn :: Maybe POSIX
- newJob :: Job
- job_numberOfWorkers :: Lens' Job (Maybe Int)
- job_command :: Lens' Job (Maybe JobCommand)
- job_notificationProperty :: Lens' Job (Maybe NotificationProperty)
- job_lastModifiedOn :: Lens' Job (Maybe UTCTime)
- job_connections :: Lens' Job (Maybe ConnectionsList)
- job_workerType :: Lens' Job (Maybe WorkerType)
- job_securityConfiguration :: Lens' Job (Maybe Text)
- job_glueVersion :: Lens' Job (Maybe Text)
- job_nonOverridableArguments :: Lens' Job (Maybe (HashMap Text Text))
- job_role :: Lens' Job (Maybe Text)
- job_name :: Lens' Job (Maybe Text)
- job_logUri :: Lens' Job (Maybe Text)
- job_maxRetries :: Lens' Job (Maybe Int)
- job_executionProperty :: Lens' Job (Maybe ExecutionProperty)
- job_allocatedCapacity :: Lens' Job (Maybe Int)
- job_maxCapacity :: Lens' Job (Maybe Double)
- job_timeout :: Lens' Job (Maybe Natural)
- job_defaultArguments :: Lens' Job (Maybe (HashMap Text Text))
- job_description :: Lens' Job (Maybe Text)
- job_createdOn :: Lens' Job (Maybe UTCTime)
Documentation
Specifies a job definition.
See: newJob
smart constructor.
Job' | |
|
Instances
Create a value of Job
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:numberOfWorkers:Job'
, job_numberOfWorkers
- The number of workers of a defined workerType
that are allocated when
a job runs.
The maximum number of workers you can define are 299 for G.1X
, and 149
for G.2X
.
$sel:command:Job'
, job_command
- The JobCommand
that runs this job.
$sel:notificationProperty:Job'
, job_notificationProperty
- Specifies configuration properties of a job notification.
$sel:lastModifiedOn:Job'
, job_lastModifiedOn
- The last point in time when this job definition was modified.
$sel:connections:Job'
, job_connections
- The connections used for this job.
$sel:workerType:Job'
, job_workerType
- The type of predefined worker that is allocated when a job runs. Accepts
a value of Standard, G.1X, or G.2X.
- For the
Standard
worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker. - For the
G.1X
worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs. - For the
G.2X
worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.
$sel:securityConfiguration:Job'
, job_securityConfiguration
- The name of the SecurityConfiguration
structure to be used with this
job.
$sel:glueVersion:Job'
, job_glueVersion
- Glue version determines the versions of Apache Spark and Python that
Glue supports. The Python version indicates the version supported for
jobs of type Spark.
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.
$sel:nonOverridableArguments:Job'
, job_nonOverridableArguments
- Non-overridable arguments for this job, specified as name-value pairs.
$sel:role':Job'
, job_role
- The name or Amazon Resource Name (ARN) of the IAM role associated with
this job.
$sel:name:Job'
, job_name
- The name you assign to this job definition.
$sel:logUri:Job'
, job_logUri
- This field is reserved for future use.
$sel:maxRetries:Job'
, job_maxRetries
- The maximum number of times to retry this job after a JobRun fails.
$sel:executionProperty:Job'
, job_executionProperty
- An ExecutionProperty
specifying the maximum number of concurrent runs
allowed for this job.
$sel:allocatedCapacity:Job'
, job_allocatedCapacity
- This field is deprecated. Use MaxCapacity
instead.
The number of Glue data processing units (DPUs) allocated to runs of this job. You can allocate from 2 to 100 DPUs; 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.
$sel:maxCapacity:Job'
, job_maxCapacity
- 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.
Do not set Max Capacity
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:
- When you specify a Python shell job
(
JobCommand.Name
="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU. - When you specify an Apache Spark ETL job
(
JobCommand.Name
="glueetl") or Apache Spark streaming ETL job (JobCommand.Name
="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.
For Glue version 2.0 jobs, you cannot instead specify a
Maximum capacity
. Instead, you should specify a Worker type
and the
Number of workers
.
$sel:timeout:Job'
, job_timeout
- The job timeout in minutes. This is the maximum time that a job run can
consume resources before it is terminated and enters TIMEOUT
status.
The default is 2,880 minutes (48 hours).
$sel:defaultArguments:Job'
, job_defaultArguments
- The default arguments for this job, specified as name-value pairs.
You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.
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 key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.
$sel:description:Job'
, job_description
- A description of the job.
$sel:createdOn:Job'
, job_createdOn
- The time and date that this job definition was created.
job_numberOfWorkers :: Lens' Job (Maybe Int) Source #
The number of workers of a defined workerType
that are allocated when
a job runs.
The maximum number of workers you can define are 299 for G.1X
, and 149
for G.2X
.
job_command :: Lens' Job (Maybe JobCommand) Source #
The JobCommand
that runs this job.
job_notificationProperty :: Lens' Job (Maybe NotificationProperty) Source #
Specifies configuration properties of a job notification.
job_lastModifiedOn :: Lens' Job (Maybe UTCTime) Source #
The last point in time when this job definition was modified.
job_connections :: Lens' Job (Maybe ConnectionsList) Source #
The connections used for this job.
job_workerType :: Lens' Job (Maybe WorkerType) Source #
The type of predefined worker that is allocated when a job runs. Accepts a value of Standard, G.1X, or G.2X.
- For the
Standard
worker type, each worker provides 4 vCPU, 16 GB of memory and a 50GB disk, and 2 executors per worker. - For the
G.1X
worker type, each worker maps to 1 DPU (4 vCPU, 16 GB of memory, 64 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs. - For the
G.2X
worker type, each worker maps to 2 DPU (8 vCPU, 32 GB of memory, 128 GB disk), and provides 1 executor per worker. We recommend this worker type for memory-intensive jobs.
job_securityConfiguration :: Lens' Job (Maybe Text) Source #
The name of the SecurityConfiguration
structure to be used with this
job.
job_glueVersion :: Lens' Job (Maybe Text) Source #
Glue version determines the versions of Apache Spark and Python that Glue supports. The Python version indicates the version supported for jobs of type Spark.
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.
job_nonOverridableArguments :: Lens' Job (Maybe (HashMap Text Text)) Source #
Non-overridable arguments for this job, specified as name-value pairs.
job_role :: Lens' Job (Maybe Text) Source #
The name or Amazon Resource Name (ARN) of the IAM role associated with this job.
job_maxRetries :: Lens' Job (Maybe Int) Source #
The maximum number of times to retry this job after a JobRun fails.
job_executionProperty :: Lens' Job (Maybe ExecutionProperty) Source #
An ExecutionProperty
specifying the maximum number of concurrent runs
allowed for this job.
job_allocatedCapacity :: Lens' Job (Maybe Int) Source #
This field is deprecated. Use MaxCapacity
instead.
The number of Glue data processing units (DPUs) allocated to runs of this job. You can allocate from 2 to 100 DPUs; 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.
job_maxCapacity :: Lens' Job (Maybe Double) Source #
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.
Do not set Max Capacity
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:
- When you specify a Python shell job
(
JobCommand.Name
="pythonshell"), you can allocate either 0.0625 or 1 DPU. The default is 0.0625 DPU. - When you specify an Apache Spark ETL job
(
JobCommand.Name
="glueetl") or Apache Spark streaming ETL job (JobCommand.Name
="gluestreaming"), you can allocate from 2 to 100 DPUs. The default is 10 DPUs. This job type cannot have a fractional DPU allocation.
For Glue version 2.0 jobs, you cannot instead specify a
Maximum capacity
. Instead, you should specify a Worker type
and the
Number of workers
.
job_timeout :: Lens' Job (Maybe Natural) Source #
The job timeout in minutes. This is the maximum time that a job run can
consume resources before it is terminated and enters TIMEOUT
status.
The default is 2,880 minutes (48 hours).
job_defaultArguments :: Lens' Job (Maybe (HashMap Text Text)) Source #
The default arguments for this job, specified as name-value pairs.
You can specify arguments here that your own job-execution script consumes, as well as arguments that Glue itself consumes.
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 key-value pairs that Glue consumes to set up your job, see the Special Parameters Used by Glue topic in the developer guide.