Skip to main content

Fan-Out Explorer

Use the stage controls to compare the synthetic input, authored output, and configuration at each step.

Interactive pipeline

FAN-OUT PATTERN

Multi-destination branch configuration

Stage 1 of 5

Single Destination

Basic pipeline with single file output - the typical starting point before implementing fan-out pattern.

0HighlightsAuthored emphasis only—not a computed diff.
Copy & download

Input

{"event_id": "sensor-001","sensor_id": "temp-sensor-42","timestamp": "2025-01-20T10:30:00Z","temperature": 23.5,"humidity": 65.2}

Output

→ file:path: /var/data/events.jsonl// Single destination - no redundancy
Stage configuration01-single-destination.yaml
name: single-destination-pipeline
type: pipeline

config:
  input:
    http_server:
      address: 0.0.0.0:8080
      path: /events

  output:
    file:
      path: /var/data/events.jsonl
      codec: lines