Work in Progress: This page is under development. Use the feedback button on the bottom right to help us improve it.

StdOut

Write pipeline output to stdout for debugging and development.

Quick Example

apiVersion: laminar.io/v1
kind: Table
spec:
  name: debug_output
  connector: stdout
  config: {}
  schema:
    format:
      json: {}
    fields:
      - field_name: event_id
        field_type:
          type:
            primitive: Utf8
        nullable: false
      - field_name: message
        field_type:
          type:
            primitive: Utf8
        nullable: false

Configuration

No configuration required. The connector writes all records to stdout in the specified schema format.

Use Cases

  • Debugging: View pipeline output in real-time
  • Development: Test transformations without external dependencies
  • Logging: Capture output to container logs

Notes

  • This is a sink-only connector
  • No connection profile needed
  • Output format is determined by the schema's format field (typically JSON)