<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Kafka Connect on Joel Hanson</title>
    <link>https://joel-hanson.github.io/series/kafka-connect/</link>
    <description>Recent content in Kafka Connect on Joel Hanson</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <managingEditor>joelhanson025@gmail.com (Joel Hanson)</managingEditor>
    <webMaster>joelhanson025@gmail.com (Joel Hanson)</webMaster>
    <copyright>&amp;copy; Joel Hanson</copyright>
    <lastBuildDate>Wed, 27 Aug 2025 21:15:47 +0530</lastBuildDate><atom:link href="https://joel-hanson.github.io/series/kafka-connect/index.xml" rel="self" type="application/rss+xml" />
    
    <item>
      <title>Configuring Kafka Connector with Docker: A Step-by-Step Guide</title>
      <link>https://joel-hanson.github.io/posts/09-kafka-connector-docker-setup/</link>
      <pubDate>Sat, 12 Oct 2024 12:17:49 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/09-kafka-connector-docker-setup/</guid>
      <description>&lt;p&gt;In this tutorial, we&amp;rsquo;ll walk through the process of setting up a Kafka connector using Docker and docker-compose.yml. We&amp;rsquo;ll focus on configuring a file connector, which is useful for reading data from files and writing data to files using Kafka.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Setting Up a Kafka Cluster Without Zookeeper Using Docker</title>
      <link>https://joel-hanson.github.io/posts/08-setting-up-a-kafka-cluster-without-zookeeper-using-docker/</link>
      <pubDate>Sat, 05 Oct 2024 23:14:04 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/08-setting-up-a-kafka-cluster-without-zookeeper-using-docker/</guid>
      <description>&lt;h3 class=&#34;relative group&#34;&gt;Introduction&#xA;    &lt;div id=&#34;introduction&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#introduction&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h3&gt;&#xA;&lt;p&gt;In this post, we will walk through the process of setting up an Apache Kafka cluster &lt;strong&gt;without using Zookeeper&lt;/strong&gt;, leveraging Kafka&amp;rsquo;s &lt;strong&gt;KRaft mode&lt;/strong&gt; for metadata management. Kafka no longer requires a Zookeeper instance, simplifying the cluster setup. We will use &lt;strong&gt;Docker&lt;/strong&gt; to deploy this Kafka cluster with the latest version of Kafka.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>SSE Kafka Connector: Stream Real-time Events into Kafka</title>
      <link>https://joel-hanson.github.io/posts/21-sse-kafka-connector/</link>
      <pubDate>Wed, 27 Aug 2025 21:15:47 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/21-sse-kafka-connector/</guid>
      <description>&lt;h2 class=&#34;relative group&#34;&gt;The Problem: Getting Real-time Data into Kafka&#xA;    &lt;div id=&#34;the-problem-getting-real-time-data-into-kafka&#34; class=&#34;anchor&#34;&gt;&lt;/div&gt;&#xA;    &#xA;    &lt;span&#xA;        class=&#34;absolute top-0 w-6 transition-opacity opacity-0 -start-6 not-prose group-hover:opacity-100 select-none&#34;&gt;&#xA;        &lt;a class=&#34;text-primary-300 dark:text-neutral-700 !no-underline&#34; href=&#34;#the-problem-getting-real-time-data-into-kafka&#34; aria-label=&#34;Anchor&#34;&gt;#&lt;/a&gt;&#xA;    &lt;/span&gt;&#xA;    &#xA;&lt;/h2&gt;&#xA;&lt;p&gt;Have you ever tried to stream Wikipedia changes or other real-time Server-Sent Events (SSE) updates into Kafka? If you have, you probably wrote custom Kafka producer and consumer code to handle these events, managed reconnections, and built your own error handling.&lt;/p&gt;</description>
      
    </item>
    
    <item>
      <title>Mastering Integration Testing for Kafka Connectors: A Complete Guide</title>
      <link>https://joel-hanson.github.io/posts/mastering-integration-testing-for-kafka-connectors-a-complete-guide/</link>
      <pubDate>Sun, 13 Jul 2025 21:40:00 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/mastering-integration-testing-for-kafka-connectors-a-complete-guide/</guid>
      <description>Integration testing is crucial for Kafka Connectors to ensure they work correctly with external systems. This guide provides a comprehensive approach to setting up and executing integration tests for Kafka Connectors, covering everything from environment setup to best practices for testing source and sink connectors.</description>
      
    </item>
    
    <item>
      <title>Creating Tombstone Records Using kafka-console-producer.sh: A Quick Guide</title>
      <link>https://joel-hanson.github.io/posts/14-creating-tombstone-records-using-kafka-console-producer-sh-a-quick-guide/</link>
      <pubDate>Tue, 22 Apr 2025 16:03:27 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/14-creating-tombstone-records-using-kafka-console-producer-sh-a-quick-guide/</guid>
      <description>A practical guide to creating tombstone records for Kafka compacted topics using the kafka-console-producer.sh command-line tool with the null marker feature</description>
      
    </item>
    
    <item>
      <title>Build Custom Kafka Connectors Fast with This Open-Source Template</title>
      <link>https://joel-hanson.github.io/posts/13-build-custom-kafka-connectors-fast-with-this-open-source-template/</link>
      <pubDate>Mon, 14 Apr 2025 16:19:42 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/13-build-custom-kafka-connectors-fast-with-this-open-source-template/</guid>
      <description>Apache Kafka is a powerful distributed event streaming platform, and &lt;strong&gt;Kafka Connect&lt;/strong&gt; makes it easy to integrate Kafka with external systems. While many pre-built connectors exist, real-world applications often need &lt;strong&gt;custom connectors&lt;/strong&gt; tailored for proprietary systems, custom logic, or advanced error handling.&#xA;That’s where this &lt;strong&gt;production-ready template&lt;/strong&gt; comes in—it removes the boilerplate and gives you everything you need to build, test, and deploy connectors with ease.</description>
      
    </item>
    
    <item>
      <title>Filtering Tombstone Records in Kafka Connect</title>
      <link>https://joel-hanson.github.io/posts/12-filtering-tombstone-records-in-kafka-connect/</link>
      <pubDate>Tue, 11 Mar 2025 12:19:08 +0530</pubDate>
      <author>joelhanson025@gmail.com (Joel Hanson)</author>
      <guid>https://joel-hanson.github.io/posts/12-filtering-tombstone-records-in-kafka-connect/</guid>
      <description>&lt;p&gt;Kafka Connect provides a flexible way to process streaming data using Single Message Transforms (SMTs). If you need to filter out tombstone records (records with &lt;code&gt;null&lt;/code&gt; values), you should use the generic &lt;strong&gt;Filter&lt;/strong&gt; transformation along with the &lt;strong&gt;RecordIsTombstone&lt;/strong&gt; predicate.&lt;/p&gt;</description>
      
    </item>
    
  </channel>
</rss>
