Deploy the HTAP Storage Engine Tiflash for an Existing TiDB Cluster

    This document is applicable to scenarios in which you already have a TiDB cluster and need to use TiDB HTAP capabilities by deploying TiFlash, such as the following:

    • Hybrid workload scenarios with online real-time analytic processing
    • Real-time stream processing scenarios
    • Data hub scenarios

    If you need to deploy TiFlash for an existing TiDB cluster, do the following:

    Note

    If your server does not have an external network, you can download the required Docker image on the machine with an external network, upload the Docker image to your server, and then use to install the Docker image on the server. For details, see deploy the TiDB cluster.

    1. Edit the TidbCluster Custom Resource (CR):

    2. Add the TiFlash configuration as the following example:

      1. spec:
      2. tiflash:
      3. # To deploy the enterprise edition of TiFlash, change the value of `baseImage` to `pingcap/tiflash-enterprise`.
      4. baseImage: pingcap/tiflash
      5. maxFailoverCount: 0
      6. replicas: 1
      7. storageClaims:
      8. - resources:
      9. requests:
      10. storage: 100Gi
      11. storageClassName: local-storage
    3. TiFlash supports mounting multiple Persistent Volumes (PVs). If you want to configure multiple PVs for TiFlash, configure multiple resources in tiflash.storageClaims, each resources with a separate requests.storage and storageClassName. For example:

      1. tiflash:
      2. baseImage: pingcap/tiflash
      3. maxFailoverCount: 0
      4. replicas: 1
      5. storageClaims:
      6. - resources:
      7. requests:
      8. storage: 100Gi
      9. storageClassName: local-storage
      10. - resources:
      11. requests:
      12. storageClassName: local-storage
    4. Configure the relevant parameters of spec.tiflash.config in TidbCluster CR. For example:

      1. spec:
      2. tiflash:
      3. config:
      4. config: |
      5. [flash]
      6. [flash.flash_cluster]
      7. log = "/data0/logs/flash_cluster_manager.log"
      8. [logger]
      9. count = 10
      10. level = "information"
      11. errorlog = "/data0/logs/error.log"
      12. log = "/data0/logs/server.log"

      For more TiFlash parameters that can be configured, refer to .

      Deploy TiFlash to Explore TiDB HTAP - 图2Note

      For different TiFlash versions, note the following configuration differences:

      • If TiFlash version <= v4.0.4, you need to set spec.tiflash.config.config.flash.service_addr to ${clusterName}-tiflash-POD_NUM.${clusterName}-tiflash-peer.${namespace}.svc:3930 in TidbCluster CR, where ${clusterName} and ${namespace} need to be replaced according to the real case.
      • If TiFlash version >= v4.0.5, there is no need to manually configure spec.tiflash.config.config.flash.service_addr.
      • If you upgrade from TiFlash v4.0.4 or an earlier version to TiFlash v4.0.5 or a later version, you need to delete the configuration of spec.tiflash.config.config.flash.service_addr from the TidbCluster CR.
    1. Edit the TidbCluster Custom Resource (CR).

      1. kubectl edit tc ${cluster_name} -n ${namespace}
    2. TiDB Operator automatically mounts PVs in the order of the items in the storageClaims list. If you need to add more resources items to TiFlash, make sure to append new items only to the end of the original items, and DO NOT modify the order of the original items. For example:

      1. tiflash:
      2. baseImage: pingcap/tiflash
      3. maxFailoverCount: 0
      4. replicas: 1
      5. - resources:
      6. requests:
      7. storage: 100Gi
      8. storageClassName: local-storage
      9. - resources:
      10. storage: 100Gi
      11. storageClassName: local-storage
      12. - resources: #newly added
      13. requests: #newly added
      14. storage: 100Gi #newly added
      15. storageClassName: local-storage #newly added
    3. Manually delete the TiFlash StatefulSet by running the following command. Then, wait for the TiDB Operator to recreate the TiFlash StatefulSet.

    If your TiDB cluster no longer needs the TiDB HTAP storage engine TiFlash, take the following steps to remove TiFlash:

    1. Adjust the number of replicas of the tables replicated to the TiFlash cluster.

      To completely remove TiFlash, you need to set the number of replicas of all tables replicated to the TiFlash to 0.

      1. To connect to the TiDB service, refer to the steps in Access the TiDB Cluster in Kubernetes.

      2. To adjust the number of replicas of the tables replicated to the TiFlash cluster, run the following command:

        1. alter table <db_name>.<table_name> set tiflash replica 0;
    2. Wait for the TiFlash replicas of the related tables to be deleted.

      Connect to the TiDB service and run the following command. If you can not find the replication information of the related tables, it means that the replicas are deleted:

      1. SELECT * FROM information_schema.tiflash_replica WHERE TABLE_SCHEMA = '<db_name>' and TABLE_NAME = '<table_name>';
    3. To remove TiFlash Pods, run the following command to modify spec.tiflash.replicas to 0:

      1. kubectl patch tidbcluster ${cluster_name} -n ${namespace} --type merge -p '{"spec":{"tiflash":{"replicas": 0}}}
    4. Check the state of TiFlash Pods and TiFlash stores.

        1. kubectl get pod -n ${namespace} -l app.kubernetes.io/component=tiflash,app.kubernetes.io/instance=${cluster_name}

        If the output is empty, it means that you delete the Pod of the TiFlash cluster successfully.

      1. To check whether the stores of the TiFlash are in the Tombstone state, run the following command:

        1. kubectl get tidbcluster ${cluster_name} -n ${namespace} -o yaml

        The value of the status.tiflash field in the output result is similar to the example below.

        Only after you delete all Pods of the TiFlash cluster successfully and all the TiFlash stores have changed to the Tombstone state, can you perform the next operation.

    5. Delete the TiFlash StatefulSet.

      1. To modify the TidbCluster CR and delete the spec.tiflash field, run the following command:

        1. kubectl patch tidbcluster ${cluster_name} -n ${namespace} --type json -p '[{"op":"remove", "path":"/spec/tiflash"}]'
      2. To delete the TiFlash StatefulSet, run the following command:

        1. kubectl delete statefulsets -n ${namespace} -l app.kubernetes.io/component=tiflash,app.kubernetes.io/instance=${cluster_name}
      3. To check whether you delete the StatefulSet of the TiFlash cluster successfully, run the following command:

        1. kubectl get sts -n ${namespace} -l app.kubernetes.io/component=tiflash,app.kubernetes.io/instance=${cluster_name}

        If the output is empty, it means that you delete the StatefulSet of the TiFlash cluster successfully.

    6. (Optional) Delete PVC and PV.

      If you confirm that you do not use the data in TiFlash, and you want to delete the data, you need to strictly follow the steps below to delete the data in TiFlash:

      1. Delete the PVC object corresponding to the PV

        1. kubectl delete pvc -n ${namespace} -l app.kubernetes.io/component=tiflash,app.kubernetes.io/instance=${cluster_name}
      2. If the PV reclaim policy is Retain, the corresponding PV is still retained after you delete the PVC object. If you want to delete the PV, you can set the reclaim policy of the PV to Delete, and the PV can be deleted and recycled automatically.

        1. kubectl patch pv ${pv_name} -p '{"spec":{"persistentVolumeReclaimPolicy":"Delete"}}'

        In the above command, represents the PV name of the TiFlash cluster. You can check the PV name by running the following command: