OpenMetadata/ingestion/examples/workflows/confluent_kafka.json

26 lines
516 B
JSON
Raw Normal View History

{
"source": {
"type": "kafka",
"config": {
"service_name": "local_kafka",
"bootstrap_servers": "192.168.1.32:9092",
"schema_registry_url": "http://192.168.1.32:8081",
"filter_pattern": {
"excludes": ["_confluent.*"]
}
}
},
2021-08-21 17:52:24 -07:00
"sink": {
"type": "metadata-rest",
2021-08-21 17:52:24 -07:00
"config": {
}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "no-auth"
}
}
}