mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-03 07:09:21 +00:00
12 lines
342 B
YAML
12 lines
342 B
YAML
# hello_world.yaml
|
|
name: "hello_world"
|
|
# 1. Event Source: Where to source event from.
|
|
source:
|
|
type: "kafka"
|
|
config:
|
|
connection:
|
|
bootstrap: ${KAFKA_BOOTSTRAP_SERVER:-localhost:9092}
|
|
schema_registry_url: ${SCHEMA_REGISTRY_URL:-http://localhost:8081}
|
|
# 2. Action: What action to take on events.
|
|
action:
|
|
type: "hello_world" |