mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-23 08:28:10 +00:00
Doc: Update Kafka troubleshooting section (#11067)
This commit is contained in:
parent
5152db488d
commit
c596ad2006
@ -6,8 +6,14 @@ source:
|
||||
type: Kafka
|
||||
bootstrapServers: localhost:9092
|
||||
schemaRegistryURL: http://localhost:8081
|
||||
consumerConfig: {}
|
||||
schemaRegistryConfig: {}
|
||||
consumerConfig:
|
||||
# example of consume config, for more info about accepted values visit:
|
||||
# https://github.com/confluentinc/librdkafka/blob/master/CONFIGURATION.md
|
||||
"ssl.truststore.password": "password"
|
||||
schemaRegistryConfig:
|
||||
# example of scema registry config, for more info about accepted values visit:
|
||||
# https://docs.confluent.io/5.5.1/clients/confluent-kafka-python/index.html#confluent_kafka.schema_registry.SchemaRegistryClient
|
||||
"basic.auth.user.info": "username:password"
|
||||
sourceConfig:
|
||||
config:
|
||||
type: MessagingMetadata
|
||||
|
@ -18,4 +18,19 @@ The image below shows what the configuration of a local Kafka server with a secu
|
||||
src="/images/openmetadata/connectors/kafka/kafka-config.png"
|
||||
alt="Configuration of a local Kafka server with a secured schema registry"
|
||||
caption="Configuration of a local Kafka server with a secured schema registry"
|
||||
/>
|
||||
/>
|
||||
|
||||
In case you are performing the ingestion through the CLI with a YAML file, the service connection config should look
|
||||
like this:
|
||||
|
||||
```yaml
|
||||
serviceConnection:
|
||||
config:
|
||||
type: Kafka
|
||||
bootstrapServers: localhost:9092
|
||||
schemaRegistryURL: http://localhost:8081
|
||||
consumerConfig:
|
||||
"ssl.truststore.password": "password"
|
||||
schemaRegistryConfig:
|
||||
"basic.auth.user.info": "username:password"
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user