Sign In Try Free

Deploy TiCDC on Kubernetes

TiCDCis a tool for replicating the incremental data of TiDB. This document describes how to deploy TiCDC on Kubernetes using TiDB Operator.

You can deploy TiCDC when deploying a new TiDB cluster, or add the TiCDC component to an existing TiDB cluster.

Prerequisites

TiDB操作符deployed.

Fresh TiCDC deployment

To deploy TiCDC when deploying the TiDB cluster, refer toDeploy TiDB on General Kubernetes.

Add TiCDC to an existing TiDB cluster

  1. 编辑TidbClusterCustom Resource:

    
                    
    kubectl edit tc${cluster_name}-n${namespace}
  2. Add the TiCDC configuration as follows:

    
                    
    spec: ticdc: baseImage: pingcap/ticdc replicas: 3
  3. Mount persistent volumes (PVs) for TiCDC。

    TiCDC supports mounting multiple PV. It is recommended that you plan the number of PVs required when deploying TiCDC for the first time. For more information, refer toMultiple disks mounting

  4. After the deployment, enter a TiCDC Pod by runningkubectl exec:

    
                    
    kubectlexec-it${pod_name}-n${namespace}-- sh
  5. Manage the cluster and data replication tasksby usingcdc cli.

    
                    
    # The default port for TiCDC server deployed through TiDB operator is 8301/cdc cli capture list --server=http://127.0.0.1:8301
    
                    
    [ {"id":"3ed24f6c-22cf-446f-9fe0-bf4a66d00f5b","is-owner":false,"address":"${cluster_name}-ticdc-2.${cluster_name}-ticdc-peer.${namespace}.svc:8301"}, {"id":"60e98ed7-cd49-45f4-b5ae-d3b85ba3cd96","is-owner":false,"address":"${cluster_name}-ticdc-0.${cluster_name}-ticdc-peer.${namespace}.svc:8301"}, {"id":"dc3592c0-dace-42a0-8afc-fb8506e8271c","is-owner":true,"address":"${cluster_name}-ticdc-1.${cluster_name}-ticdc-peer.${namespace}.svc:8301"} ]

    从v4.0.3, TiCDC supports TLS. TiDB Operator supports enabling TLS for TiCDC since v1.1.3.

    If TLS is enabled when you create the TiDB cluster, add TLS certificate-related parameters when you usecdc cli.

    
                    
    /cdc cli capture list --server=http://127.0.0.1:8301 --ca=/var/lib/cluster-client-tls/ca.crt --cert=/var/lib/cluster-client-tls/tls.crt --key=/var/lib/cluster-client-tls/tls.key

    If the server does not have an external network, refer todeploy TiDB clusterto download the required Docker image on the machine with an external network and upload it to the server.

Download PDF Request docs changes Ask questions on Discord
Playground
New
One-stop & interactive experience of TiDB's capabilities WITHOUT registration.
Was this page helpful?
Products
TiDB
TiDB Dedicated
TiDB Serverless
Pricing
Get Demo
Get Started
©2023PingCAP. All Rights Reserved.