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

Kafka Monthly Digest: October 2021

November 10, 2021
Mickael Maison
Related topics:
GoKafkaKubernetesOpen source
Related products:
Red Hat OpenShift

Share:

    This 45th edition of the Kafka Monthly Digest covers what happened in the Apache Kafka developer community in October 2021, including new milestones for Apache Kafka 3.1.0, notable Kafka Improvement Proposals (KIPs), community project releases for Debezium 1.7 and Strimzi 0.26.0, and more.

    For last month’s digest, see Kafka Monthly Digest: September 2021.

    Releases

    Three new Kafka versions (3.1.0, 2.7.2, and 2.6.3) are currently in progress.

    Apache Kafka 3.1.0

    The release process for Apache Kafka 3.1.0 continued in October 2021. The KIP freeze happened on October 15, and feature freeze happened on October 29. The next milestone will be the code freeze on November 12. The release plan is available on the Apache Kafka wiki.

    Kafka 2.7.2 and 2.6.3

    On October 8, I volunteered to run these two bugfix releases. The respective release plans for versions 2.7.2 and 2.6.3 are on the Apache Kafka wiki. Votes are currently ongoing on the first release candidates for both of these releases.

    Kafka Improvement Proposals

    Last month, the community submitted 10 KIPs (KIP-779 to KIP-788; note that two KIPs are currently numbered 786). I'll highlight the ones that caught my eye:

    • KIP-779: Allow source tasks to handle producer exceptions: Source connectors import data from other systems into Kafka. Currently, if a record can't be imported into Kafka—if it's too large, for example—the task that generated the record will fail. This KIP proposes a mechanism that will allow that task to decide whether to fail or ignore the error.

    • KIP-780: Support fine-grained compression options: Most modern compression algorithms expose configurations to tune them for diverse kinds of data. While Kafka supports four algorithms (gzip, LZ4, Snappy, and zstd), it does not allow you to tune them. This KIP proposes adding per-algorithm configurations to allow fine-tuning compression. Note that KIP-390, which introduced compression-level support, has not been merged yet.

    • KIP-782: Expandable batch size in producer: batch.size is a key producer setting; however, it's sometimes tricky to properly tune. This KIP proposes an algorithm to dynamically resize the producer batch size based on the load.

    • KIP-786: Use localhost:9092 as default bootstrap-server/broker-list in client tools: Currently, when using the Kafka command-line tools, you always have to provide the bootstrap servers you want to use. This KIP proposes defaulting --bootstrap-server to localhost:9092 when a value is not explicitly provided, which will make the tools easier to use in development environments.

    Community releases

    This section covers a few notable open source community project releases:

    • strimzi-kafka-operator 0.26.0: Strimzi is a Kubernetes Operator for running Kafka. Version 0.26 supports Kafka 3.0.0 and 2.8.1. It includes many Cruise Control improvements, such as an update to 2.5.73, along with support for authorization, authentication, and SSL. It also provides the option to build Kafka Connect images with plug-ins by specifying Maven URLs.

    • Debezium 1.7.0: Debezium is a change data capture platform. Debezium 1.7 introduces a new web UI to manage connectors, adds support for NATS in Debezium Server, and includes significant improvements to the incremental snapshotting capabilities that were introduced in the previous release.

    • Sarama 1.30.0: Sarama is a pure Golang Kafka client. This new release adds support for Kafka 3.0, as well, for deleting offsets and managing quotas. It also adds metrics for consumer groups operations and for throttling.

    Blogs

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

    • Bringing Kafka based architecture to the next level using simple PostgreSQL tables
    • Deploying Strimzi Kafka and Java clients with security, Part 1: Authentication
    • Kafka Streams 101

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

    Last updated: September 20, 2023

    Related Posts

    • Kafka Monthly Digest: September 2021

    • Kubernetes-native Apache Kafka with Strimzi, Debezium, and Apache Camel (Kafka Summit 2020)

    • Change data capture with Debezium: A simple how-to, Part 1

    • Capture database changes with Debezium Apache Kafka connectors

    Recent Posts

    • AI meets containers: My first step into Podman AI Lab

    • Live migrating VMs with OpenShift Virtualization

    • Storage considerations for OpenShift Virtualization

    • Upgrade from OpenShift Service Mesh 2.6 to 3.0 with Kiali

    • EE Builder with Ansible Automation Platform on OpenShift

    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
    © 2025 Red Hat

    Red Hat legal and privacy links

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

    Report a website issue