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

推荐订阅源

量子位
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
P
Proofpoint News Feed
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
I
InfoQ
V
Visual Studio Blog
罗磊的独立博客
Engineering at Meta
Engineering at Meta
Vercel News
Vercel News
Jina AI
Jina AI
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
B
Blog
The Cloudflare Blog
小众软件
小众软件
雷峰网
雷峰网
V
V2EX
人人都是产品经理
人人都是产品经理
Stack Overflow Blog
Stack Overflow Blog

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
Apache Kafka End of Life: Kafka Versions EOL Every 4 Mont...
endoflife-ai · 2026-05-30 · via DEV Community

Apache Kafka's release cadence is fast. A new minor version ships roughly every four months. EOL dates arrive quickly — and because Kafka sits at the heart of data pipelines, teams are slower to upgrade than they are with application-layer software.

The result: a lot of production Kafka clusters running EOL versions handling compliance-critical data.

Kafka 3.6 reached end of life in April 2026. If you're on 3.5 or earlier, you're already past EOL.


Complete Kafka EOL Schedule

Version End of Life Status
Kafka 2.8 Oct 2023 ❌ EOL
Kafka 3.0 Feb 2024 ❌ EOL
Kafka 3.1 Jul 2024 ❌ EOL
Kafka 3.2 Oct 2024 ❌ EOL
Kafka 3.3 Feb 2025 ❌ EOL
Kafka 3.4 Sep 2025 ❌ EOL
Kafka 3.5 Dec 2025 ❌ EOL
Kafka 3.6 Apr 2026 ❌ EOL
Kafka 3.7 Sep 2026 ✅ Supported
Kafka 3.8 Mar 2027 ✅ Supported
Kafka 4.0 TBD ✅ Latest

The community maintains the two most recent minor versions. Everything else receives no further security patches or bug fixes.

EOL Risk Score for Kafka 2.8: 84 Critical
View → endoflife.ai/score/apache-kafka/2.8


Why Kafka EOL Risk Is Different

Kafka isn't stateless. It stores your data.

An EOL web framework is a security risk. An EOL Kafka cluster is a security risk that also has custody of every message in your topics. CVEs affecting Kafka directly impact the confidentiality, integrity, and availability of your event streams.

Historically significant Kafka CVEs include:

  • Authentication bypass vulnerabilities
  • SCRAM authentication weaknesses
  • Denial-of-service issues in the broker's request handling

In regulated industries — financial services, healthcare, any organization handling PII — an EOL Kafka cluster processing that data creates direct compliance exposure.


The ZooKeeper Story: The Biggest Change in Kafka's History

Kafka 4.0, released March 2025, removed ZooKeeper support entirely.

The timeline:

  • Kafka 2.8 — KRaft mode introduced as early access
  • Kafka 3.3 — KRaft mode production-ready
  • Kafka 3.5–3.8 — ZooKeeper deprecated, migration tooling available
  • Kafka 4.0 — ZooKeeper removed, KRaft required

If your cluster still uses ZooKeeper for cluster metadata, you cannot upgrade to Kafka 4.0 without first migrating to KRaft. And ZooKeeper itself has its own EOL considerations: ZooKeeper 3.6 reached EOL March 2024.

How to migrate ZooKeeper → KRaft (without downtime)

Kafka 3.7 and 3.8 support a live migration path:

# 1. Generate a new KRaft cluster ID
kafka-storage.sh random-uuid

# 2. Start the migration using the built-in migration tool
kafka-metadata-migration.sh --bootstrap-server localhost:9092   --cluster-id <your-kraft-cluster-id>

The migration runs while the cluster continues serving traffic. Once complete, the ZooKeeper ensemble can be decommissioned.


Kafka Rolling Upgrade Guide

Kafka supports rolling upgrades — upgrade brokers one at a time while the cluster continues serving traffic.

Step 1 — Control the protocol version

During a rolling upgrade, pin inter.broker.protocol.version to the previous version:

inter.broker.protocol.version=3.7

Only bump this after all brokers are on the new version. This allows mixed-version brokers to communicate safely during the upgrade window.

Step 2 — Upgrade one broker at a time

# Graceful shutdown of one broker
kafka-server-stop.sh

# Install new version, update config, restart
kafka-server-start.sh config/server.properties

Wait for the broker to rejoin and partition leadership to rebalance before proceeding to the next broker.

Step 3 — Update the protocol version

After all brokers are upgraded:

inter.broker.protocol.version=3.8  # your new version

Rolling restart to apply.

Step 4 — Check client compatibility

The Kafka protocol is backward-compatible, but broker upgrades may surface client-side issues. Update producers and consumers as part of the upgrade project, not after.


Check Your Full Data Stack

Kafka doesn't run in isolation. Check EOL status for:

  • Java — Kafka 4.0 requires Java 11+, recommends Java 17 or 21
  • Your Linux distribution — Ubuntu, RHEL, Debian all have EOL dates
  • ZooKeeper — if you're still on it
  • Kafka Connect plugins — each has its own version lifecycle

Use the EOL Checker at endoflife.ai to look up any component's EOL status.


Full article with EOL Risk Scores for every Kafka version: endoflife.ai/article-kafka-eol