Back
July 25, 2024
4
min read

Checkpoint Chronicle - July 2024

By
Gunnar Morling
Share this post

Welcome to the Checkpoint Chronicle, a monthly roundup of interesting stuff in the data and streaming space. Your hosts and esteemed curators of said content are Gunnar Morling (your editor-in-chief for this edition) and Robin Moffatt. Feel free to send our way any choice nuggets that you think we should feature in future editions.

Stream Processing, Streaming SQL, and Streaming Databases

  • Automate Delivering Apache Flink Applications. When it comes to deploying stream processing jobs to production, fully automated pipelines are key to ensure fast delivery, robustness, auditability, and more. Rashid Aljohani describes a GitOps approach for deploying Flink jobs onto OpenShift clusters, using ArgoCD for continuous delivery and the Flink Kubernetes operator.
  • So You Want to Write a Stream Processor? Beware of the Duck Syndrome. It can be a tempting task to implement a stream processing engine from scratch. But as so often, the devil is in the details (Correctness! Scalability!! Observability!!!), and Almog Gavra of Responsive makes the case why you should trust established engines such as Kafka Streams.
  • Mastering Stream Processing: A Guide to Windowing in Kafka Streams and Flink SQL. Bill Bejeck, author of the popular Kafka Streams in Action book, compares windowing in Kafka Streams and Flink SQL, diving into the support of polymorphic table-valued functions (as standardised in SQL 2016) provided by the latter.
  • Aggregating Real-time Sensor Data with Python and Redpanda. With its strong footprint in the data engineering space, it’s not a surprise that Python also is becoming more and more popular as a tool for stream processing. In this in-depth post, Tomáš Neubauer of Quix shows how to build a Python application for aggregating sensor data from scratch.
  • In-Memory Analytics for Kafka using DuckDB. Ingesting data from Kafka into DuckDB for querying it? Not a problem with kwack, a tool built for this very purpose by Robert Yokota, among other things making it easy to export data from Kafka into Parquet files.

Event Streaming

  • How Canva collects 25 billion events per day. I don’t hear  much about Kinesis Data Streams these days, Amazon’s fully managed data stream service. But it’s very much alive, as demonstrated by this post by Canva’s Long Nguyen. They decided to use KDS over Amazon’s managed Kafka service (MSK), because it was significantly cheaper, while being only marginally slower. Great write-up sourced from practical experience.
  • Streaming Data Platform at Exness: Flink SQL and PyFlink. Part of an entire series of blog posts on the Streaming Data Platform at Exness, this post by Aleksei Perminov describes how they run SQL jobs using the Flink Kubernetes operator, including support for UDFs and statement sets, as well as their approach for running PyFlink jobs.
  • Sending Data to Apache Iceberg from Apache Kafka with Apache Flink. Apache Iceberg is all the rage these days, and it’s definitely one of Robin’s favourite technologies. No wonder that he continues his exploration of this open table format, after discussing ingestion into Iceberg from Decodable a few weeks ago.
  • How to avoid rebalances and disconnections in Kafka consumers. Frequent rebalancing can be disruptive to Kafka consumers; in this post, Red Hat’s Abel Luque and Hugo Melendez Imaz describe strategies for avoiding this, such as asynchronous processing and the pause/resume pattern.

Data Ecosystem

  • Encryption at rest for Apache Kafka. Kroxylicious, a wire protocol proxy for Apache Kafka, was the last project I helped get off the ground during my time at Red Hat. Besides multi-tenancy, policy enforcement, auditing, and schema validation, encryption is a key proxy use case. Red Hat’s Tom Bentley and Chris Giblin, and Sean Rooney of IBM discuss how Kroxylicious provides secure encryption and what’s next for the project. Also check out this Kroxylicious recording from Kafka Summit Bengaluru.
  • BigQuery Table Partitioning—A Comprehensive Guide. Partitioning is a proven strategy for ensuring high performance when handling large data sets, allowing query engines to prune large chunks of data during query execution depending on the given WHERE clause. Matt Dixon explains how to make use of this technique with Google BigQuery.
  • Breaking the bank: the most expensive mistakes in data pipelines. Entertaining post about dos and don’ts when building data pipelines.
  • Unlocking the power of unstructured data with RAG. Nice introduction to gaining insight from unstructured data in the context of software development, such as source code, README files, commit messages, and issue descriptions, using large language models and retrieval-augmented generation (RAG), by Nicole Choi.
  • Everything a developer needs to know about Generative AI for SaaS. Staying in the AI department, if you are looking for an introduction to what RAG, GPT, and vector search are all about, I highly recommend taking a look at this fantastic post by Nile’s Gwen Shapira, which provides a really good introduction to these concepts.

Data Platforms and Architecture

  • Introduction to Kafka Tiered Storage at Uber. Tiered storage, as introduced by KIP-405, promises to reduce cost by storing less frequently used data on slower (but cheaper) storage layers—for instance object stores such as S3—and paging it in transparently on demand. This post by Satish Duggana, Kamal Chandraprakash, and Abhijeet Kumar provides an introduction and high-level overview of the architecture of this feature which was pioneered by Uber.
  • Understanding Apache Paimon's Consistency Model Part 1. Following on the heels of Apache Iceberg, Delta Lake and Apache Hudi, Apache Paimon is yet another open table format, originally developed as part of the Flink project. In this excellent three part series (part 2, part 3), Jack Vanlightly discusses Paimon in depth, touching on its basic mechanics, consistency model, and even a formal verification.
  • Reliably Processing Trillions of Kafka Messages Per Day. Walmart deploys Apache Kafka, with a whopping 25,000 consumers. Ravinder Matte et al. discuss in this post how they overcame issues with rebalancing and head-of-line blocking at that scale by putting consuming applications behind a REST proxy.
  • The Kafka Metric You're Not Using: Stop Counting Messages, Start Measuring Time. Imagine you are paged to an alert “Kafka consumer XYZ lags behind by 1M messages”. What does that mean though? In this post, Aratz Manterola Lasa argues that Kafka consumer lag should better be described in terms of time rather than offsets, making it much easier to understand and interpret.

RDBMS and Change Data Capture

  • Logical Replication Features in PG-17. Postgres practitioners rejoice: Postgres 17—scheduled to be released later this year—is going to deliver failover replication slots, allowing you to point your CDC clients to a stand-by server, after it has been promoted to primary in case of a fail-over. Ahsan Hadi takes an early look at this long-awaited feature in this post. In the meantime, you can implement this functionality yourself on Postgres 16, as I’ve discussed in a blog post a few months back.
  • Introducing pgstream: Postgres replication with DDL changes. Amongst the Postgres SaaS providers, Xata is definitely worth keeping an eye on. Not only have they published pgroll, an innovative solution for schema migrations in a safe and revertible way, but also pgstream, a command line client for CDC with support for DDL changes.
  • Putting DuckDB in Postgres to Query Iceberg. What happens when you combine everyone’s most favourite OLTP database with everyone’s most favourite in-process OLAP store? Good things of course! That’s probably what the fine folks of ParadeDB must have thought and did exactly that with their pg_lakehouse Postgres extension. You can read all about it in this post by Ming Ying.
  • Fan-out from Postgres with Change Data Capture using Debezium and Upstash Redis. Updating your database and a cache, without resorting to unsafe dual writes? That’s a highly popular CDC use case, discussed in depth in this post by Evan Shortiss, using Neon for Postgres and Upstash for Redis.
  • Speaking of Neon, we recently collaborated with their team for adding an integration guide on combining the serverless Postgres with Decodable for processing change event streams.
  • Debezium Asynchronous Engine. While Debezium is used as a Kafka Connector most of the time, it also can be used as a library within any Java-based application. Vojtěch Juránek from the Debezium team discusses the use cases and applications of the Debezium embedded engine and the brand-new asynchronous implementation of the same.

Paper of the Month

Building processing engines which are equally well suited for streaming and query workloads is an ongoing topic of research in the industry and academia. In their paper μWheel: Aggregate Management for Streams and Queries, Max Meldrum and Paris Carbone introduce a novel approach for computing aggregates over time intervals, allowing to reuse computation results for both push and pull style queries. In this accompanying blog post, Max demonstrates their results on top of DataFusion.

Events & Call for Papers (CfP)

New Releases

A few new releases this month:

That’s all for this month! We hope you’ve enjoyed the newsletter and would love to hear about any feedback or suggestions you’ve got.

Gunnar (LinkedIn / X / Mastodon / Email)

Robin (LinkedIn / X / Mastodon / Email)

📫 Email signup 👇

Did you enjoy this issue of Checkpoint Chronicle? Would you like the next edition delivered directly to your email to read from the comfort of your own home?

Simply enter your email address here and we'll send you the next issue as soon as it's published—and nothing else, we promise!

👍 Got it!
Oops! Something went wrong while submitting the form.
Gunnar Morling

Gunnar is an open-source enthusiast at heart, currently working on Apache Flink-based stream processing. In his prior role as a software engineer at Red Hat, he led the Debezium project, a distributed platform for change data capture. He is a Java Champion and has founded multiple open source projects such as JfrUnit, kcctl, and MapStruct.

Welcome to the Checkpoint Chronicle, a monthly roundup of interesting stuff in the data and streaming space. Your hosts and esteemed curators of said content are Gunnar Morling (your editor-in-chief for this edition) and Robin Moffatt. Feel free to send our way any choice nuggets that you think we should feature in future editions.

Stream Processing, Streaming SQL, and Streaming Databases

  • Automate Delivering Apache Flink Applications. When it comes to deploying stream processing jobs to production, fully automated pipelines are key to ensure fast delivery, robustness, auditability, and more. Rashid Aljohani describes a GitOps approach for deploying Flink jobs onto OpenShift clusters, using ArgoCD for continuous delivery and the Flink Kubernetes operator.
  • So You Want to Write a Stream Processor? Beware of the Duck Syndrome. It can be a tempting task to implement a stream processing engine from scratch. But as so often, the devil is in the details (Correctness! Scalability!! Observability!!!), and Almog Gavra of Responsive makes the case why you should trust established engines such as Kafka Streams.
  • Mastering Stream Processing: A Guide to Windowing in Kafka Streams and Flink SQL. Bill Bejeck, author of the popular Kafka Streams in Action book, compares windowing in Kafka Streams and Flink SQL, diving into the support of polymorphic table-valued functions (as standardised in SQL 2016) provided by the latter.
  • Aggregating Real-time Sensor Data with Python and Redpanda. With its strong footprint in the data engineering space, it’s not a surprise that Python also is becoming more and more popular as a tool for stream processing. In this in-depth post, Tomáš Neubauer of Quix shows how to build a Python application for aggregating sensor data from scratch.
  • In-Memory Analytics for Kafka using DuckDB. Ingesting data from Kafka into DuckDB for querying it? Not a problem with kwack, a tool built for this very purpose by Robert Yokota, among other things making it easy to export data from Kafka into Parquet files.

Event Streaming

  • How Canva collects 25 billion events per day. I don’t hear  much about Kinesis Data Streams these days, Amazon’s fully managed data stream service. But it’s very much alive, as demonstrated by this post by Canva’s Long Nguyen. They decided to use KDS over Amazon’s managed Kafka service (MSK), because it was significantly cheaper, while being only marginally slower. Great write-up sourced from practical experience.
  • Streaming Data Platform at Exness: Flink SQL and PyFlink. Part of an entire series of blog posts on the Streaming Data Platform at Exness, this post by Aleksei Perminov describes how they run SQL jobs using the Flink Kubernetes operator, including support for UDFs and statement sets, as well as their approach for running PyFlink jobs.
  • Sending Data to Apache Iceberg from Apache Kafka with Apache Flink. Apache Iceberg is all the rage these days, and it’s definitely one of Robin’s favourite technologies. No wonder that he continues his exploration of this open table format, after discussing ingestion into Iceberg from Decodable a few weeks ago.
  • How to avoid rebalances and disconnections in Kafka consumers. Frequent rebalancing can be disruptive to Kafka consumers; in this post, Red Hat’s Abel Luque and Hugo Melendez Imaz describe strategies for avoiding this, such as asynchronous processing and the pause/resume pattern.

Data Ecosystem

  • Encryption at rest for Apache Kafka. Kroxylicious, a wire protocol proxy for Apache Kafka, was the last project I helped get off the ground during my time at Red Hat. Besides multi-tenancy, policy enforcement, auditing, and schema validation, encryption is a key proxy use case. Red Hat’s Tom Bentley and Chris Giblin, and Sean Rooney of IBM discuss how Kroxylicious provides secure encryption and what’s next for the project. Also check out this Kroxylicious recording from Kafka Summit Bengaluru.
  • BigQuery Table Partitioning—A Comprehensive Guide. Partitioning is a proven strategy for ensuring high performance when handling large data sets, allowing query engines to prune large chunks of data during query execution depending on the given WHERE clause. Matt Dixon explains how to make use of this technique with Google BigQuery.
  • Breaking the bank: the most expensive mistakes in data pipelines. Entertaining post about dos and don’ts when building data pipelines.
  • Unlocking the power of unstructured data with RAG. Nice introduction to gaining insight from unstructured data in the context of software development, such as source code, README files, commit messages, and issue descriptions, using large language models and retrieval-augmented generation (RAG), by Nicole Choi.
  • Everything a developer needs to know about Generative AI for SaaS. Staying in the AI department, if you are looking for an introduction to what RAG, GPT, and vector search are all about, I highly recommend taking a look at this fantastic post by Nile’s Gwen Shapira, which provides a really good introduction to these concepts.

Data Platforms and Architecture

  • Introduction to Kafka Tiered Storage at Uber. Tiered storage, as introduced by KIP-405, promises to reduce cost by storing less frequently used data on slower (but cheaper) storage layers—for instance object stores such as S3—and paging it in transparently on demand. This post by Satish Duggana, Kamal Chandraprakash, and Abhijeet Kumar provides an introduction and high-level overview of the architecture of this feature which was pioneered by Uber.
  • Understanding Apache Paimon's Consistency Model Part 1. Following on the heels of Apache Iceberg, Delta Lake and Apache Hudi, Apache Paimon is yet another open table format, originally developed as part of the Flink project. In this excellent three part series (part 2, part 3), Jack Vanlightly discusses Paimon in depth, touching on its basic mechanics, consistency model, and even a formal verification.
  • Reliably Processing Trillions of Kafka Messages Per Day. Walmart deploys Apache Kafka, with a whopping 25,000 consumers. Ravinder Matte et al. discuss in this post how they overcame issues with rebalancing and head-of-line blocking at that scale by putting consuming applications behind a REST proxy.
  • The Kafka Metric You're Not Using: Stop Counting Messages, Start Measuring Time. Imagine you are paged to an alert “Kafka consumer XYZ lags behind by 1M messages”. What does that mean though? In this post, Aratz Manterola Lasa argues that Kafka consumer lag should better be described in terms of time rather than offsets, making it much easier to understand and interpret.

RDBMS and Change Data Capture

  • Logical Replication Features in PG-17. Postgres practitioners rejoice: Postgres 17—scheduled to be released later this year—is going to deliver failover replication slots, allowing you to point your CDC clients to a stand-by server, after it has been promoted to primary in case of a fail-over. Ahsan Hadi takes an early look at this long-awaited feature in this post. In the meantime, you can implement this functionality yourself on Postgres 16, as I’ve discussed in a blog post a few months back.
  • Introducing pgstream: Postgres replication with DDL changes. Amongst the Postgres SaaS providers, Xata is definitely worth keeping an eye on. Not only have they published pgroll, an innovative solution for schema migrations in a safe and revertible way, but also pgstream, a command line client for CDC with support for DDL changes.
  • Putting DuckDB in Postgres to Query Iceberg. What happens when you combine everyone’s most favourite OLTP database with everyone’s most favourite in-process OLAP store? Good things of course! That’s probably what the fine folks of ParadeDB must have thought and did exactly that with their pg_lakehouse Postgres extension. You can read all about it in this post by Ming Ying.
  • Fan-out from Postgres with Change Data Capture using Debezium and Upstash Redis. Updating your database and a cache, without resorting to unsafe dual writes? That’s a highly popular CDC use case, discussed in depth in this post by Evan Shortiss, using Neon for Postgres and Upstash for Redis.
  • Speaking of Neon, we recently collaborated with their team for adding an integration guide on combining the serverless Postgres with Decodable for processing change event streams.
  • Debezium Asynchronous Engine. While Debezium is used as a Kafka Connector most of the time, it also can be used as a library within any Java-based application. Vojtěch Juránek from the Debezium team discusses the use cases and applications of the Debezium embedded engine and the brand-new asynchronous implementation of the same.

Paper of the Month

Building processing engines which are equally well suited for streaming and query workloads is an ongoing topic of research in the industry and academia. In their paper μWheel: Aggregate Management for Streams and Queries, Max Meldrum and Paris Carbone introduce a novel approach for computing aggregates over time intervals, allowing to reuse computation results for both push and pull style queries. In this accompanying blog post, Max demonstrates their results on top of DataFusion.

Events & Call for Papers (CfP)

New Releases

A few new releases this month:

That’s all for this month! We hope you’ve enjoyed the newsletter and would love to hear about any feedback or suggestions you’ve got.

Gunnar (LinkedIn / X / Mastodon / Email)

Robin (LinkedIn / X / Mastodon / Email)

📫 Email signup 👇

Did you enjoy this issue of Checkpoint Chronicle? Would you like the next edition delivered directly to your email to read from the comfort of your own home?

Simply enter your email address here and we'll send you the next issue as soon as it's published—and nothing else, we promise!

Gunnar Morling

Gunnar is an open-source enthusiast at heart, currently working on Apache Flink-based stream processing. In his prior role as a software engineer at Red Hat, he led the Debezium project, a distributed platform for change data capture. He is a Java Champion and has founded multiple open source projects such as JfrUnit, kcctl, and MapStruct.