惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
J
Java Code Geeks
Martin Fowler
Martin Fowler
博客园 - Franky
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
Blog — PlanetScale
Blog — PlanetScale
S
SegmentFault 最新的问题
B
Blog
The Cloudflare Blog
F
Fortinet All Blogs
量子位
腾讯CDC
博客园 - 司徒正美
D
Docker
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
V
Visual Studio Blog
IT之家
IT之家
Last Week in AI
Last Week in AI
D
DataBreaches.Net
小众软件
小众软件

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Kafka with Go Part 1 — Understanding Async Systems, Distr...
Bijaya Prasa · 2026-05-12 · via DEV Community

Introduction

Modern web applications are no longer just simple static websites. Years ago, many websites were mostly:

  • static pages
  • blogs
  • content websites
  • simple request-response applications

But modern software systems are very different. Today’s applications do things like:

  • video uploads
  • realtime notifications
  • analytics processing
  • AI inference
  • payment processing
  • image optimization
  • email delivery
  • realtime chat
  • activity tracking
  • stream processing

Modern backend systems are now closer to continuously running software systems rather than just: “serve HTML and return response.”
And this creates a very important architectural problem.


The Problem With Long Running Tasks

Suppose a user uploads a video. Your backend now needs to:

  • save the file
  • generate thumbnails
  • compress the video
  • notify followers
  • update analytics
  • scan for moderation

Some of these tasks may take:

  • several seconds
  • minutes
  • sometimes even longer

Now imagine if the user had to wait for ALL of this before receiving a response.

Client
   |
   v
Backend
   |
   +--> Compress Video
   +--> Generate Thumbnail
   +--> Send Notifications
   +--> Update Analytics
   |
   v
Response Returned

Enter fullscreen mode Exit fullscreen mode

This creates a terrible user experience.

The application becomes:

  • slow
  • blocked
  • harder to scale

Why Async Processing Exists

This is exactly why asynchronous systems exist.

Instead of making users wait:

Client -> Backend -> Everything Happens Here

Enter fullscreen mode Exit fullscreen mode

modern systems usually do this:

Client -> Backend -> Queue -> Worker

Enter fullscreen mode Exit fullscreen mode

The backend quickly stores a job into a queue.

Then background workers process the heavy tasks separately.

Now:

  • API becomes fast
  • users get immediate response
  • heavy processing happens in background

This is one of the most important concepts in backend engineering.


Real World Examples

This architecture exists almost everywhere.

Sending Emails

User Signup
    |
    v
Queue Email Job
    |
    v
Email Worker Sends Email

Enter fullscreen mode Exit fullscreen mode

Image Processing

User Uploads Image
    |
    v
Queue Resize Job
    |
    v
Image Worker Processes File

Enter fullscreen mode Exit fullscreen mode

Payment Notifications

Order Created
    |
    v
Queue Notification Job
    |
    v
Notification Worker

Enter fullscreen mode Exit fullscreen mode

What Is a Queue?

A queue is simply

A middle layer between producers and workers.

Instead of directly doing heavy work:

Backend -> Heavy Task

Enter fullscreen mode Exit fullscreen mode

we place the task into a queue:

Backend -> Queue -> Worker

Enter fullscreen mode Exit fullscreen mode

This gives us:

  • asynchronous processing
  • better performance
  • better scalability
  • loose coupling

Messaging Systems

To implement queues and async systems, we use messaging systems.

Technology Common Usage
Redis Pub/Sub Lightweight realtime messaging
RabbitMQ Traditional queues
Apache Kafka Distributed event streaming
NATS Lightweight distributed systems
Google Pub/Sub Managed cloud messaging

All of them solve similar problems differently.


Distributed Systems

As Systems Grow, Architecture Evolves. Initially, a single application may work perfectly fine.

This is called a:

Monolith architecture.

Monolith Architecture

+----------------------+
|      Monolith        |
|----------------------|
| Auth                 |
| Orders               |
| Payments             |
| Notifications        |
+----------------------+

Enter fullscreen mode Exit fullscreen mode

Everything lives inside one application. This is actually completely normal. Most successful applications start this way.

But as systems grow:

  • traffic increases
  • teams grow
  • deployments become difficult
  • scaling becomes harder
  • failures affect entire application

Eventually systems evolve into:

Microservices architecture.


Microservices

Instead of one giant application, each service becomes independent.

+---------+
| Auth    |
+---------+

+---------+
| Orders  |
+---------+

+------------+
| Payments   |
+------------+

+----------------+
| Notifications  |
+----------------+

Enter fullscreen mode Exit fullscreen mode

Benefits:

  • isolated deployments
  • independent scaling
  • smaller codebases
  • better team ownership

But now another important problem appears.


How Do Services Communicate?

Suppose:

  • Order service creates order
  • Payment service charges customer
  • Notification service sends email

How should they communicate?

Most beginners first think:

Order Service ---> HTTP ---> Payment Service

Enter fullscreen mode Exit fullscreen mode

This works initially.

But distributed systems become difficult quickly.


Problems With Direct HTTP Communication

Imagine:

Order Service ---> Payment Service

Enter fullscreen mode Exit fullscreen mode

What if:

  • payment service is down?
  • network becomes slow?
  • retries create duplicate requests?
  • traffic spikes suddenly?

Now systems become tightly coupled. One service failure can affect everything. And remember the problem we discussed earlier:

long-running tasks should not block users

That same problem exists here too.

Suppose:

  • sending email becomes slow
  • payment provider becomes delayed
  • analytics system becomes overloaded

Should users wait? Of course not.

So even microservices need:

  • asynchronous communication
  • buffering
  • scalable messaging systems

Event-Driven Communication

Instead of directly calling services, now Order service simply publishes an event:

Order Service ---> Message Broker ---> Payment Service

Enter fullscreen mode Exit fullscreen mode

order_created

Enter fullscreen mode Exit fullscreen mode

It does NOT care:

  • who consumes it
  • how many consumers exist
  • whether consumers are temporarily offline

This creates:

  • loose coupling
  • better scalability
  • better fault tolerance

This Is Where Kafka Comes In

Apache Kafka became extremely popular because it solves these problems at very large scale.

Kafka is heavily used in:

  • analytics systems
  • payment pipelines
  • notification systems
  • activity tracking
  • realtime monitoring
  • distributed systems
  • stream processing

Companies use Kafka because it handles:

  • huge traffic
  • distributed systems
  • realtime event streaming
  • scalable consumers
  • durable event storage

Kafka Is Not Just a Queue

This is important. Kafka can absolutely work like a queue. But Kafka is much more than that.

Kafka is fundamentally:

A distributed event streaming platform.

Meaning:

  • events can be stored
  • replayed later
  • consumed by multiple services
  • processed at massive scale

This becomes extremely powerful in modern architectures.


Kafka in One Simple Sentence

Kafka is basically:

Producer ---> Kafka ---> Consumer

Enter fullscreen mode Exit fullscreen mode

Producer sends events. Consumers receive events.

Kafka stores events safely in between.


Basic Kafka Architecture

+------------+
| Producer   |
+------------+
       |
       v
+----------------+
| Kafka Topic    |
+----------------+
       |
       v
+------------+
| Consumer   |
+------------+

Enter fullscreen mode Exit fullscreen mode


Important Kafka Terms

Term Meaning
Producer Sends messages
Consumer Reads messages
Topic Message category
Broker Kafka server
Event Actual data/message

So now we will implement a very simple

Which Go Package Are We Using?

We will use:

IBM/sarama

Enter fullscreen mode Exit fullscreen mode

Why?

Because:

  • beginner friendly
  • stable
  • widely used
  • pure Go
  • simple learning curve

Later in the series we may also explore:

  • franz-go
  • async producers
  • advanced performance tuning

But Sarama is perfect for learning fundamentals gradually.


Kafka Setup (Modern KRaft Mode)

Older Kafka versions required Zookeeper.

Modern Kafka supports:

KRaft mode

Enter fullscreen mode Exit fullscreen mode

which removes Zookeeper completely.

We will use the modern setup.


Install Kafka (Mac)

Using Homebrew:

brew install kafka

Enter fullscreen mode Exit fullscreen mode

Start Kafka:

kafka-server-start /opt/homebrew/etc/kafka/kraft/server.properties

Enter fullscreen mode Exit fullscreen mode


Install Kafka (Linux)

Install Java:

sudo apt update
sudo apt install default-jdk -y

Enter fullscreen mode Exit fullscreen mode

Download Kafka:

wget https://downloads.apache.org/kafka/3.9.1/kafka_2.13-3.9.1.tgz

Enter fullscreen mode Exit fullscreen mode

Extract:

tar -xzf kafka_2.13-3.9.1.tgz
cd kafka_2.13-3.9.1

Enter fullscreen mode Exit fullscreen mode

Start Kafka:

bin/kafka-server-start.sh config/kraft/server.properties

Enter fullscreen mode Exit fullscreen mode


Create Kafka Topic

Open another terminal:

kafka-topics \
  --create \
  --topic orders \
  --bootstrap-server localhost:9092

Enter fullscreen mode Exit fullscreen mode

Verify:

kafka-topics \
  --list \
  --bootstrap-server localhost:9092

Enter fullscreen mode Exit fullscreen mode

You should see:

orders

Enter fullscreen mode Exit fullscreen mode


Create Go Project

mkdir go-kafka-tutorial
cd go-kafka-tutorial

Enter fullscreen mode Exit fullscreen mode

Initialize Go module:

go mod init github.com/<your-github-username>/go-kafka-tutorial

Enter fullscreen mode Exit fullscreen mode

Install Sarama:

go get github.com/IBM/sarama@latest

Enter fullscreen mode Exit fullscreen mode


Project Structure

go-kafka-tutorial/
├── producer/
│   └── main.go
├── consumer/
│   └── main.go
├── go.mod
└── go.sum

Enter fullscreen mode Exit fullscreen mode


Writing Our First Producer

Create:

producer/main.go

Enter fullscreen mode Exit fullscreen mode

Code:

package main

import (
    "fmt"
    "log"

    "github.com/IBM/sarama"
)

func main() {
    config := sarama.NewConfig()

    config.Producer.Return.Successes = true

    producer, err := sarama.NewSyncProducer(
        []string{"localhost:9092"},
        config,
    )

    if err != nil {
        log.Fatal(err)
    }

    defer producer.Close()

    message := &sarama.ProducerMessage{
        Topic: "orders",
        Value: sarama.StringEncoder("new order created"),
    }

    partition, offset, err := producer.SendMessage(message)

    if err != nil {
        log.Fatal(err)
    }

    fmt.Printf(
        "message sent to partition %d at offset %d\n",
        partition,
        offset,
    )
}

Enter fullscreen mode Exit fullscreen mode


Writing Our First Consumer

Create:

consumer/main.go

Enter fullscreen mode Exit fullscreen mode

Code:

package main

import (
    "context"
    "fmt"
    "log"

    "github.com/IBM/sarama"
)

type Consumer struct{}

func (Consumer) Setup(sarama.ConsumerGroupSession) error {
    return nil
}

func (Consumer) Cleanup(sarama.ConsumerGroupSession) error {
    return nil
}

func (Consumer) ConsumeClaim(
    session sarama.ConsumerGroupSession,
    claim sarama.ConsumerGroupClaim,
) error {

    for message := range claim.Messages() {
        fmt.Printf(
            "received message: %s\n",
            string(message.Value),
        )

        session.MarkMessage(message, "")
    }

    return nil
}

func main() {
    config := sarama.NewConfig()

    group, err := sarama.NewConsumerGroup(
        []string{"localhost:9092"},
        "order-group",
        config,
    )

    if err != nil {
        log.Fatal(err)
    }

    defer group.Close()

    consumer := Consumer{}

    for {
        err := group.Consume(
            context.Background(),
            []string{"orders"},
            consumer,
        )

        if err != nil {
            log.Fatal(err)
        }
    }
}

Enter fullscreen mode Exit fullscreen mode


Running the Application

Start consumer first:

go run consumer/main.go

Enter fullscreen mode Exit fullscreen mode

Now in another terminal:

go run producer/main.go

Enter fullscreen mode Exit fullscreen mode

Consumer output:

received message: new order created

Enter fullscreen mode Exit fullscreen mode

You just built your first Kafka publisher/subscriber system using Go.

Conclusion

In this part we learned:

why async systems exist
long running task problems
queues and background workers
distributed systems basics
monolith vs microservices
service communication problems
messaging systems
Kafka fundamentals
creating producer and consumer using Go

Most importantly:

You now understand:

WHY Kafka exists.

That foundation matters much more than memorizing APIs.