Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Kafka Monthly Digest: May 2026

June 2, 2026
Mickael Maison
Related topics:
Kafka
Related products:
Streams for Apache Kafka
    This 100th edition of the Kafka Monthly Digest covers what happened in the Apache Kafka community in May 2026.
     
    For last month’s digest, see Kafka Monthly Digest: April 2026.
     
    It's hard to believe this series has been going for 100 editions. Since the first edition the overall format has not changed very much. I just added the community releases section in early 2020. In the first edition (no longer available online) we looked at the Kafka 1.0.1 release as well as KIP-247 to KIP-264!
     

    Releases

    There are two new releases, 4.3.0 and 4.2.1:
     

    4.3.0
     

    The vote on 4.3.0 RC2 passed on May 20 and I released Kafka 4.3.0 on May 23. You can find the announcement on the Apache Kafka blog. You can also check the release notes and the release plan in the wiki.
     
    With 25 KIPs implemented this release brings several major new features and many improvements across all components.
     

    Kafka brokers and clients

    Updates to the Kafka broker and clients include the following:
     
    • New configuration to bootstrap new followers from the last tiered offsets instead of log start offsets. (KIP-1023)
    • New mechanism to cordon log dirs and broker to help scaling and decommissioning. (KIP-1066)
    • New configurations to control the delivery limit and record count locks of share groups. (KIP-1240)
    • New metrics exposing the usage percentage of the retention limits per topic partition. (KIP-1257)
    • Support for OAuth client assertion with the client_credentials grant type. (KIP-1258)
    • Various group coordinator improvements. (KIP-1196, KIP-1251 and KIP-1263)
       

    Kafka Connect

    Updates to Kafka Connect include the following:
     
    • Batch translation of consumer group offsets via the new RemoteClusterUtils.translateOffsets() method. (KIP-1239)
    • New configuration to make MirrorMaker emit metrics in the new format. Note: From Kafka 5.0, metrics will only be emitted in the new format. (KIP-1280)

     

    Kafka Streams

    Updates to Kafka Streams include the following:
     
    • Allow handling of GlobalKTable exceptions in ProcessingExceptionHandler. (KIP-1270) 
    • Support for headers in state stores. (KIP-1271 and KIP-1285)

     

    4.2.1

    After 5 release candidates, PoAn Yang released 4.2.1 on June 2. This bug fix release fixes 26 issues. You can find the announcement on the blog and the release plan in the wiki.
     

    Kafka Improvement Proposals

    Last month, the community submitted 21 KIPs (KIP-1333 to KIP-1355, KIP-1353 and 1354 were skipped). I'll highlight a few of them:
     
    • KIP-1333: Support log segments larger than 2 GB: Today, the log segment size is stored in Kafka as an int so log segments are limited to ~2GB in size. In very high throughput or long retention scenarios this limit can be problematic. This KIP proposes removing that limit allowing sizes up to Long.MAX_VALUE.
       
    • KIP-1338: Structured MDC Context for Kafka Logging: This KIP proposes including Mapped Diagnostic Context (MDC) data into the logs emitted by all the Kafka components. This would make it easier for log analysis tools to parse and process Kafka logs. 
       
    • KIP-1347: Overriding voter set on storage formatting: In dynamic KRaft quorum mode, the hostnames of the voters are persisted in the metadata log and this is what controllers use at startup to discover the current voters. One limitation is that if all DNS names change at the same time, for example this can happen in Kubernetes environments when renaming a DNS domain, then controllers can't bootstrap any longer as all the hostnames in the metadata log are now invalid. This KIP aims at resolving this issue by providing a tool to update the voters in the metadata log. 
       
    • KIP-1352: Ranges and Range Aggregations in the Kafka Streams DSL: This KIP proposes adding event-centric aggregations, instead of usual time-centric, by basing them on record count and time (before and after an anchor) to the Streams DSL API.

     

    Community Releases

    I selected releases of some open source community projects:
     
    • kroxylicious 0.21.0: Kroxylicious is an open source pluggable framework for writing network proxies that understand the Apache Kafka protocol. The new release adds support for automatic sidecar injection to transparently proxy traffic from applications. It also adds support for HAProxy PROXY Protocol and brings improvements to schema validation and AWS KMS support.
       
    • Sarama 1.50: Sarama is a pure Golang Kafka client. This release brings a partitioner that is compatible with the Java client. It also updates the protocol version supported for group and offset fetch APIs.

     

    Blogs

    I selected some interesting blog articles that were published last month:
     
    • A proof of concept for Routing
    • Kafka’s Real Compression Problem Is Batch Depth
    • Introducing Dimster, a performance benchmarking tool for Apache Kafka

     


    To learn more about Kafka, visit Red Hat Developer's Apache Kafka topic page.
        
    Disclaimer: Please note the content in this blog post has not been thoroughly reviewed by the Red Hat Developer editorial team. Any opinions expressed in this post are the author's own and do not necessarily reflect the policies or positions of Red Hat.

    Recent Posts

    • Kafka Monthly Digest: May 2026

    • UBI 9 and 10 builders on Paketo Buildpacks with multi-arch support

    • Deploy Hermes Agent on OpenShift AI with vLLM model serving

    • Evaluation-driven development with EvalHub

    • Improve vLLM Semantic Router accuracy with fine-tuning

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

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

    Red Hat legal and privacy links

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

    Chat Support

    Please log in with your Red Hat account to access chat support.