OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI
OverviewArchitectureRecipeSourceProcessorSinkContext Graph for AI

Overview

Processors transform records in-flight between extraction and sinking. Each processor receives a record, modifies the entity, and passes it on. Edges pass through unchanged.

Processors run sequentially in recipe order — the output of one becomes the input of the next:

processors:
  - name: enrich
    config:
      attributes:
        domain: payments
  - name: labels
    config:
      labels:
        source: meteor

If a processor fails, the whole run stops and fails. Processors are not retried.

Supported processors

ProcessorDescription
enrichAdd custom key-value pairs to entity.properties
labelsAdd labels into entity.properties.labels
scriptTransform the entity with a Tengo script

For how the pipeline runs processors, see Architecture. For script examples, see the scripting guide.

TableauEnrich
On this page
Supported processors