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: falseConfiguration
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
formatfield (typically JSON)