skip to Main Content

Create a topic in docker apache/kafka

I'm following this guide https://kafka.apache.org/quickstart to run kafka locally using docker. On step 2 I run docker pull apache/kafka:3.7.0 docker run -p 9092:9092 apache/kafka:3.7.0 Then, on step 3, I login into the container using Docker Desktop and run bin/kafka-topics.sh --create…

VIEW QUESTION

How to configure kafka connect jdbc sink connector for postgresql with ssl postgres authentication?

I have a working jdbc sink connector configuration for postgres using username and password configuration: { "connector.class": "io.confluent.connect.jdbc.JdbcSinkConnector", "connection.url": "jdbc:postgresql://localhost:5432/postgres", "connection.user": "postgres-user", "connection.password": "postgres-pw", "topics.regex": "my-topic", "transforms": "unwrap", "transforms.unwrap.type": "io.debezium.transforms.ExtractNewRecordState", "transforms.unwrap.drop.tombstones": "false", "key.converter": "org.apache.kafka.connect.json.JsonConverter", "key.converter.schemas.enable": "false", "value.converter": "org.apache.kafka.connect.json.JsonConverter", "value.converter.schemas.enable": "false",…

VIEW QUESTION
Back To Top
Search