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: November 2023

November 29, 2023
Mickael Maison

Share:

    This 70th edition of the Kafka Monthly Digest covers what happened in the Apache Kafka community in November 2023.

    For last month’s digest, see Kafka Monthly Digest: October 2023.

    Releases

    There are 3 releases in progress, 3.7.0, 3.6.1 and 3.5.2:

    3.7.0

    The release process for Kafka 3.7.0 continued and KIP freeze happened on November 22. The next milestone is feature freeze on December 6. The release date is still targeted for January 2023. You can find the release plan in the wiki.

    3.6.1

    On November 13, I volunteered to run the 3.6.1 bugfix release. This updates the ZooKeeper and Netty dependencies to address CVEs and also contains over 20 fixes. I published RC0 on November 24, the vote is currently ongoing. For more details, check the release plan on the wiki.

    3.5.2

    Luke Chen volunteered to run the 3.5.2 bugfix release. In addition of updating a few dependencies to address CVEs this will also contain a few fixes. The first release candidate was published on November 21, the vote is currently ongoing. You can find the release plan on the wiki.

    Kafka Improvement Proposals

    Last month, the community submitted 13 KIPs (KIP-997 to KIP-1009). Crossing the 1000 KIP mark is a significant milestone. Since KIP-1 in January 2015, that's almost 10 KIPs per month on average for 9 years! I'll highlight a few of the KIPs created in November:

    • KIP-1004: Enforce tasks.max property in Kafka Connect: The tasks.max configuration allows users to specify the maximum number of tasks they want to run for a connector. However Connect does not currently force connectors to respect this value. While pretty much all connectors follow this rule (and it's usually a bug when they don't), this KIP proposes adding a new configuration, tasks.max.enforce which when set to true will fail connectors creating more tasks than tasks.max.
    • KIP-1008: ParKa - the Marriage of Parquet and Kafka: Kafka stores data on disk in its own binary format. Producers and consumers use the exact same format and this enables brokers to handle data very efficiently. This KIP proposes using Apache Parquet as the storage format. The motivation is that Parquet is a column-oriented data file format so it could provide better a compression ratio and Parquet's built-in column encryption could be used to provide field-level encryption.

    There are also quite a few KIPs about Tiered Storage including:

    • KIP-1002: Fetch remote segment indexes at once: This KIP's goal is to improve the RemoteStorageManager API to allow a more efficient handling of indexes. As these files tend to be small being able to upload/retrieve them at once would improve latencies in many scenarios.
    • KIP-1003: Signal next segment when remote fetching: When consumers want to read data that has been moved to remote storage, log segments first have to be retrieved by brokers. This KIP aims at making it easier for RemoteStorageManager implementations to determine the next segments to load and allow prefetching them to improve latency.

    Community Releases

    • Sarama 1.42: Sarama is a pure Golang Kafka client. There are no new major features but this release fixes a number of bugs across all clients.
    • Jikkou 0.32: Jikkou is a tool to deploy and manage Kafka clusters and resources like topics, quotas and consumer groups. This new release adds support for restarting connectors and deleting consumer group offsets.
    • spring-kafka 3.1.0: This version improves the handling of unprocessable records and also fixes a handful of bugs.

    Blogs

    I selected some interesting blog articles that were published last month:

    • Defense Against the Dark Art of Rebalancing in Kafka Streams
    • Developing Kafka client applications: A simple consumer
    • A Deep Dive Into Sending With librdkafka
    • Creating a data warehouse with Apache Doris, Kafka, and Debezium

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

     

    Last updated: December 1, 2023
    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

    • Unleashing multimodal magic with RamaLama

    • Integrate Red Hat AI Inference Server & LangChain in agentic workflows

    • Streamline multi-cloud operations with Ansible and ServiceNow

    • Automate dynamic application security testing with RapiDAST

    • Assessing AI for OpenShift operations: Advanced configurations

    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