0Pricing
Apache Kafka & Stream Processing Fundamentals · บทเรียน

การดักจับการเปลี่ยนแปลงข้อมูล (CDC)

ใช้ Kafka สำหรับการดักจับการเปลี่ยนแปลงข้อมูล เพื่อสตรีมการเปลี่ยนแปลงของฐานข้อมูลแบบเรียลไทม์สำหรับกรณีการใช้งานต่าง ๆ

การดักจับการเปลี่ยนแปลงข้อมูล (CDC) เป็นบทเรียน Apache Kafka & Stream Processing Fundamentals ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Apache Kafka & Stream Processing Fundamentals และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Apache Kafka & Stream Processing Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

What is Change Data Capture?

Imagine needing to know every time a record in your database is updated, inserted, or deleted, in real-time. This is where Change Data Capture (CDC) comes in!

CDC is a software design pattern used to track and capture changes made to data in a database. It focuses on identifying and capturing only the data that has changed, rather than performing full scans.

Real-Time Data with CDC & Kafka

Combining CDC with Kafka unlocks powerful capabilities for real-time data processing and integration:

  • Real-time Analytics: Update dashboards and reports instantly.
  • Data Synchronization: Keep multiple databases or data stores consistent.
  • Event Sourcing: Reconstruct the full history of changes for auditing or debugging.
  • Microservices: Enable services to react to changes in other services' data without direct database access.

Log-Based CDC Explained

The most common and efficient CDC method, especially with Kafka, is log-based CDC. Databases like PostgreSQL, MySQL, and SQL Server maintain a transaction log (or write-ahead log - WAL).

This log records every change made to the database. Log-based CDC tools read these logs directly, without impacting the database's performance, to extract changes.

CDC Flow to Kafka

A typical CDC architecture with Kafka involves:

  1. Source Database: The database where changes originate.
  2. CDC Connector/Tool: Reads the database's transaction log.
  3. Kafka Connect: A framework for connecting Kafka with other systems.
  4. Kafka Topic: Where the captured change events are published.
  5. Consumers: Applications that read and process the change events from Kafka.

Debezium: Open-Source CDC

Debezium is a popular open-source distributed platform for Change Data Capture. It provides a set of Kafka Connect connectors that monitor specific database systems.

When changes occur in your database, Debezium streams these changes as events to Kafka topics. It supports various databases like PostgreSQL, MySQL, MongoDB, and SQL Server.

Debezium PostgreSQL Connector

To set up Debezium, you'd typically configure a connector via Kafka Connect's REST API. Here's a simplified example of a Debezium PostgreSQL connector configuration:

{
"name": "pg-connector",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"database.hostname": "localhost",
"database.port": "5432",
"database.user": "postgres",
"database.password": "password",
"database.dbname": "mydb",
"topic.prefix": "dbserver1",
"table.include.list": "public.customers"
}
}

This config tells Debezium to monitor the mydb database on localhost:5432 and send changes from the public.customers table to Kafka topics prefixed with dbserver1.

What a CDC Event Looks Like

When Debezium captures a change, it publishes an event to Kafka. This event usually contains structured information:

  • before: The state of the record before the change (for updates/deletes).
  • after: The state of the record after the change (for inserts/updates).
  • op: The operation type (c for create, u for update, d for delete, r for read/snapshot).
  • source: Metadata about the database, table, and transaction.

These events are often serialized as JSON or Avro.

Processing Change Events

A Kafka consumer application can read these CDC events and react to them. For instance, you might update a search index, invalidate a cache, or trigger another microservice.

Here's a basic Java consumer example illustrating how you might parse a Debezium event:

public class CdcConsumer {
  public static void main(String[] args) {
    // This is a simplified example.
    // In reality, use KafkaConsumer and JSON/Avro parsing.

    String jsonEvent = "{ \"payload\": { \"op\": \"c\", \"after\": { \"id\": 1, \"name\": \"Alice\" } } }";
    
    // Imagine parsing jsonEvent here
    String operationType = getOperationFromJson(jsonEvent, "op");
    String newName = getOperationFromJson(jsonEvent, "name");

    if ("c".equals(operationType)) {
      System.out.println("New customer created: " + newName);
    } else if ("u".equals(operationType)) {
      System.out.println("Customer updated: " + newName);
    }
  }

  // Placeholder for JSON parsing logic
  private static String getOperationFromJson(String json, String key) {
    if (key.equals("op")) return "c"; // Simulate 'c' operation
    if (key.equals("name")) return "Alice"; // Simulate 'name'
    return null;
  }
}

Practical CDC Use Cases

CDC with Kafka is incredibly versatile. Some common use cases include:

  • Data Warehousing: Populate data warehouses with only changed data for efficient ETL (Extract, Transform, Load).
  • Cache Invalidation: Automatically clear or update caches when underlying data changes.
  • Audit Logs: Maintain a complete, immutable history of all data changes for compliance.
  • Search Indexing: Keep search indexes (e.g., Elasticsearch) up-to-date with real-time database changes.

CDC Knowledge Check

Which of the following is a primary benefit of using log-based Change Data Capture (CDC) with Kafka?

CDC with Kafka: A Powerful Pattern

We've explored how Change Data Capture (CDC) is a powerful pattern for streaming database changes in real-time to Kafka. Using tools like Debezium, you can efficiently capture inserts, updates, and deletes from your databases.

This enables a wide array of real-time use cases, from data synchronization and analytics to event sourcing and microservice communication. Understanding CDC is key to building responsive, data-driven applications with Kafka.

คำถามที่พบบ่อย

บทเรียน “การดักจับการเปลี่ยนแปลงข้อมูล (CDC)” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “การดักจับการเปลี่ยนแปลงข้อมูล (CDC)” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Apache Kafka & Stream Processing Fundamentals ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Apache Kafka & Stream Processing Fundamentals มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “การดักจับการเปลี่ยนแปลงข้อมูล (CDC)”

ใช้ Kafka สำหรับการดักจับการเปลี่ยนแปลงข้อมูล เพื่อสตรีมการเปลี่ยนแปลงของฐานข้อมูลแบบเรียลไทม์สำหรับกรณีการใช้งานต่าง ๆ คุณปฏิบัติ Apache Kafka & Stream Processing Fundamentals ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Apache Kafka & Stream Processing Fundamentals หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน Apache Kafka & Stream Processing Fundamentals บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน

บทเรียน “การดักจับการเปลี่ยนแปลงข้อมูล (CDC)” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน Apache Kafka & Stream Processing Fundamentals นี้ได้ไหม

ได้ บทเรียน Apache Kafka & Stream Processing Fundamentals ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. การสร้างแหล่งเหตุการณ์ด้วย Kafka
  2. การดักจับการเปลี่ยนแปลงข้อมูล (CDC)
  3. รูปแบบการสื่อสารของไมโครเซอร์วิส
  4. รูปแบบเอาต์บ็อกซ์สำหรับการเผยแพร่เหตุการณ์ที่เชื่อถือได้
← กลับไปที่ Apache Kafka & Stream Processing Fundamentals