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

Decoupling microservices with Apache Camel and Debezium

November 19, 2019
Pasquale Congiusti
Related topics:
JavaMicroservices
Related products:
Red Hat FuseRed Hat build of Debezium

    The rise of microservices-oriented architecture brought us new development paradigms and mantras about independent development and decoupling. In such a scenario, we have to deal with a situation where we aim for independence, but we still need to react to state changes in different enterprise domains.

    I'll use a simple and typical example in order to show what we're talking about. Imagine the development of two independent microservices: Order and User. We designed them to expose a REST interface and to each use a separate database, as shown in Figure 1:

    Diagram 1 - Order and User microservices

    We must notify the User domain about any change happening in the Order domain. To do this in the example, we need to update the order_list. For this reason, we've modeled the User REST service with addOrder and deleteOrder operations.

    Solution 1: Queue decoupling

    The first solution to consider is adding a queue between the services. Order will publish events that User will eventually process, as shown in Figure 2:

    Diagram 2 - decoupling with a queue

    This is a fair design. However, if you don't use the right middleware you will mix a lot of infrastructure code into your domain logic. Now that you have queues, you must develop producer and consumer logic. You also have to take care of transactions. The problem is to make sure that every event ends up correctly in both the Order database and in the queue.

    Solution 2: Change data capture decoupling

    Let me introduce an alternative solution that handles all of that work without your touching any line of your microservices code. I'll use Debezium and Apache Camel to capture data changes on Order and trigger certain actions on User. Debezium is a log-based data change capture middleware. Camel is an integration framework that simplifies the integration between a source (Order) and a destination (User), as shown in Figure 3:

    Diagram 3 - decoupling with Debezium and Camel

    Debezium is in charge of capturing any data change happening in the Order domain and publishing it to a topic. Then a Camel consumer can pick that event and make a REST call to the User API to perform the necessary action expected by its domain (in our simple case, update the list).

    Decoupling with Debezium and Camel

    I've prepared a simple demo with all of the components we need to run the example above. You can find this demo in this GitHub repo. The only part we need to develop is represented by the following source code:

    public class MyRouteBuilder extends RouteBuilder {
    
        public void configure() {
            from("debezium:mysql?name=my-sql-connector"
            + "&databaseServerId=1"
            + "&databaseHostName=localhost"
            + "&databaseUser=debezium"
            + "&databasePassword=dbz"
            + "&databaseServerName=my-app-connector"
            + "&databaseHistoryFileName=/tmp/dbhistory.dat"
            + "&databaseWhitelist=debezium"
            + "&tableWhitelist=debezium._order"
            + "&offsetStorageFileName=/tmp/offset.dat")
            .choice()
            .when(header(DebeziumConstants.HEADER_OPERATION).isEqualTo("c"))
                .process(new AfterStructToOrderTranslator())
                .to("rest-swagger:http://localhost:8082/v2/api-docs#addOrderUsingPOST")
            .when(header(DebeziumConstants.HEADER_OPERATION).isEqualTo("d"))
                .process(new BeforeStructToOrderTranslator())
                .to("rest-swagger:http://localhost:8082/v2/api-docs#deleteOrderUsingDELETE")
            .log("Response : ${body}");
        }
    }
    

    That's it. Really. We don't need anything else.

    Apache Camel has a Debezium component that can hook up a MySQL database and use Debezium embedded engine. The source endpoint configuration provides the parameters needed by Debezium to note any change happening in the debezium._order table. Debezium streams the events according to a JSON-defined format, so you know what kind of information to expect. For each event, you will get the information as it was before and after the event occurs, plus a few useful pieces of meta-information.

    Thanks to Camel's content-based router, we can either call the addOrderUsingPOST or deleteOrderUsingDELETE operation. You only have to develop a message translator that can convert the message coming from Debezium:

    public class AfterStructToOrderTranslator implements Processor {
    
        private static final String EXPECTED_BODY_FORMAT = "{\"userId\":%d,\"orderId\":%d}";
    
        public void process(Exchange exchange) throws Exception {
            final Map value = exchange.getMessage().getBody(Map.class);
            // Convert and set body
            int userId = (int) value.get("user_id");
            int orderId = (int) value.get("order_id");
    
            exchange.getIn().setHeader("userId", userId);
            exchange.getIn().setHeader("orderId", orderId);
            exchange.getIn().setBody(String.format(EXPECTED_BODY_FORMAT, userId, orderId));
        }
    }
    

    Notice that we did not touch any of the base code for Order or User. Now, turn off the Debezium process to simulate downtime. You will see that it can recover all events as soon as it turns back on!

    You can run the example provided by following the instructions on this GitHub repo.

    Caveat

    The example illustrated here uses Debezium's embedded mode. For more consistent solutions, consider using the Kafka connect mode instead, or tuning the embedded engine accordingly.

    Last updated: March 18, 2024

    Recent Posts

    • Tekton joins the CNCF as an incubating project

    • Federated identity across the hybrid cloud using zero trust workload identity manager

    • Confidential virtual machine storage attack scenarios

    • Introducing virtualization platform autopilot

    • Integrate zero trust workload identity manager with Red Hat OpenShift GitOps

    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.