Change log
Release notes for Lenses K2K (Kafka-to-Kafka replicator).
Fixed
Improvements
0.3.0
Migration
v0.2.0
v0.3.0
Change
name: "simple_pipeline"
source:
kafka:
common:
"bootstrap.servers": "localhost:9092"
"sasl.mechanism": "PLAIN"
"sasl.jaas.config": "org.apache.kafka.common.security.plain.PlainLoginModule required username=userName password=pwd;"
"ssl.truststore.type": "JKS"
"ssl.truststore.location": "/etc/some/path"
"ssl.truststore.password": "some-password"
"security.protocol": "SASL_SSL"
consumer:
"group.id": "my-group"
registry:
config:
"schema.registry.url": "${env:raw:REGISTRY_URL}"
"schema.registry.ssl.truststore.type": "JSK"
"schema.registry.ssl.truststore.location": "/some/other/path"
"schema.registry.ssl.truststore.password": "some-sr-password"
target:
kafka:
common:
"bootstrap.servers": "localhost:9099"
"sasl.mechanism": "PLAIN"
"sasl.jaas.config": "org.apache.kafka.common.security.plain.PlainLoginModule required username=userName password=pwd;"
"ssl.truststore.type": "JKS"
"ssl.truststore.location": "/etc/some/path"
"ssl.truststore.password": "some-password"
"security.protocol": "SASL_SSL"
registry:
config:
"schema.registry.url": "localhost:8081"
"schema.registry.ssl.truststore.type": "JSK"
"schema.registry.ssl.truststore.location": "/some/other/path"
"schema.registry.ssl.truststore.password": "some-sr-password"
replication:
- source:
name: source
topic: topic.*
- sink:
topic: source
name: sink-source-topic
partition: sourceLast updated
Was this helpful?

