📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

Continuous Data Pipelines



Build end-to-end change data capture (CDC) flows in TiDB Cloud Lake with two primitives:

  • Streams capture every INSERT/UPDATE/DELETE until you consume them.
  • Tasks run SQL on a schedule or when a stream reports new rows.

Quick Navigation

Why CDC in TiDB Cloud Lake

  • Lightweight – streams keep the latest change set without duplicating full tables.
  • Transactional – stream consumption succeeds or rolls back with your SQL statement.
  • Incremental – rerun the same query with WITH CONSUME to process only new rows.
  • Schedulable – tasks let you automate the copy, merge, or alert logic you already expressed in SQL.

Dive into the stream examples first, then combine them with tasks to automate your pipeline.

Was this page helpful?