Type something to search...
Debezium 3.4 Final: A Feature-Packed Release for Modern Data Pipelines

Debezium 3.4 Final: A Feature-Packed Release for Modern Data Pipelines

The Debezium team has wrapped up 2025 with a substantial release: Debezium 3.4.0.Final. This version brings a rich collection of new features, performance improvements, and bug fixes designed to make change data capture (CDC) more powerful, flexible, and enterprise-ready. Whether you’re streaming data from relational databases, building cloud-native pipelines with Quarkus, or working with spatial data types, this release has something to offer.

What Makes Debezium 3.4 Stand Out?

Debezium 3.4 is built against Kafka Connect 4.1.1, marking an important milestone for compatibility with the latest Kafka ecosystem. The upgrade addresses a class-loading regression present in earlier Kafka versions, ensuring smoother deployments for teams running modern Kafka infrastructure.

Beyond Kafka compatibility, the release introduces practical tools for handling large-scale environments, improved geometry transformations for spatial data, and expanded support for the Quarkus framework—a popular choice for building cloud-native Java applications.

Breaking Changes to Know Before Upgrading

While minor releases typically maintain backward compatibility, Debezium 3.4 introduces a few changes that warrant attention before upgrading:

ComponentChangeImpact
IBMi ConnectorDefault value trimming now removes leading/trailing whitespace from string fieldsNew trim.non-xml-charsequence.field.mode property available for control
Oracle ConnectorXDB and XMLParserV2 libraries now included by defaultNo more manual downloads needed
PostgreSQL ConnectorPostgreSQL 13 no longer tested or supportedPlan upgrades to PostgreSQL 14+
PostgreSQLNew lsn.flush.mode replaces deprecated flush.lsn.sourceProvides finer control over replication slot LSN flushing
SQL Server ConnectorDefault data.query.mode changed from function to directMore efficient query generation for change capture

If you’re running PostgreSQL 13 in production, note that official support has ended with this release. The Debezium team recommends upgrading to a supported PostgreSQL version to ensure continued compatibility and access to future improvements.

Core Engine Enhancements

Kafka 4.1.1 Support

Debezium 3.4 requires Kafka 4.1.1 if you’re running Kafka 4.1.0. This isn’t just a routine version bump—it’s essential for working around a class-loading regression that affected earlier 4.x releases. Teams already on Kafka 4.1.0 should prioritize this upgrade.

Memory Guards for Large Schemas

One of the most practical additions is a new guardrail system that protects against OutOfMemoryError issues. If you’re working with databases containing hundreds or thousands of tables, you can now set limits on the number of tables a connector can capture. When these limits are exceeded, Debezium can trigger a warning or halt the connector entirely—preventing unexpected crashes in production environments.

OpenLineage Integration Improvements

Data lineage tracking has become increasingly important for compliance and debugging. The OpenLineage integration has been refined so that when disabled via openlineage.integration.enabled=false, Debezium avoids initializing OpenLineage entirely. This reduces overhead and addresses issues related to the Kafka class-loading regression.

Geometry Transformations

Working with spatial data just got easier. Two new Single Message Transformations (SMTs) simplify handling geography and geometry types:

  • SwapGeometryCoordinates: Converts between coordinate systems by swapping (longitude, latitude) to (latitude, longitude) or vice versa—useful when migrating data between databases that use different conventions.
  • GeometryFormatTransformer: Converts geometry and geography types between Well-Known Binary (WKB) and Extended WKB formats, streamlining integration across different spatial databases.

Timezone Conversion Updates

The ConvertTimezone transformation now supports converting ts_ms, ts_us, and ts_ns fields in the source information block, giving you more flexibility when normalizing timestamps across systems in different time zones.

Connector-Specific Improvements

IBMi Connector

The IBMi connector gains two notable capabilities:

  • Incremental Snapshots: On-demand, resumable incremental snapshots allow targeted backfills without pausing the entire pipeline—a significant improvement for operational flexibility.
  • Multi-Journal Support: The source block now includes journal receiver metadata (file name, library, timestamp, sequence number), ensuring correct event ordering when multiple journals are assigned to tables.

MongoDB Connector

When MongoDB 6+ emits wallTime in change streams, Debezium now uses it for the ts_ms, ts_us, and ts_ns fields. For older MongoDB versions without wallTime, the connector falls back to clusterTime. This provides more accurate timestamps that better reflect when changes actually occurred.

Oracle Connector

Oracle users benefit from several improvements:

FeatureDescription
Improved LogMiner MetricsCommitThroughput JMX metric now focuses only on commit durations for more accurate throughput measurements
New TotalCommitTimeInMilliseconds MetricTracks total time spent in the commit loop
Mining Range MetricsNew JMX metrics expose LogMiner session boundaries, helping troubleshoot performance issues
Subset Database ReplicationOracle 21’s subset replication mode is now recognized as equivalent to minimal supplemental logging
Drop Transaction SignalA new Oracle-specific signal lets you manually discard buffered transactions mid-stream
Configurable Performance OptionsNew properties allow tuning session parameters like hash_area_size and sort_area_size

SQL Server Connector

  • Resumable Incremental Snapshots: If a connector restart occurs during an incremental snapshot, Debezium now correctly resumes rather than failing—a welcome improvement for reliability.
  • Multitask Signaling: Deployments capturing multiple databases on a single instance now fully support signals, including snapshot triggers and blocking signals.

Vitess Connector

A new vitess.exclude.keyspace.from.table.name=true option reduces VTGate overhead when streaming from a single keyspace, improving performance for Vitess deployments.

Quarkus Extension: A Game-Changer for Cloud-Native Development

One of the most exciting additions in Debezium 3.4 is the enhanced Quarkus extension with DevService support. This enables developers to spin up Debezium connectors as Quarkus DevServices with minimal configuration.

Supported Databases for DevServices

DatabaseDevService Support
PostgreSQL
MongoDB
MySQL
MariaDB
SQL Server

Running Multiple DevServices

Quarkus applications can now run multiple Debezium DevServices simultaneously. This enables event aggregation from different database sources within a single application. You can use annotations like @Engine("default") and @Engine("alternative") to control which service processes each event—providing flexibility for complex microservice architectures.

JDBC Sink Improvements

The JDBC sink connector receives several quality-of-life improvements:

  • FieldNameTransformation Fix: The transformation now correctly applies the desired case to all payload fields.
  • Geometry Type Support: The sink converts geometry column values to the target database’s desired format automatically.
  • Passthrough Collection Naming: A new PassthroughCollectionNamingStrategy allows using the event topic name directly as the target table name, simplifying transformation pipelines.

Debezium Server Updates

Native OpenLineage Output

Debezium Server can now emit OpenLineage output datasets without requiring a separate transformation. A few configuration properties enable lineage tracking for your connectors, making it easier to maintain data governance in your CDC pipelines.

Dynamic Partition Routing for Azure Event Hubs

A new debezium.sink.eventhubs.dynamicpartitionrouting configuration option allows fine-tuning how keys, partition IDs, or batch indices determine the partition when publishing to Azure Event Hubs. This is particularly useful for optimizing throughput and ensuring proper event ordering.

Notable Bug Fixes

Beyond new features, Debezium 3.4 addresses numerous stability issues:

  • Fixed a bug where the DB2 CDC source randomly lost events
  • Updated the MongoDB driver to version 5.5.1
  • Resolved null pointer exceptions in the Cassandra connector
  • Various UI improvements and error-handling fixes across the platform

What’s Coming in Debezium 3.5?

With 3.4 complete, the Debezium team is already looking ahead to Debezium 3.5, scheduled for early 2026. Planned features include:

  • Cloud storage sinks and source connectors
  • Milvus and Qdrant vector database support for Oracle
  • Advanced filtering for the Quarkus extension
  • Improved user experience in the web-based management platform
  • Multi-threaded single table snapshots

You can follow the evolving roadmap on the official Debezium website to track what’s coming next.

Should You Upgrade?

Debezium 3.4 is a substantial release that addresses real-world pain points for data engineers. If you’re using Kafka 4.1.x, the upgrade is essentially required to avoid the class-loading regression. For everyone else, the new memory guards, improved metrics, and Quarkus enhancements make this release worth considering—especially if you’re running at scale or building cloud-native applications.

Before upgrading, review the breaking changes (particularly if you use PostgreSQL 13 or rely on deprecated configuration properties) and test in a non-production environment. The Debezium team has published detailed migration notes to guide you through the upgrade process.


Sources:

Stay Ahead in Tech

Join thousands of developers and tech enthusiasts. Get our top stories delivered safely to your inbox every week.

No spam. Unsubscribe at any time.

Related Posts

2025 AI Recap: Top Trends and Bold Predictions for 2026

2025 AI Recap: Top Trends and Bold Predictions for 2026

If 2025 taught us anything about artificial intelligence, it's that the technology has moved decisively from experimentation to execution. This year marked a turning point where AI transitioned from b

read more
AWS Outage: A Cautionary Tale of Cascading Failures

AWS Outage: A Cautionary Tale of Cascading Failures

The Ripple Effect of a Single Misconfiguration On October 20th, 2025, Amazon Web Services (AWS) experienced a significant outage in its US-EAST-1 Region, affecting numerous cloud services, including A

read more
Revolutionizing DNA Research with a Search Engine

Revolutionizing DNA Research with a Search Engine

The rapid advancement of DNA sequencing technologies has led to an explosion of genomic data, with over 100 petabytes of information currently stored in central databases such as the American SRA and

read more
A Senior Engineer's Guide to Prompting AI for Real Code

A Senior Engineer's Guide to Prompting AI for Real Code

If your idea of using AI for coding still involves tabbing twice to accept a generic boilerplate function, we need to talk. We're way past the era of mere code completion. As of early 2026, OpenAI Cod

read more
AI Coders Can Finally See What They're Building — Antigravity and Uno Platform Make It Happen

AI Coders Can Finally See What They're Building — Antigravity and Uno Platform Make It Happen

Here's a scenario every developer knows too well: your AI coding assistant writes a beautiful chunk of code, the compiler gives you a green light, and you feel like a productivity superhero — until yo

read more
AIOZ Stream: A New Web3 Challenger to the Video Streaming Status Quo

AIOZ Stream: A New Web3 Challenger to the Video Streaming Status Quo

AIOZ Stream launches as creator-first alternative to centralized streaming giants AIOZ Network unveiled AIOZ Stream on September 15, 2025—a decentralized peer-to-peer streaming protocol that promises

read more
Balancing Autonomy and Trust in AI Systems

Balancing Autonomy and Trust in AI Systems

The Delicate Balance of Autonomy and Trust in AI As AI systems become increasingly autonomous, the need to balance autonomy with trustworthiness has become a critical concern. This move reflects broad

read more
Angular 21 Released with AI-Driven Tooling

Angular 21 Released with AI-Driven Tooling

Key HighlightsAngular 21 introduces AI-driven developer tooling for improved onboarding and documentation discovery Zoneless change detection is now the default, reducing runtime overhead and improvin

read more
Cloudflare Unveils Data Platform for Seamless Data Ingestion and Querying

Cloudflare Unveils Data Platform for Seamless Data Ingestion and Querying

The era of cumbersome data infrastructure is coming to an end, thanks to Cloudflare's latest innovation: the Cloudflare Data Platform. This move reflects broader industry trends towards more streamlin

read more