Skip to content

Commit

Permalink
♻️ refactor(cdc): add a new line between the ordered list
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafaghadimi committed Jun 5, 2024
1 parent 6bcd2e3 commit e53f421
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ CDC (Change Data Capture) is a data management technique used to identify and tr

### How CDC Works
**1. Capture:** CDC monitors a source database for changes. Different methods can be used to capture changes, such as transaction log scanning, triggers, or timestamps.

**2. Record:** Once changes are detected, CDC records them in a staging area or a log table. This record includes the type of change (insert, update, or delete) and the specific data fields that were affected.

**3. Process:** The recorded changes are processed and transformed according to the needs of the target system or application. This might involve filtering, mapping, or other forms of transformation.

**4. Deliver:** Finally, the processed changes are delivered to the target system, which could be a data warehouse, another database, or a message queue for further processing.

### Methods of CDC Implementation
Expand Down Expand Up @@ -57,4 +60,4 @@ CDC is crucial in data management strategies that require timely and accurate da
- [What is Change Data Capture?](https://medium.com/@andrew.macconnell/using-change-data-capture-9548ff7b41e3)
- [Change Data Capture (CDC): What it is and How it Works](https://www.striim.com/blog/change-data-capture-cdc-what-it-is-and-how-it-works/)
- [Why Change Data Capture?](https://www.confluent.io/learn/change-data-capture/)
- [Change Data Capture](https://www.qlik.com/us/change-data-capture/cdc-change-data-capture)
- [Change Data Capture](https://www.qlik.com/us/change-data-capture/cdc-change-data-capture)

0 comments on commit e53f421

Please sign in to comment.