Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Quick links: redhat.com, Customer Portal, Red Hat's developer site, Red Hat's partner site.

  • You are here

    Red Hat

    Learn about our open source products, services, and company.

  • You are here

    Red Hat Customer Portal

    Get product support and knowledge from the open source experts.

  • You are here

    Red Hat Developer

    Read developer tutorials and download Red Hat software for cloud application development.

  • You are here

    Red Hat Partner Connect

    Get training, subscriptions, certifications, and more for partners to build, sell, and support customer solutions.

Products & tools

  • Ansible.com

    Learn about and try our IT automation product.
  • Red Hat Ecosystem Catalog

    Find hardware, software, and cloud providers―and download container images―certified to perform with Red Hat technologies.

Try, buy, & sell

  • Red Hat Hybrid Cloud Console

    Access technical how-tos, tutorials, and learning paths focused on Red Hat’s hybrid cloud managed services.
  • Red Hat Store

    Buy select Red Hat products and services online.
  • Red Hat Marketplace

    Try, buy, sell, and manage certified enterprise software for container-based environments.

Events

  • Red Hat Summit and AnsibleFest

    Register for and learn about our annual open source IT industry event.

Kafka Monthly Digest: September 2021

October 18, 2021
Mickael Maison
Related topics:
Event-DrivenKafkaKubernetesOpen source
Related products:
AMQ BrokerAMQ ClientsStreams for Apache Kafka

Share:

Share on twitter Share on facebook Share on linkedin Share with email
  • Releases
  • Kafka Improvement Proposals
  • Community releases
  • Blogs

Welcome to the 44th edition of the Kafka Monthly Digest. In this edition, I'll cover what happened in the Apache Kafka community in September 2021.

For last month’s digest, see Kafka Monthly Digest: August 2021 on IBM Developer.

Releases

Releases

Two new Kafka versions (3.0.0 and 2.8.1) were released last month, and work on the next minor release (3.1.0) has also started.

Apache Kafka 3.0

Konstantine Karantasis released version 3.0 on September 21 and published an announcement on the Apache blog. As always, you can find the full list of changes in the release notes or the release plan on the wiki.

Kafka 3.0 is a major milestone in the removal of ZooKeeper (KIP-500). However, like in 2.8, running Kafka without ZooKeeper is still not ready for production.

This new major version deprecates Java 8 and Scala 2.12. Support for these will be removed in the next major release, 4.0.

Kafka 3.0 brings a number of interesting features, which I'll highlight in the next sections.

Brokers and clients

Updates to the Kafka broker and clients include the following:

  • There has been lots of progress on the removal of ZooKeeper (KIP-630, KIP-730, KIP-746).
  • Old message formats (version 0 and 1) are now deprecated. These versions are used by clients prior to Kafka 0.11 (KIP-724).
  • The producer now uses acks=all and enable.idempotence=true by default (KIP-679).
  • KafkaFuture can now be converted to CompletionStage for better compatibility with third-party libraries (KIP-707).

Connect

Updates to Kafka Connect include the following:

  • MirrorMaker version 1 is now deprecated; users should migrate to the new MirrorMaker (KIP-720).
  • Connector client overrides are now enabled by default (KIP-722).
  • New API to restart connectors and tasks (KIP-745).

Streams

Updates to Kafka Streams include the following:

  • Improved timestamp synchronization to ensure records are processed in timestamp increasing order even when consuming multiple partitions (KIP-695).
  • API improvements for tracking task metadata and states (KIP-740, KIP-744).
  • Several configuration cleanups such as replication.factor now set to -1 (KIP-733), the default SerDes set to null (KIP-741).
  • Several deprecations such as exactly_once and exactly_once_beta in favor of exactly_once_v2 (KIP-732) and the default 24-hour grace period for windows (KIP-633).

Kafka 2.8.1

David Jacot released Kafka 2.8.1 on September 20. This bugfix version addresses 49 Jira issues including a number of blockers. For more details, see the release notes or the release plan.

Kafka 3.1.0

On September 16, David Jacot volunteered to run this minor release. The current target release date is in December. The release plan is available on the wiki.

Kafka Improvement Proposals

Kafka Improvement Proposals

Last month, the community submitted eight Kafka Improvement Proposals (KIPs) (KIP-771 to KIP-778). These are the ones that caught my eye:

  • KIP-772: Encrypt KRaft Metadata Secrets at Rest: Certain broker configurations are sensitive and need to be stored securely. When overriding broker configurations at runtime, these values are stored in ZooKeeper encrypted. This KIP's goal is to provide a similar mechanism when running in KRaft mode.

  • KIP-773: Differentiate consistently metric latency measured in millis and nanos: Kafka metrics tracking durations use the -ns or -ms infix/suffix to describe their unit. This KIP identified a few metrics (bufferpool-wait-time-total, io-waittime-total and iotime-total) that don't follow this naming convention, so it proposes to rename them.

  • KIP-777: Improved testability for Admin client: This KIP aims at making the Admin client more testable. Currently, this makes testing logic using Admin pretty verbose. This KIP proposes exposing constructors or factories for Result classes and providing a method to create a failed KafkaFuture.

Community releases

Community releases

In this section, I will cover releases of notable community projects. This includes only projects that are open source.

  • strimzi-kafka-operator 0.25.0: Strimzi is a Kubernetes Operator for running Kafka. This version uses Scala 2.13, contains improvements for SCRAM-SHA-512 users, and adds support for EnvVar Configuration Provider to simplify configuration.

  • Librdkafka 1.8.0. Librdkafka is a Kafka client in C/C++. This is a security release as it updates zlib, which had a few CVEs, to 1.2.11. It also contains several fixes around error handling and offset management.

Blogs

Blogs

Check out these interesting blog articles that were published last month:

  • A True Atomic Microservices Implementation with Debezium to Ensure Data Consistency
  • Kafka mesh filter in Envoy

To learn more about Kafka, visit Red Hat Developer's Apache Kafka topic page.

Last updated: February 13, 2024

Related Posts

  • Building resilient event-driven architectures with Apache Kafka

  • Introduction to Strimzi: Apache Kafka on Kubernetes (KubeCon Europe 2020)

  • Capture Oracle database events in Apache Kafka with Debezium

Recent Posts

  • How to set up NVIDIA NIM on Red Hat OpenShift AI

  • Leveraging Ansible Event-Driven Automation for Automatic CPU Scaling in OpenShift Virtualization

  • Python packaging for RHEL 9 & 10 using pyproject RPM macros

  • Kafka Monthly Digest: April 2025

  • How to scale smarter with OpenShift Serverless and Knative

Red Hat Developers logo LinkedIn YouTube Twitter Facebook

Products

  • Red Hat Enterprise Linux
  • Red Hat OpenShift
  • Red Hat Ansible Automation Platform

Build

  • Developer Sandbox
  • Developer Tools
  • Interactive Tutorials
  • API Catalog

Quicklinks

  • Learning Resources
  • E-books
  • Cheat Sheets
  • Blog
  • Events
  • Newsletter

Communicate

  • About us
  • Contact sales
  • Find a partner
  • Report a website issue
  • Site Status Dashboard
  • Report a security problem

RED HAT DEVELOPER

Build here. Go anywhere.

We serve the builders. The problem solvers who create careers with code.

Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

Sign me up

Red Hat legal and privacy links

  • About Red Hat
  • Jobs
  • Events
  • Locations
  • Contact Red Hat
  • Red Hat Blog
  • Inclusion at Red Hat
  • Cool Stuff Store
  • Red Hat Summit

Red Hat legal and privacy links

  • Privacy statement
  • Terms of use
  • All policies and guidelines
  • Digital accessibility

Report a website issue