Skip to main content

Stream from Kafka

Step 1: Configure the Connector​

connector:
name: my-kafka
type: kafka
config:
bootstrap_servers: "kafka:9092"
topic: user-events
`

## Step 2: Create a Streaming Pipeline

```yaml
pipeline: kafka-ingest
runtime:
mode: streaming
sources:
- name: events
connector: my-kafka
`

## See Also

- [Kafka Integration](/docs/integrations/streaming/kafka)
- [Streaming Tutorial](/docs/guides/tutorials/real-time-streaming)