EMRServerless.Client.
start_job_run
(**kwargs)¶Starts a job run.
See also: AWS API Documentation
Request Syntax
response = client.start_job_run(
applicationId='string',
clientToken='string',
executionRoleArn='string',
jobDriver={
'sparkSubmit': {
'entryPoint': 'string',
'entryPointArguments': [
'string',
],
'sparkSubmitParameters': 'string'
},
'hive': {
'query': 'string',
'initQueryFile': 'string',
'parameters': 'string'
}
},
configurationOverrides={
'applicationConfiguration': [
{
'classification': 'string',
'properties': {
'string': 'string'
},
'configurations': {'... recursive ...'}
},
],
'monitoringConfiguration': {
's3MonitoringConfiguration': {
'logUri': 'string',
'encryptionKeyArn': 'string'
},
'managedPersistenceMonitoringConfiguration': {
'enabled': True|False,
'encryptionKeyArn': 'string'
}
}
},
tags={
'string': 'string'
},
executionTimeoutMinutes=123,
name='string'
)
[REQUIRED]
The ID of the application on which to run the job.
[REQUIRED]
The client idempotency token of the job run to start. Its value must be unique for each request.
This field is autopopulated if not provided.
[REQUIRED]
The execution role ARN for the job run.
The job driver for the job run.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set: sparkSubmit
, hive
.
The job driver parameters specified for Spark.
The entry point for the Spark submit job run.
The arguments for the Spark submit job run.
The parameters for the Spark submit job run.
The job driver parameters specified for Hive.
The query for the Hive job run.
The query file for the Hive job run.
The parameters for the Hive job run.
The configuration overrides for the job run.
The override configurations for the application.
A configuration specification to be used when provisioning an application. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file.
The classification within a configuration.
A set of properties specified within a configuration classification.
A list of additional configurations to apply within a configuration object.
The override configurations for monitoring.
The Amazon S3 configuration for monitoring log publishing.
The Amazon S3 destination URI for log publishing.
The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
The managed log persistence configuration for a job run.
Enables managed logging and defaults to true. If set to false, managed logging will be turned off.
The KMS key ARN to encrypt the logs stored in managed log persistence.
The tags assigned to the job run.
dict
Response Syntax
{
'applicationId': 'string',
'jobRunId': 'string',
'arn': 'string'
}
Response Structure
(dict) --
applicationId (string) --
This output displays the application ID on which the job run was submitted.
jobRunId (string) --
The output contains the ID of the started job run.
arn (string) --
The output lists the execution role ARN of the job run.
Exceptions
EMRServerless.Client.exceptions.ValidationException
EMRServerless.Client.exceptions.ResourceNotFoundException
EMRServerless.Client.exceptions.InternalServerException
EMRServerless.Client.exceptions.ConflictException