{"id":4931,"date":"2022-09-08T17:45:58","date_gmt":"2022-09-08T21:45:58","guid":{"rendered":"https:\/\/solutionsreview.com\/data-integration\/?p=4931"},"modified":"2022-09-16T11:14:03","modified_gmt":"2022-09-16T15:14:03","slug":"change-data-capture-examples-an-introductory-guide-to-cdc","status":"publish","type":"post","link":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/","title":{"rendered":"Change Data Capture Examples: An Introductory Guide to CDC"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-4933\" src=\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg\" alt=\"Change Data Capture Examples: An Introductory Guide to CDC\" width=\"800\" height=\"400\" srcset=\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg 800w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-300x150.jpg 300w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-768x384.jpg 768w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-540x270.jpg 540w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-162x81.jpg 162w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-360x180.jpg 360w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13-630x315.jpg 630w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/><\/p>\n<p style=\"text-align: justify;\"><strong><em>This is part of Solutions Review\u2019s Premium Content Series, a collection of contributed columns written by industry experts in maturing software categories. In this submission, <a href=\"https:\/\/www.arcion.io\/\" target=\"_blank\" rel=\"noopener\">Arcion<\/a> Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC technologies.<\/em><\/strong><\/p>\n<p style=\"text-align: justify;\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-4660 alignleft\" src=\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/01\/SR-Premium-Content.gif\" alt=\"SR Premium Content\" width=\"105\" height=\"110\" srcset=\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/01\/SR-Premium-Content.gif 105w, https:\/\/solutionsreview.com\/data-integration\/files\/2022\/01\/SR-Premium-Content-77x81.gif 77w\" sizes=\"(max-width: 105px) 100vw, 105px\" \/>Data management and utilization have become the differentiating factor for businesses in today\u2019s competitive world. For companies in crowded business markets, data provides the opportunity to gain a competitive edge through a better understanding of customer needs and wants, which leads to strategic product differentiation in the relevant markets.<\/p>\n<p style=\"text-align: justify;\">Moreover, the world is moving toward real-time. One report finds that 80 percent of American consumers are more likely to purchase from a company that <a href=\"https:\/\/www.mckinsey.com\/industries\/retail\/our-insights\/personalizing-the-customer-experience-driving-differentiation-in-retail\" target=\"_blank\" rel=\"noopener\">personalizes<\/a> its sales offering. Unfortunately, it\u2019s impossible to deliver real-time personalization if your CRM takes hours or days to update your customer recommendation engine.<\/p>\n<p style=\"text-align: justify;\">Now more than ever, business success is largely dependent on the data an organization collects, its quality and freshness of it, and what they do with it. A data-driven company that is focused on business success must rethink its data strategy in 2022 and embark on a data modernization journey. One of the most effective ways to modernize your data is to introduce a technology called <span style=\"text-decoration: underline;\"><strong><a href=\"https:\/\/solutionsreview.com\/data-integration\/the-best-change-data-capture-tools-to-consider\/\" target=\"_blank\" rel=\"noopener\">change data capture (CDC)<\/a><\/strong><\/span> in your data infrastructure.<\/p>\n<p style=\"text-align: justify;\">This article will take a deep dive into change data capture, its uses, and how it can simplify and improve both your application and data architectures.<\/p>\n<div class=\"widget\"><div class=\"aside-card\">\t\t\t<div class=\"textwidget\"><p><a class=\"bgs-speedbump\" title=\"Download link to Data Integration Buyer's Guide\" href=\"https:\/\/solutionsreview.com\/data-integration\/data-integration-buyers-guide\/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-1682\" src=\"https:\/\/solutionsreview.com\/data-integration\/files\/2021\/05\/21_Data_Integration_Buyers_Guide_Yellow_800.gif\" alt=\"Download Link to Data Integration Buyer's Guide\" width=\"800\" height=\"100\" \/><\/a><\/p>\n<\/div>\n\t\t<\/div><\/div>\n<h2><strong>Change Data Capture Examples<\/strong><\/h2>\n<div class=\"hr hr\"><\/div>\n<h3><strong>What Is Change Data Capture?<\/strong><\/h3>\n<p style=\"text-align: justify;\">Change data capture is a methodology or design pattern that identifies and captures changes in your database over time. These changes are recorded, synced near instantly, and sent either to a table in the same database, a different database, a streaming platform, or to cloud storage. It is then possible to query and take action on the data at a later time. As soon as the source data changes, CDC syncs the databases, eliminating the silos of data. CDC allows businesses to make faster and more accurate data-backed decisions, with reduced resource expenditure.<\/p>\n<h3><strong>Types of CDC<\/strong><\/h3>\n<p style=\"text-align: justify;\">There are several different types of CDC, such as timestamp-based CDC, trigger-based CDC, snapshot-based CDC, and log-based CDC. The two main types, however, are trigger-based CDC and log-based CDC:<\/p>\n<h4><strong>Trigger-Based CDC<\/strong><\/h4>\n<p style=\"text-align: justify;\">This method has been around for decades. The trigger-based CDC captures all insert, update and delete operations performed on tables or databases. For every insert, update and delete statement, a trigger is fired which captures the data manipulation language (DML) statement. Trigger-based CDC requires database triggers to be created in order to identify the changes that have occurred in the source system. It then captures those changes and writes out the changes into another table, typically called a shadow or staging table. Trigger-based CDC is easy to implement, can capture the entire state of the transaction, and is also customizable.<\/p>\n<p style=\"text-align: justify;\">However, there are some known disadvantages to using triggers to enable change data capture. A big disadvantage is the setup of individual triggers for each table. This can lead to costly implementation and management overhead in the case of a large source database. Another challenge with triggers is that for large transactions, there is a significant overhead of doing multiple writes to a database for every insert, update or delete. Also, to apply the changes in the target database, the replication tool needs to connect to the source database at regular intervals; that can put additional load on the source database system and impact performance.<\/p>\n<h4><strong>Log-Based CDC<\/strong><\/h4>\n<p style=\"text-align: justify;\">Log-based CDC, in contrast, works by reading the transaction logs of the source database. By reading the database\u2019s log, you get the complete list of all data changes in their exact order of application. However, every database uses its own custom format to write redo log records to the transaction log, so a customized solution needs to be built to read those formats from the log and convert them into logical transactions and DML statements that could be written to a target system. Therefore, there is a lot of engineering effort that is required to build a solution that enables CDC to read a transaction log.<\/p>\n<p style=\"text-align: justify;\">There are some obvious advantages to using log-based CDC over a trigger-based solution. First, you can get a lot of additional metadata from the transaction log, e.g., a transaction identifier that is useful to ensure that the replication has the ability to resume upon crash. Second, in log-based CDC, there is no connection being made to the source database, and no extra queries are performed on the source system, thus making it a zero-impact solution. This is extremely important for large production systems which are almost running at full capacity and cannot bear any extra overhead.<\/p>\n<h3><strong>The Need for Change Data Capture<\/strong><\/h3>\n<p style=\"text-align: justify;\">A business cannot operate on luck or intuition and hope to remain viable in the long run. Businesses need to be strategic in their decisions, and they can only make the right decisions if they have accurate and fresh data. A major benefit of CDC is that it provides fast, fresh, and accurate data so decisions can be made with speed and precision.<\/p>\n<p>Other benefits of CDC include:<\/p>\n<ul>\n<li>It does not require bulk load updating and batch windows. CDC uses incremental loading or real-time data change streaming to the target repository.<\/li>\n<li>By sending only incremental changes, CDC reduces the cost of transferring data over the wide area network (WAN).<\/li>\n<li>With CDC, users can perform zero-downtime database migrations. It also supports real-time analytics, fraud protection, and data synchronization across geographically distributed systems.<\/li>\n<li>It is ideal for the cloud because it provides an efficient method for incrementally moving data across a WAN.<\/li>\n<li>CDC ensures data is kept in sync across multiple systems, which is very beneficial if quick decisions need to be made in a high-velocity environment.<\/li>\n<li>The efficiency of CDC helps to reduce disruptions to production workloads.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">These are just a few of the many benefits of change data capture for the average business. Some businesses may be able to extract even more value from it depending on how reliant they are on data.<\/p>\n<h3><strong>How Enterprises Leverage Change Data Capture<\/strong><\/h3>\n<p>The following are examples of the different use cases for change data capture:<\/p>\n<h4><strong>Use Case #1: Real-Time Data Streaming\/Streaming ELT<\/strong><\/h4>\n<p style=\"text-align: justify;\">Traditionally, updates were conducted with <span style=\"text-decoration: underline;\"><strong><a href=\"https:\/\/solutionsreview.com\/data-integration\/the-best-etl-tools-extract-transform-load\/\" target=\"_blank\" rel=\"noopener\">extract, transform, load (ETL)<\/a><\/strong><\/span> operations. This was a long process that involved feeding data to the data warehouse from the operational databases using batch loads. While this process was taking place, operational activities had to be slowed down or stopped altogether.<\/p>\n<p style=\"text-align: justify;\">But with CDC, organizations can continue operations 24\/7 without any downtime. High-volume data transfers can be carried out incrementally in real-time without disrupting a company&#8217;s operational activities.<\/p>\n<h4><strong>Use Case #2: Big Data\/Real-Time Analytics<\/strong><\/h4>\n<p style=\"text-align: justify;\">For current business intelligence, CDC can feed changes in data to the analytics platform. This allows organizations to make quick decisions with accurate data. <span style=\"text-decoration: underline;\"><strong><a href=\"https:\/\/solutionsreview.com\/business-intelligence\/the-best-streaming-analytics-tools-real-time-platforms\/\" target=\"_blank\" rel=\"noopener\">Real-time streaming analytics<\/a><\/strong><\/span> makes it easier for companies to decide what\u2019s working and what isn\u2019t. This allows for better management of the company\u2019s product and client base.<\/p>\n<p>These benefits have led some companies to further tap into real-time streaming analytics to do the following:<\/p>\n<ul>\n<li><strong>Fine-tune app features:<\/strong> Companies will push out new features of their apps and act on real-time streaming data to understand customer adoption and ensure success. Real-time analytics also helps with detecting anomalies in the app and even predictive analytics.<\/li>\n<li><strong>Personalization:<\/strong> Organizations use real-time analytics to help with the personalization of experiences, such as improving search relevance for e-commerce platforms.<\/li>\n<li><strong>Improve advertising and marketing campaigns:<\/strong> Real-time analytics help companies improve advertising and marketing campaigns to maximize the ROI and stop ineffective spending.<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">These are just some of the advantages to having real-time analytics and the impact it has on making quick business decisions.<\/p>\n<h4><strong>Use Case #3: Database Replications and Migrations<\/strong><\/h4>\n<p style=\"text-align: justify;\">To make sure every resource has the latest version of data, CDC can be used for <span style=\"text-decoration: underline;\"><strong><a href=\"https:\/\/solutionsreview.com\/data-integration\/the-best-data-replication-software\/\" target=\"_blank\" rel=\"noopener\">data replication<\/a><\/strong><\/span> to various databases, data lakes or data warehouses. Database replication creates analytic databases as separate copies in the production database. This frees the transactional database from analytical queries, while also making sure new data in the analytical database is fast and accurate. There are many methods to accomplish data replication techniques, but CDC has become one of the most popular methods. Instead of copying entire tables during every replication cycle, it only copies\/updates the rows that have changed since the last replication.<\/p>\n<h4><strong>Use Case #4: Event-Driven Architectures<\/strong><\/h4>\n<p style=\"text-align: justify;\">Organizations use event-driven architectures (EDA) to capture insights and communicate changes immediately to help enhance customer experiences or improve organizational efficiency. CDC is inherently event-driven, and any event-driven architecture in an organization can immediately benefit from a CDC feed. Let\u2019s say an organization has deployed a modern event-driven architecture with something like Apache Kafka, then databases can feed CDC events into Kafka topics, and those CDC events could be consumed to do event-driven analytics. For example, if an application needs alerting when a particular column value of a table in a source database exceeds a known threshold, the application could inspect the CDC events (out of the source database) in Kafka, establish if the threshold was hit, and alert itself accordingly.<\/p>\n<h3><strong>Final Thoughts<\/strong><\/h3>\n<p style=\"text-align: justify;\">The average organization is inundated with enormous amounts of data every day. CDC helps organizations quickly review and analyze data for business insights. For instance, many companies are negatively impacted by data access that is too slow or has poor quality because, unfortunately, they still use delayed batch processing to sync databases. In today\u2019s landscape, companies need accurate information quickly to remain competitive. Slow processes will not allow an organization to pivot quickly and accurately. The path toward data modernization starts with adapting to change data capture.<\/p>\n<div class=\"hr hr\"><\/div>\n<div class=\"widget\"><div class=\"aside-card\">\t\t\t<div class=\"textwidget\"><p><a class=\"vms-speedbump\" title=\"Download link to Data Integration Vendor Map\" href=\"https:\/\/solutionsreview.com\/data-integration\/data-integration-vendor-map-a-guide-to-the-best-integration-solutions\/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-1682\" src=\"https:\/\/solutionsreview.com\/data-integration\/files\/2020\/02\/DI_VM_SB_800.jpg\" alt=\"Download Link to Data Integration Vendor Map\" width=\"800\" height=\"100\" \/><\/a><\/p>\n<\/div>\n\t\t<\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This is part of Solutions Review\u2019s Premium Content Series, a collection of contributed columns written by industry experts in maturing software categories. In this submission, Arcion Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC technologies. Data management and utilization have become the differentiating [&hellip;]<\/p>\n","protected":false},"author":173,"featured_media":4933,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[1107,1108],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Change Data Capture Examples: An Introductory Guide to CDC<\/title>\n<meta name=\"description\" content=\"Arcion Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rajkumar Sen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\"},\"author\":{\"name\":\"Rajkumar Sen\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/e7525424c57f92e1c8eed5aa37bd5365\"},\"headline\":\"Change Data Capture Examples: An Introductory Guide to CDC\",\"datePublished\":\"2022-09-08T21:45:58+00:00\",\"dateModified\":\"2022-09-16T15:14:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\"},\"wordCount\":1646,\"publisher\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#organization\"},\"image\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg\",\"keywords\":[\"Arcion\",\"Rajkumar Sen\"],\"articleSection\":[\"Best Practices\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\",\"name\":\"Change Data Capture Examples: An Introductory Guide to CDC\",\"isPartOf\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg\",\"datePublished\":\"2022-09-08T21:45:58+00:00\",\"dateModified\":\"2022-09-16T15:14:03+00:00\",\"description\":\"Arcion Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC.\",\"breadcrumb\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg\",\"contentUrl\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg\",\"width\":800,\"height\":400,\"caption\":\"Change Data Capture Examples: An Introductory Guide to CDC\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/solutionsreview.com\/data-integration\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Change Data Capture Examples: An Introductory Guide to CDC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#website\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/\",\"name\":\"Best Data Integration Vendors, News &amp; Reviews for Big Data, Applications, ETL and Hadoop\",\"description\":\"Data Integration Buyers Guide and Best Practices\",\"publisher\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/solutionsreview.com\/data-integration\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#organization\",\"name\":\"Solutions Review\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2016\/02\/Solutions_Review_Header_Data_Integration_225.png\",\"contentUrl\":\"https:\/\/solutionsreview.com\/data-integration\/files\/2016\/02\/Solutions_Review_Header_Data_Integration_225.png\",\"width\":225,\"height\":90,\"caption\":\"Solutions Review\"},\"image\":{\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/e7525424c57f92e1c8eed5aa37bd5365\",\"name\":\"Rajkumar Sen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d884712f55bcc05ded80bcddf3265a27?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d884712f55bcc05ded80bcddf3265a27?s=96&d=mm&r=g\",\"caption\":\"Rajkumar Sen\"},\"description\":\"Rajkumar Sen is the founder and chief architect at Arcion, the only cloud-native, CDC-based data replication platform. In his previous role as director of engineering at MemSQL, he architected the query optimizer and the distributed query processing engine. Raj also served as a principal engineer at Oracle, where he developed features for the Oracle database query optimizer.\",\"url\":\"https:\/\/solutionsreview.com\/data-integration\/author\/rsen\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Change Data Capture Examples: An Introductory Guide to CDC","description":"Arcion Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/","twitter_misc":{"Written by":"Rajkumar Sen","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#article","isPartOf":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/"},"author":{"name":"Rajkumar Sen","@id":"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/e7525424c57f92e1c8eed5aa37bd5365"},"headline":"Change Data Capture Examples: An Introductory Guide to CDC","datePublished":"2022-09-08T21:45:58+00:00","dateModified":"2022-09-16T15:14:03+00:00","mainEntityOfPage":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/"},"wordCount":1646,"publisher":{"@id":"https:\/\/solutionsreview.com\/data-integration\/#organization"},"image":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage"},"thumbnailUrl":"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg","keywords":["Arcion","Rajkumar Sen"],"articleSection":["Best Practices"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/","url":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/","name":"Change Data Capture Examples: An Introductory Guide to CDC","isPartOf":{"@id":"https:\/\/solutionsreview.com\/data-integration\/#website"},"primaryImageOfPage":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage"},"image":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage"},"thumbnailUrl":"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg","datePublished":"2022-09-08T21:45:58+00:00","dateModified":"2022-09-16T15:14:03+00:00","description":"Arcion Founder and Chief Architect Rajkumar Sen offers a look at Change Data Capture examples, with a complete introduction to CDC.","breadcrumb":{"@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#primaryimage","url":"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg","contentUrl":"https:\/\/solutionsreview.com\/data-integration\/files\/2022\/09\/MicrosoftTeams-image-13.jpg","width":800,"height":400,"caption":"Change Data Capture Examples: An Introductory Guide to CDC"},{"@type":"BreadcrumbList","@id":"https:\/\/solutionsreview.com\/data-integration\/change-data-capture-examples-an-introductory-guide-to-cdc\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/solutionsreview.com\/data-integration\/"},{"@type":"ListItem","position":2,"name":"Change Data Capture Examples: An Introductory Guide to CDC"}]},{"@type":"WebSite","@id":"https:\/\/solutionsreview.com\/data-integration\/#website","url":"https:\/\/solutionsreview.com\/data-integration\/","name":"Best Data Integration Vendors, News &amp; Reviews for Big Data, Applications, ETL and Hadoop","description":"Data Integration Buyers Guide and Best Practices","publisher":{"@id":"https:\/\/solutionsreview.com\/data-integration\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/solutionsreview.com\/data-integration\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/solutionsreview.com\/data-integration\/#organization","name":"Solutions Review","url":"https:\/\/solutionsreview.com\/data-integration\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/logo\/image\/","url":"https:\/\/solutionsreview.com\/data-integration\/files\/2016\/02\/Solutions_Review_Header_Data_Integration_225.png","contentUrl":"https:\/\/solutionsreview.com\/data-integration\/files\/2016\/02\/Solutions_Review_Header_Data_Integration_225.png","width":225,"height":90,"caption":"Solutions Review"},"image":{"@id":"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/e7525424c57f92e1c8eed5aa37bd5365","name":"Rajkumar Sen","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/solutionsreview.com\/data-integration\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d884712f55bcc05ded80bcddf3265a27?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d884712f55bcc05ded80bcddf3265a27?s=96&d=mm&r=g","caption":"Rajkumar Sen"},"description":"Rajkumar Sen is the founder and chief architect at Arcion, the only cloud-native, CDC-based data replication platform. In his previous role as director of engineering at MemSQL, he architected the query optimizer and the distributed query processing engine. Raj also served as a principal engineer at Oracle, where he developed features for the Oracle database query optimizer.","url":"https:\/\/solutionsreview.com\/data-integration\/author\/rsen\/"}]}},"_links":{"self":[{"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/posts\/4931"}],"collection":[{"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/users\/173"}],"replies":[{"embeddable":true,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/comments?post=4931"}],"version-history":[{"count":0,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/posts\/4931\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/media\/4933"}],"wp:attachment":[{"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/media?parent=4931"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/categories?post=4931"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/solutionsreview.com\/data-integration\/wp-json\/wp\/v2\/tags?post=4931"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}