TiCDC pulls change logs from TiDB clusters and pushes them to downstream systems, such as MySQL, TiDB, Kafka, Pulsar, and Object Storages (e.g., S3). Beginning from v9.0, we use this repository to build TiCDC instead of the old repository tiflow. The new TiCDC in this repository has undergone a complete architectural redesign while retaining the same user interface. The architectural upgrade primarily aims to address certain drawbacks of TiCDC and propel it forward.
- Better scalability. E.g. support over 1 million tables.
- More efficiency. Use less machine resource to support large volume.
- Better maintainability. E.g. simpler and human readable code, clear code module, and open to extensions.
- Cloud native architecture. We want to design a new architecture from the ground to support the cloud.
Go to pingcap/ticdc/tags to find the latest tag, e.g. v9.0.0-alpha
- For Linux: https://tiup-mirrors.pingcap.com/cdc-v9.0.0-alpha-nightly-linux-amd64.tar.gz
- For MacOS: https://tiup-mirrors.pingcap.com/cdc-v9.0.0-alpha-nightly-darwin-amd64.tar.gz
Examples:
# Scale out some old version TiCDC nodes, if you don't already have some
tiup cluster scale-out test_cluster scale-out.yml
#scale-out.yml
#cdc_servers:
# - host: 172.31.10.1
# Patch the new arch TiCDC to the cluster
tiup cluster patch --overwrite test_cluster cdc-v9.0.0-alpha-nightly-linux-amd64.tar.gz -R cdc
# Enable the new architectural TiCDC by setting the "newarch" parameter
tiup cluster edit-config test_cluster
#cdc_servers:
# ...
# config:
# newarch: true
tiup cluster reload test_cluster -R cdc
Download ticdc_new_arch.json, and use the import button.
TiCDC can be built on the following operating systems:
- Linux
- MacOS
Install GoLang 1.23.2
# Linux
wget https://go.dev/dl/go1.23.2.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.23.2.linux-amd64.tar.gz
# MacOS
curl -O https://go.dev/dl/go1.23.2.darwin-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.23.2.darwin-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
- Download the code
git clone [email protected]:pingcap/ticdc.git
cd ticdc
- Build TiCDC
make cdc
# Generate the patchable tar file
cd bin
tar -czf newarch_cdc.tar.gz cdc