Azure Synapse Analytics · Schema
SparkJob
AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| state | string | |
| name | string | |
| submitter | string | |
| compute | string | |
| sparkApplicationId | string | |
| livyId | string | |
| timing | array | |
| sparkPoolName | string | |
| submitTime | string | |
| endTime | string | |
| queuedDuration | string | |
| runningDuration | string | |
| totalDuration | string | |
| jobType | string | |
| pipeline | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SparkJob",
"title": "SparkJob",
"type": "object",
"properties": {
"state": {
"type": "string"
},
"name": {
"type": "string"
},
"submitter": {
"type": "string"
},
"compute": {
"type": "string"
},
"sparkApplicationId": {
"type": "string"
},
"livyId": {
"type": "string"
},
"timing": {
"type": "array",
"items": {
"type": "string"
}
},
"sparkPoolName": {
"type": "string"
},
"submitTime": {
"type": "string",
"format": "date-time"
},
"endTime": {
"type": "string",
"format": "date-time"
},
"queuedDuration": {
"type": "string"
},
"runningDuration": {
"type": "string"
},
"totalDuration": {
"type": "string"
},
"jobType": {
"type": "string"
},
"pipeline": {
"type": "array",
"items": {
"type": "object",
"properties": {
"runId": {
"type": "string"
},
"name": {
"type": "string"
}
}
}
}
}
}