Describe Job Run
emrcontainers_describe_job_run | R Documentation |
Displays detailed information about a job run¶
Description¶
Displays detailed information about a job run. A job run is a unit of work, such as a Spark jar, PySpark script, or SparkSQL query, that you submit to Amazon EMR on EKS.
Usage¶
Arguments¶
id
[required] The ID of the job run request.
virtualClusterId
[required] The ID of the virtual cluster for which the job run is submitted.
Value¶
A list with the following syntax:
list(
jobRun = list(
id = "string",
name = "string",
virtualClusterId = "string",
arn = "string",
state = "PENDING"|"SUBMITTED"|"RUNNING"|"FAILED"|"CANCELLED"|"CANCEL_PENDING"|"COMPLETED",
clientToken = "string",
executionRoleArn = "string",
releaseLabel = "string",
configurationOverrides = list(
applicationConfiguration = list(
list(
classification = "string",
properties = list(
"string"
),
configurations = list()
)
),
monitoringConfiguration = list(
persistentAppUI = "ENABLED"|"DISABLED",
cloudWatchMonitoringConfiguration = list(
logGroupName = "string",
logStreamNamePrefix = "string"
),
s3MonitoringConfiguration = list(
logUri = "string"
),
containerLogRotationConfiguration = list(
rotationSize = "string",
maxFilesToKeep = 123
)
)
),
jobDriver = list(
sparkSubmitJobDriver = list(
entryPoint = "string",
entryPointArguments = list(
"string"
),
sparkSubmitParameters = "string"
),
sparkSqlJobDriver = list(
entryPoint = "string",
sparkSqlParameters = "string"
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
finishedAt = as.POSIXct(
"2015-01-01"
),
stateDetails = "string",
failureReason = "INTERNAL_ERROR"|"USER_ERROR"|"VALIDATION_ERROR"|"CLUSTER_UNAVAILABLE",
tags = list(
"string"
),
retryPolicyConfiguration = list(
maxAttempts = 123
),
retryPolicyExecution = list(
currentAttemptCount = 123
)
)
)