JobExecutionTO Data Type

Abstract Type
Properties
name data type description
sparkExecutionId string
wldExecutionId string
inputs array of string
executionMessage string
outputs array of string
sparkJobType string
sparkEventLogDir string
status string
sparkHistoryServer string
startTime number
endTime number
key string
operationKey string
command string
metrics ExecutionMetrics
description string
jobLogPath string
properties map of object
principal string

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "sparkExecutionId" : "...",
  "wldExecutionId" : "...",
  "inputs" : [ "...", "..." ],
  "executionMessage" : "...",
  "outputs" : [ "...", "..." ],
  "sparkJobType" : "...",
  "sparkEventLogDir" : "...",
  "status" : "...",
  "sparkHistoryServer" : "...",
  "startTime" : 12345,
  "endTime" : 12345,
  "key" : "...",
  "operationKey" : "...",
  "command" : "...",
  "metrics" : {
    "deletedResourcesCount" : 12345,
    "lineageInsertedCount" : 12345,
    "impactedResourcesCount" : 12345,
    "skippedCount" : 12345,
    "deletedVirtualFoldersCount" : 12345,
    "totalSize" : 12345.0,
    "tagAssociationInsertedCount" : 12345,
    "incompleteCount" : 12345,
    "tagAssociationRemovedCount" : 12345,
    "successCount" : 12345
  },
  "description" : "...",
  "jobLogPath" : "...",
  "properties" : {
    "property1" : { },
    "property2" : { }
  },
  "principal" : "..."
}