Doc: Update Kafka troubleshooting section (#11067)

This commit is contained in:
Nahuel 2023-04-14 13:35:58 +02:00 committed by GitHub
parent 5152db488d
commit c596ad2006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 3 deletions

View File

@ -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

View File

@ -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"
```