DESCRIBE JOB
Description
Show the configurations for a specified Job.
Note that the SQL statement does not end with ;
Syntax
DESCRIBE JOB <job_name>
Examples
DESCRIBE JOB count_transactions
Required parameters
<job_name>
: Specify the name of the Job to describe.
Status API
Example Status API response
The Status API response of the Job run description.
{
"apiStatus": "API_OPERATION_STATUS_SUCCESS",
"apiResponse": {
"describeJobApiResponse": {
"sparkJob": {
"name": "<job_name>",
"clusterName": "<cluster_name>",
"mainApplicationFilePath": "<main_application_file_path>",
"arguments": "<application_arguments>",
"sparkConfigs": {
"<spark_config_key1>": "<spark_config_value1>",
"<spark_config_key2>": "<spark_config_value2>",
},
"jarConfig": {
"mainClass": "<jar_main_class>"
},
"pythonConfig": { },
"latestJobRunId": "<latest_job_run_id>",
"latestJobStatus": "<latest_job_status>",
"type": "<jar | python>",
"latestJobRunSubmittedAt": "YYYY-MM-DDTHH:MM:SS.ssssssZ"
}
}
}
}