main-concepts

No menu items for this category

Pipeline

This schema defines the Pipeline entity. A pipeline enables the flow of data from source to destination through a series of processing steps. ETL is a type of pipeline where the series of steps Extract, Transform and Load the data.

  • statusType (string): Enum defining the possible Status. Must be one of: ["Successful", "Failed", "Pending", "Skipped"].
  • taskStatus (object): This schema defines a time series of the status of a Pipeline or Task. Cannot contain additional properties.
  • task (object): Cannot contain additional properties.
    • name (string, required): Name that identifies this task instance uniquely.
    • displayName (string): Display Name that identifies this Task. It could be title or label from the pipeline services.
    • fullyQualifiedName (string): A unique name that identifies a pipeline in the format 'ServiceName.PipelineName.TaskName'.
    • description: Description of this Task. Refer to ../../type/basic.json#/definitions/markdown.
    • sourceUrl: Task URL to visit/manage. This URL points to respective pipeline service UI. Refer to ../../type/basic.json#/definitions/sourceUrl.
    • downstreamTasks (array): All the tasks that are downstream of this task. Default: null.
      • Items (string)
    • taskType (string): Type of the Task. Usually refers to the class it implements.
    • taskSQL: SQL used in the task. Can be used to determine the lineage. Refer to ../../type/basic.json#/definitions/sqlQuery.
    • startDate (string): start date for the task.
    • endDate (string): end date for the task.
    • tags (array): Tags for this task. Default: [].
    • owners: Owners of this task. Refer to ../../type/entityReferenceList.json.
  • pipelineStatus (object): Series of pipeline executions, its status and task status. Cannot contain additional properties.

Documentation file automatically generated at 2025-01-15 09:05:25.266839+00:00.