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

How to use Debezium SMT with Groovy to filter routing events

July 6, 2023
Diego Neves
Related topics:
Programming languages & frameworksGitOpsKafka
Related products:
Red Hat Enterprise Linux

    After configuring my Kafka Connect Image with Debezium, demonstrated in Hugo Guerrero's article Improve your Kafka Connect builds of Debezium, I needed to configure a type of filter to only bring certain events from the database table to my topics. I was able to do this using Debezium SMT with Groovy.

    What is Debezium SMT?

    Debezium SMT (single message transform) is a filter feature provided by Debezium that is used to process only records that you find relevant. To do that, you need to include plugins the implementations of the JSR223 API (Scripting for the Java Platform) inside your Kafka Connect Image.

    Note that Debezium does not come with an JSR 223 implementation, so you will need to provide the libs to use this feature. We will use the Groovy implementation of JSR 223, so you can download all the relevant jars from the Groovy website.

    There are other JSR 223 implementations that you can use, however, we will not cover them here. If you want information about this, go to Debezium documentation.

    Download the files

    First of all, you will need your database plugin (i.e., SQL Server or MySQL) from the download page. Figure 1 illustrates the Red Hat software downloads page.

    A screenshot of the Red Hat software download page.
    Figure 1: The Red Hat software download page.

    That is the connector will need to put in your Kafka Connect to work with MySQL CDC. You will also need to download the scripting transformation package.

    With this in place, go to the Groovy website and download the zip that contains all the JAR's files, as shown in Figure 2.

    A screenshot of the Groovy download page.
    Figure 2: The Groovy download page.

    Figure 3 shows the three zip files that we will unzip in the next steps.

    A screenshot of the zip files dowloaded for Debezium and Groovy.
    Figure 3: The zip files dowloaded for Debezium and Groovy.

    Creating the image

    Unzip the files dowloaded in the last step. Use the SQL server plugin, as shown in Figure 4.

    A screenshot of the unzipped debezium and groovy folders.
    Figure 4: The unzipped debezium and groovy folders.

    Go to the debezium-scripting folder and copy the debezium-scripting-1.9.7.Final...jar and place it inside the debezium-connector-sqlserver folder.

    Then go to the groovy-4.0.11/lib folder and copy the jars groovy-4.0.11.jar and groovy-jsr223-4.0.11.jar. Place them in the debezium-connector-sqlserver folder. At this point, your folder should look like Figure 5. Keep in mind that your versions may be different. These are the versions available at the time of this article.

    A screenshot of the plugin folder with all the necessary jars.
    Figure 5: The plugin folder with all the necessary jars.

    Now, zip the debezium-connector-sqlserver folder and place this zip file into your nexus or Git. Then use this as your artifact, as shown in the previously mentioned Hugo Guerrero article.

    How to use transformations

    To use this feature, create your Kafka connectors and configure them to use the transformations like the following:

    kind: KafkaConnector
    apiVersion: kafka.strimzi.io/v1beta2
    metadata:
      name: sql-connector-for-inserts
      labels:
        strimzi.io/cluster: my-connect-cluster
      namespace: kafka
    spec:
      class: io.debezium.connector.sqlserver.SqlServerConnector
      tasksMax: 1
      config:
        database.hostname: "server.earth.svc"
        database.port: "1433"
        database.user: "sa"
        database.password: "Password!"
        database.dbname: "InternationalDB"
        table.whitelist: "dbo.Orders"
        database.history.kafka.bootstrap.servers: "my-cluster-kafka-bootstrap:9092"
        database.server.name: "internation-db-insert-topic" <-- # This property need to have a unique value
        database.history.kafka.topic: "dbhistory.internation-db-insert-topic" <-- # This property need to have a unique value
        #### Here start the transforms feature, using the condition where operation is equal 'c', only 
        #### events of that type will be routed to the topic created by this connector.
        transforms: filter 
        transforms.filter.language: jsr223.groovy 
        transforms.filter.type: io.debezium.transforms.Filter 
        transforms.filter.condition: value.op == 'c'
        transforms.filter.topic.regex: internation-db-insert-topic.dbo.Orders\
        #### end of transforms filter
        tombstones.on.delete: 'false'

    Summary

    This article demonstrated how to configure a Kafka connect image to use Debezium SMT with Groovy and showed you how to use transformations and filters to route events between topics. For more information, refer to the Debezium documentation.

    Related Posts

    • Capture database changes with Debezium Apache Kafka connectors

    • Red Hat advances Debezium CDC connectors for Apache Kafka support to Technical Preview

    • Serialize Debezium events with Apache Avro and OpenShift Service Registry

    • Use Groovy to customize the Maven build process

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    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.