Get support for sagikazarmark/kcconf
If you're new to LTH, please see our FAQ for more information on what it is we do.
Support Options
Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:
View Open IssuesTake a look to see if anyone else has experienced the same issue as you and if they managed to solve it.
Open an IssueMake sure to read any relevant guidelines for opening issues on this repo before posting a new issue.
Sponsor directlyCheck out the page and see if there are any options to sponsor this project or it's developers directly.
sagikazarmark/kcconf
kcconf
Kafka Connect configurator tool.
Usage
This tool allows configuring Kafka Connect when running in distributed mode (which is the default mode of operation when running basically any of the containerized versions).
It allows configuring a list of connectors and keeping those configurations up-to-date.
Create a YAML file with a list of connectors:
- name: mock
config:
connector.class: org.apache.kafka.connect.tools.MockSinkConnector
key.converter: "org.apache.kafka.connect.storage.StringConverter"
value.converter: "org.apache.kafka.connect.json.JsonConverter"
value.converter.schemas.enable: "false"
schemas.enable: "false"
topics.regex: "^om_[A-Za-z0-9]+(?:_[A-Za-z0-9]+)*_events$"
errors.tolerance: "all"
errors.retry.timeout: "30"
Run kcconf
:
kcconf --kafka-connect-url http://127.0.0.1:8080 --connectors-file connectors.yaml
Pro tip: You can run kcconf
in a Docker Compose setup:
version: "3.9"
services:
# ...
kcconf:
image: ghcr.io/sagikazarmark/kcconf
depends_on:
# This is technically not necessary, because kcconf will retry connecting to Kafka Connect,
# but if you have a health check it doesn't hurt either.
kafka-connect:
condition: service_healthy
environment:
KAFKA_CONNECT_URL: http://kafka-connect:8080
volumes:
- $PWD/connectors.yaml:/etc/kcconf/connectors.yaml
Development
For an optimal developer experience, it is recommended to install Nix and direnv.
TODO
License
The project is licensed under the MIT License.
Our Mission
We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.
From the Blog
Interesting Articles
-
Generating income from open source
Jun 23 • 8 min read
-
2023 State of OSS
Apr 23 • 45 min read ★
-
A funding experiment...
Aug 19 • 10 min read
-
But You Said I could
Aug 19 • 2 min read
Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated
p-e622a1a2