Hybrid Deployment Topology

This document describes the topology and key parameters of the TiKV and TiDB hybrid deployment.

The hybrid deployment is usually used in the following scenario:

The deployment machine has multiple CPU processors with sufficient memory. To improve the utilization rate of the physical machine resources, multiple instances can be deployed on a single machine, that is, TiDB and TiKV’s CPU resources are isolated through NUMA node bindings. PD and Prometheus are deployed together, but their data directories need to use separate file systems.

Topology information

InstanceCountPhysical machine configurationIPConfiguration
TiDB632 VCore 64GB10.0.1.1
10.0.1.2
10.0.1.3
Configure NUMA to bind CPU cores
PD316 VCore 32 GB10.0.1.4
10.0.1.5
10.0.1.6
Configure the location_labels parameter
TiKV632 VCore 64GB10.0.1.7
10.0.1.8
10.0.1.9
1. Separate the instance-level port and status_port;
2. Configure the global parameters readpool, storage and raftstore;
3. Configure labels of the instance-level host;
4. Configure NUMA to bind CPU cores
Monitoring & Grafana14 VCore 8GB * 1 500GB (ssd)10.0.1.10Default configuration

Topology templates

For detailed descriptions of the configuration items in the above TiDB cluster topology file, see Topology Configuration File for Deploying TiDB Using TiUP.

Key parameters

This section introduces the key parameters when you deploy multiple instances on a single machine, which is mainly used in scenarios when multiple instances of TiDB and TiKV are deployed on a single machine. You need to fill in the results into the configuration template according to the calculation methods provided below.

  • Optimize the configuration of TiKV

    • To configure readpool to be self-adaptive to the thread pool. By configuring the readpool.unified.max-thread-count parameter, you can make readpool.storage and readpool.coprocessor share a unified thread pool, and set the self-adaptive switch respectively.

      • Enable readpool.storage and readpool.coprocessor:

        1. readpool.storage.use-unified-pool: true
        2. readpool.coprocessor.use-unified-pool: true
      • The calculation method:

        1. readpool.unified.max-thread-count = cores * 0.8 / the number of TiKV instances
    • To configure the storage CF (all RocksDB column families) to be self-adaptive to memory. By configuring the storage.block-cache.capacity parameter, you can make CF automatically balance the memory usage.

      • The calculation method:

        1. storage.block-cache.capacity = (MEM_TOTAL * 0.5 / the number of TiKV instances)
    • If multiple TiKV instances are deployed on the same physical disk, add the capacity parameter in the TiKV configuration:

      1. raftstore.capacity = disk total capacity / the number of TiKV instances
  • The label scheduling configuration

    Since multiple instances of TiKV are deployed on a single machine, if the physical machines go down, the Raft Group might lose two of the default three replicas, which causes the cluster unavailability. To address this issue, you can use the label to enable the smart scheduling of PD, which ensures that the Raft Group has more than two replicas in multiple TiKV instances on the same machine.

    • The TiKV configuration

      The same host-level label information is configured for the same physical machine:

      1. config:
      2. server.labels:
      3. host: tikv1
    • The PD configuration

      To enable PD to identify and scheduling Regions, configure the labels type for PD:

      1. pd:
      2. replication.location-labels: ["host"]
  • numa_node core binding

    • In the instance parameter module, configure the corresponding numa_node parameter and add the number of CPU cores.

    • Before using NUMA to bind cores, make sure that the numactl tool is installed, and confirm the information of CPUs in the physical machines. After that, configure the parameters.

    • The numa_node parameter corresponds to the numactl --membind configuration.

Hybrid Topology - 图1

Note

  • When editing the configuration file template, modify the required parameter, IP, port, and directory.
  • Each component uses the global <deploy_dir>/<components_name>-<port> as their deploy_dir by default. For example, if TiDB specifies the 4001 port, its deploy_dir is /tidb-deploy/tidb-4001 by default. Therefore, in multi-instance scenarios, when specifying a non-default port, you do not need to specify the directory again.
  • You do not need to manually create the tidb user in the configuration file. The TiUP cluster component automatically creates the tidb user on the target machines. You can customize the user, or keep the user consistent with the control machine.
  • If you configure the deployment directory as a relative path, the cluster will be deployed in the home directory of the user.