https://learn.microsoft.com/en-us/azure/devops/pipelines/library/secure-files?view=azure-devops
install
https://docs.confluent.io/platform/current/installation/installing_cp/deb-ubuntu.html (But only the first chapter)
https://docs.confluent.io/home/connect/self-managed/userguide.html#connect-installing-plugins
https://docs.confluent.io/kafka-connect-jdbc/current/
https://medium.com/clay-one/kafka-connect-cluster-an-introduction-26522e72a9af
Detailed Connection Schema https://www.confluent.io/blog/kafka-client-cannot-connect-to-broker-on-aws-on-docker-etc/
Topics and Partitions https://stackoverflow.com/questions/38024514/understanding-kafka-topics-and-partitions
https://www.confluent.io/hub/confluentinc/kafka-connect-http
https://www.confluent.io/hub/debezium/debezium-connector-sqlserver
https://www.confluent.io/hub/confluentinc/kafka-connect-jdbc
all are either build ,test and support by confluent or tested and supported by confluent
deep dive
Kafka Connect and schema registry
https://docs.confluent.io/platform/current/schema-registry/connect.html
== Protect Kafka Connect Rest API with authentification
https://www.active-directory-faq.de/2021/07/iis-als-reverse-proxy-einrichten/
https://techexpert.tips/de/nginx-de/nginx-ldap-authentifizierung-im-active-directory/
https://docs.confluent.io/platform/current/connect/logging.html
https://www.confluent.io/de-de/blog/kafka-connect-deep-dive-error-handling-dead-letter-queues/
Good Error message from Kafka-Connect:
WARN [Worker clientId=rklein-kafka-connect-worker-1, groupId=rklein-kafka-connect] Catching up to assignment's config offset. (org.apache.kafka.connect.runtime.distributed.DistributedHerder)
Worker configurations
https://docs.confluent.io/platform/current/connect/references/allconfigs.html
Connector Configurations
https://docs.confluent.io/platform/current/connect/references/connector-configs.html
The Apache Kafka® Admin client library https://docs.confluent.io/platform/current/installation/configuration/admin-configs.html
REST API https://docs.confluent.io/platform/current/connect/references/restapi.html
create role kafkacdc AUTHORIZATION db_datareader GO create login kafkaconnect with password=*** GO create user kafkaconnect for login kafkaconnect GO alter role kafkacdc add member kafkaconnect GO EXEC sys.sp_cdc_enable_db GO EXEC sys.sp_cdc_enable_table @source_schema = N'dbo', @source_name = N'Products', @role_name = N'kafkacdc', @filegroup_name = N'PRIMARY', @supports_net_changes = 0 GO
https://github.com/confluentinc/ksql/issues/6435
https://docs.ksqldb.io/en/latest/developer-guide/ksqldb-reference/create-stream/
https://docs.confluent.io/platform/current/installation/configuration/index.html
Licence topics
https://gist.github.com/rmoff/49526672990f1b4f7935b62609f6f567
#!/usr/bin/env bash
JULIE_OPS_HOME=/usr/local/julie-ops JULIE_OPS_JAR=$JULIE_OPS_HOME/bin/julie-ops.jar JAVA_PATH=java
if [ -z “$JULIE_OPS_OPTIONS” ]; then
JULIE_OPS_OPTIONS=""
fi
$JAVA_PATH $JULIE_OPS_OPTIONS -jar $JULIE_OPS_JAR “$@”