View source: R/glue_operations.R
glue_start_job_run | R Documentation |
Starts a job run using a job definition.
See https://www.paws-r-sdk.com/docs/glue_start_job_run/ for full documentation.
glue_start_job_run(
JobName,
JobRunQueuingEnabled = NULL,
JobRunId = NULL,
Arguments = NULL,
AllocatedCapacity = NULL,
Timeout = NULL,
MaxCapacity = NULL,
SecurityConfiguration = NULL,
NotificationProperty = NULL,
WorkerType = NULL,
NumberOfWorkers = NULL,
ExecutionClass = NULL
)
JobName |
[required] The name of the job definition to use. |
JobRunQueuingEnabled |
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. |
JobRunId |
The ID of a previous |
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. |
AllocatedCapacity |
This field is deprecated. Use The number of Glue data processing units (DPUs) to allocate to this JobRun. You can allocate a minimum of 2 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. |
Timeout |
The Jobs must have timeout values less than 7 days or 10080 minutes. Otherwise, the jobs will throw an exception. When the value is left blank, the timeout is defaulted to 2880 minutes. Any existing Glue jobs that had a timeout value greater than 7 days will be defaulted to 7 days. For instance if you have specified a timeout of 20 days for a batch job, it will be stopped on the 7th day. For streaming jobs, if you have set up a maintenance window, it will be restarted during the maintenance window after 7 days. |
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. For Glue version 2.0+ jobs, you cannot specify a Do not set The value that can be allocated for
|
SecurityConfiguration |
The name of the |
NotificationProperty |
Specifies configuration properties of a job run notification. |
WorkerType |
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.
|
NumberOfWorkers |
The number of workers of a defined |
ExecutionClass |
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 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.