LineageEvent

data class LineageEvent(    val eventType: String? = null,     val eventTime: LocalDateTime,     val run: Run,     val action: Action,     val inputs: Array<Dataset>? = null,     val outputs: Array<Dataset>? = null,     val producer: String)

Represents a lineage event.

Constructors

Link copied to clipboard
constructor(    eventType: String? = null,     eventTime: LocalDateTime,     run: Run,     action: Action,     inputs: Array<Dataset>? = null,     outputs: Array<Dataset>? = null,     producer: String)

Properties

Link copied to clipboard

The associated action.

Link copied to clipboard

The time of the lineage event.

Link copied to clipboard
val eventType: String? = null

The type of the lineage event (optional).

Link copied to clipboard
val inputs: Array<Dataset>? = null

The array of input datasets (optional).

Link copied to clipboard
val outputs: Array<Dataset>? = null

The array of output datasets (optional).

Link copied to clipboard

The producer of the lineage event.

Link copied to clipboard
val run: Run

The associated run.