数据分片

ClickHouse 中每个服务器节点都可以被称为一个 shard(分片)。 假设有 N 台服务器,每个服务器上都有一张数据表 A,且每个服务器上的 数据表 A 的数据不重复,那么就可以说数据表 A 拥有 N 的分片。

对于一个完整的方案来说,还要考虑在数据写入时如何被均匀低写到各个分片中,以及数据在查询时如何路由到每个分片,组合成结果集。

ClickHouse 的数据分片需要结合 DIstributed 表引擎一起使用。DIstributed 表引擎本身不存储任何数据,它能够作为分布式表的一层代理,在集群内部自动展开数据写入、分发、查询、路由等工作。

【Clickhouse】副本与分片(二) - 图1

集群的配置方式

在 ClickHouse 中集群配置用 shard 代表分配,replica 代表副本。

1 分片,0 副本配置:

  1. <shard> <!--分片-->
  2. <replica> <!--副本-->
  3. </replica>
  4. </shard>

1 分片,1 副本配置:

  1. <shard> <!--分片-->
  2. <replica> <!--副本-->
  3. </replica>
  4. <replica> <!--副本-->
  5. </replica>
  6. </shard>

ClickHouse 集群有两种配置方式。

不包含副本的分片

如果直接使用 node 标签定义分配节点,那么该节点质保函分配,不包含副本,配置如下:

  1. <yandex>
  2. <!-- 自定义配置名称,与 conf.xml 配置的 include 属性相同即可 -->
  3. <clickhouse_remote_servers>
  4. <shard_1> <!--自定义集群名称-->
  5. <node> <!--自定义 clickhouse 节点-->
  6. <!--必填参数-->
  7. <host>node3</host>
  8. <port>9977</port>
  9. <!--选填参数-->
  10. <weight>1</weight>
  11. <user>default</user>
  12. <password></password>
  13. <secure></secure>
  14. <compression></compression>
  15. </node>
  16. <node>
  17. <host>node2</host>
  18. <port>9977</port>
  19. </node>
  20. </shard_1>
  21. </clickhouse_remote_servers>
  22. </yandex>
  23. <!-- 配置定义了一个名为 shard_1 的集群,包含了两个节点 node3、node2 -->

配置项说明:

配置 说明
shard_1 自定义集群名称,全局唯一,是后续引用集群配置的唯一标识
node 用于定义节点,不包含副本
host ClickHouse 节点服务器地址
port ClickHouse 服务的 tcp 端口
weight 分片权重,默认为 1
user ClickHouse 用户,默认为 default
password ClickHouse 的用户密码,默认为空字符
secure SSL 连接端口,默认 9440
compression 是否要开启数据压缩功能,默认 true

自定义副本和分片

集群配置支持自定义分配和副本的数量,这种形式需要使用 shard 标签代替前面配置的 node 标签,除此之外的配置完全相同。

配置自定义副本和分片时,副本和分片的数量完全交给由配置所决定。其中 shard 表示逻辑上的数据分片,而物理上的分片则用 replica 表示。如果在一个 shard 标签下定义 N 组 replica,则该 shard 的语义表示 1 个分片和 N-1 个副本。

不包含副本的分片:

  1. <!-- 2 分片,0 副本-->
  2. <sharding_simple> <!-- 集群自定义名称 -->
  3. <shard> <!-- 分片 -->
  4. <replica> <!-- 副本 -->
  5. <host>node3</host>
  6. <port>9977</port>
  7. </replica>
  8. </shard>
  9. <shard>
  10. <replica>
  11. <host>node2</host>
  12. <port>9977</port>
  13. </replica>
  14. </shard>
  15. </sharding_simple>

可以根据自己的需求,配置副本与分片的组合(N 分片和 N 副本):

  1. <!-- 1 分片,1 副本-->
  2. <sharding_simple> <!-- 集群自定义名称 -->
  3. <shard> <!-- 分片 -->
  4. <replica> <!-- 副本 -->
  5. <host>node3</host>
  6. <port>9977</port>
  7. </replica>
  8. <replica>
  9. <host>node2</host>
  10. <port>9977</port>
  11. </replica>
  12. </shard>
  13. </sharding_simple>
  14. <!-- 2 分片,1 副本-->
  15. <sharding_simple> <!-- 集群自定义名称 -->
  16. <shard> <!-- 分片 -->
  17. <replica> <!-- 副本 -->
  18. <host>node3</host>
  19. <port>9977</port>
  20. </replica>
  21. <replica>
  22. <host>node2</host>
  23. <port>9977</port>
  24. </replica>
  25. </shard>
  26. <shard> <!-- 分片 -->
  27. <replica> <!-- 副本 -->
  28. <host>node4</host>
  29. <port>9977</port>
  30. </replica>
  31. <replica>
  32. <host>node5</host>
  33. <port>9977</port>
  34. </replica>
  35. </shard>
  36. </sharding_simple>
  37. <!-- 集群部署中,副本数量的上线是 clickhouse 节点的数量决定的 -->

在 ClickHouse 中给我们配置了一些示例,可以打开配置文件看一下:

  1. <remote_servers>
  2. <!-- Test only shard config for testing distributed storage -->
  3. <test_shard_localhost>
  4. <!-- Inter-server per-cluster secret for Distributed queries
  5. default: no secret (no authentication will be performed)
  6. If set, then Distributed queries will be validated on shards, so at least:
  7. - such cluster should exist on the shard,
  8. - such cluster should have the same secret.
  9. And also (and which is more important), the initial_user will
  10. be used as current user for the query.
  11. Right now the protocol is pretty simple and it only takes into account:
  12. - cluster name
  13. - query
  14. Also it will be nice if the following will be implemented:
  15. - source hostname (see interserver_http_host), but then it will depends from DNS,
  16. it can use IP address instead, but then the you need to get correct on the initiator node.
  17. - target hostname / ip address (same notes as for source hostname)
  18. - time-based security tokens
  19. -->
  20. <!-- <secret></secret> -->
  21. <shard>
  22. <!-- Optional. Whether to write data to just one of the replicas. Default: false (write data to all replicas). -->
  23. <!-- <internal_replication>false</internal_replication> -->
  24. <!-- Optional. Shard weight when writing data. Default: 1. -->
  25. <!-- <weight>1</weight> -->
  26. <replica>
  27. <host>localhost</host>
  28. <port>9000</port>
  29. <!-- Optional. Priority of the replica for load_balancing. Default: 1 (less value has more priority). -->
  30. <!-- <priority>1</priority> -->
  31. </replica>
  32. </shard>
  33. </test_shard_localhost>
  34. <test_cluster_two_shards_localhost>
  35. <shard>
  36. <replica>
  37. <host>localhost</host>
  38. <port>9000</port>
  39. </replica>
  40. </shard>
  41. <shard>
  42. <replica>
  43. <host>localhost</host>
  44. <port>9000</port>
  45. </replica>
  46. </shard>
  47. </test_cluster_two_shards_localhost>
  48. <!-- 配置 2 个分配,0 副本 -->
  49. <test_cluster_two_shards>
  50. <shard>
  51. <replica>
  52. <host>127.0.0.1</host>
  53. <port>9000</port>
  54. </replica>
  55. </shard>
  56. <shard>
  57. <replica>
  58. <host>127.0.0.2</host>
  59. <port>9000</port>
  60. </replica>
  61. </shard>
  62. </test_cluster_two_shards>
  63. <!--2 分片,0 副本-->
  64. <test_cluster_two_shards_internal_replication>
  65. <shard>
  66. <internal_replication>true</internal_replication>
  67. <replica>
  68. <host>127.0.0.1</host>
  69. <port>9000</port>
  70. </replica>
  71. </shard>
  72. <shard>
  73. <internal_replication>true</internal_replication>
  74. <replica>
  75. <host>127.0.0.2</host>
  76. <port>9000</port>
  77. </replica>
  78. </shard>
  79. </test_cluster_two_shards_internal_replication>
  80. <!--1分片 0 副本,权重设为 1-->
  81. <test_shard_localhost_secure>
  82. <shard>
  83. <replica>
  84. <host>localhost</host>
  85. <port>9440</port>
  86. <secure>1</secure>
  87. </replica>
  88. </shard>
  89. </test_shard_localhost_secure>
  90. <test_unavailable_shard>
  91. <shard>
  92. <replica>
  93. <host>localhost</host>
  94. <port>9000</port>
  95. </replica>
  96. </shard>
  97. <shard>
  98. <replica>
  99. <host>localhost</host>
  100. <port>1</port>
  101. </replica>
  102. </shard>
  103. </test_unavailable_shard>
  104. <!-- 手动添加新的集群 -->
  105. <two_shard>
  106. <shard>
  107. <replica>
  108. <host>node3</host>
  109. <port>9977</port>
  110. </replica>
  111. </shard>
  112. <shard>
  113. <replica>
  114. <host>node2</host>
  115. <port>9977</port>
  116. </replica>
  117. </shard>
  118. </two_shard>
  119. </remote_servers>

在 system.clusters 中查看配置情况:

  1. SELECT cluster, host_name FROM system.clusters;
  2. -- ┌─cluster──────────────────────────────────────┬─host_name─┐
  3. -- test_cluster_two_shards 127.0.0.1
  4. -- test_cluster_two_shards 127.0.0.2
  5. -- test_cluster_two_shards_internal_replication 127.0.0.1
  6. -- test_cluster_two_shards_internal_replication 127.0.0.2
  7. -- test_cluster_two_shards_localhost localhost
  8. -- test_cluster_two_shards_localhost localhost
  9. -- test_shard_localhost localhost
  10. -- test_shard_localhost_secure localhost
  11. -- test_unavailable_shard localhost
  12. -- test_unavailable_shard localhost
  13. -- └──────────────────────────────────────────────┴───────────┘

在每个节点的 config 配置文件中可以增加变量配置:

  1. # node3
  2. vim /etc/clickhouse-server/config.xml
  3. # 增加如下内容
  4. # <macros>
  5. # <shard>01</shard>
  6. # <replica>node3</replica>
  7. # </macros>
  8. # node2
  9. vim /etc/clickhouse-server/config.xml
  10. # 增加如下内容
  11. # <macros>
  12. # <shard>02</shard>
  13. # <replica>node2</replica>
  14. # </macros>

进入 ClickHouse 命令行查看变量是否配置成功:

  1. SELECT * FROM system.macros;
  2. -- 查看远端节点的数据
  3. SELECT * FROM remote('node2:9977', 'system', 'macros', 'default')

副本同步方式

配置文件说明

如果所有配置都放在 config.xml 文件中,那么这个文件会非常长非常大,修改起来也非常难找,因此 ClickHouse 是将基本设置、集群设置、用户设置等分开的,然后通过 include 参数将集群和用户设置引入基本配置文件中。

/etc/ClickHouse-server/config.xml 端口配置、本地机器名配置、内存设置等:

  1. <?xml version="1.0"?>
  2. <yandex>
  3. <!-- 日志 -->
  4. <logger>
  5. <level>trace</level>
  6. <log>/data1/clickhouse/log/server.log</log>
  7. <errorlog>/data1/clickhouse/log/error.log</errorlog>
  8. <size>1000M</size>
  9. <count>10</count>
  10. </logger>
  11. <!-- 端口 -->
  12. <http_port>8123</http_port>
  13. <tcp_port>9000</tcp_port>
  14. <interserver_http_port>9009</interserver_http_port>
  15. <!-- 本机域名 -->
  16. <interserver_http_host>这里需要用域名,如果后续用到复制的话</interserver_http_host>
  17. <!-- 监听IP -->
  18. <listen_host>0.0.0.0</listen_host>
  19. <!-- 最大连接数 -->
  20. <max_connections>64</max_connections>
  21. <!-- 没搞懂的参数 -->
  22. <keep_alive_timeout>3</keep_alive_timeout>
  23. <!-- 最大并发查询数 -->
  24. <max_concurrent_queries>16</max_concurrent_queries>
  25. <!-- 单位是B -->
  26. <uncompressed_cache_size>8589934592</uncompressed_cache_size>
  27. <mark_cache_size>10737418240</mark_cache_size>
  28. <!-- 存储路径 -->
  29. <path>/data1/clickhouse/</path>
  30. <tmp_path>/data1/clickhouse/tmp/</tmp_path>
  31. <!-- user配置 -->
  32. <users_config>users.xml</users_config>
  33. <default_profile>default</default_profile>
  34. <log_queries>1</log_queries>
  35. <default_database>default</default_database>
  36. <remote_servers incl="clickhouse_remote_servers"/>
  37. <zookeeper incl="zookeeper-servers" optional="true"/>
  38. <macros incl="macros" optional="true"/>
  39. <!-- 没搞懂的参数 -->
  40. <builtin_dictionaries_reload_interval>3600</builtin_dictionaries_reload_interval>
  41. <!-- 控制大表的删除 -->
  42. <max_table_size_to_drop>0</max_table_size_to_drop>
  43. <include_from>/data1/clickhouse/metrika.xml</include_from>
  44. </yandex>

/etc/ClickHouse-server/metrika.xml 集群配置、ZK配置、分片配置等:

  1. <yandex>
  2. <!-- 集群配置 -->
  3. <clickhouse_remote_servers>
  4. <!-- 集群名称-->
  5. <bip_ck_cluster>
  6. <shard>
  7. <internal_replication>false</internal_replication>
  8. <replica>
  9. <host>ck1.xxxx.com.cn</host>
  10. <port>9000</port>
  11. <user>default</user>
  12. <password>******</password>
  13. </replica>
  14. <replica>
  15. <host>ck2.xxxx.com.cn</host>
  16. <port>9000</port>
  17. <user>default</user>
  18. <password>******</password>
  19. </replica>
  20. </shard>
  21. <shard>
  22. <internal_replication>false</internal_replication>
  23. <replica>
  24. <host>ck2.xxxx.com.cn</host>
  25. <port>9000</port>
  26. <user>default</user>
  27. <password>******</password>
  28. </replica>
  29. <replica>
  30. <host>ck3.xxxxa.com.cn</host>
  31. <port>9000</port>
  32. <user>default</user>
  33. <password>******</password>
  34. </replica>
  35. </shard>
  36. <shard>
  37. <internal_replication>false</internal_replication>
  38. <replica>
  39. <host>ck3.xxxxa.com.cn</host>
  40. <port>9000</port>
  41. <user>default</user>
  42. <password>******</password>
  43. </replica>
  44. <replica>
  45. <host>ck1.xxxx.com.cn</host>
  46. <port>9000</port>
  47. <user>default</user>
  48. <password>******</password>
  49. </replica>
  50. </shard>
  51. </bip_ck_cluster>
  52. </clickhouse_remote_servers>
  53. <!-- 本节点副本名称(这里无用) -->
  54. <macros>
  55. <replica>ck1</replica>
  56. </macros>
  57. <!-- 监听网络(貌似重复) -->
  58. <networks>
  59. <ip>::/0</ip>
  60. </networks>
  61. <!-- ZK -->
  62. <zookeeper-servers>
  63. <node index="1">
  64. <host>1.xxxx.sina.com.cn</host>
  65. <port>2181</port>
  66. </node>
  67. <node index="2">
  68. <host>2.xxxx.sina.com.cn</host>
  69. <port>2181</port>
  70. </node>
  71. <node index="3">
  72. <host>3.xxxxp.sina.com.cn</host>
  73. <port>2181</port>
  74. </node>
  75. </zookeeper-servers>
  76. <!-- 数据压缩算法 -->
  77. <clickhouse_compression>
  78. <case>
  79. <min_part_size>10000000000</min_part_size>
  80. <min_part_size_ratio>0.01</min_part_size_ratio>
  81. <method>lz4</method>
  82. </case>
  83. </clickhouse_compression>
  84. </yandex>

/etc/ClickHouse-server/users.xml 权限、配额设置:

  1. <?xml version="1.0"?>
  2. <yandex>
  3. <profiles>
  4. <!-- 读写用户设置 -->
  5. <default>
  6. <max_memory_usage>10000000000</max_memory_usage>
  7. <use_uncompressed_cache>0</use_uncompressed_cache>
  8. <load_balancing>random</load_balancing>
  9. </default>
  10. <!-- 只写用户设置 -->
  11. <readonly>
  12. <max_memory_usage>10000000000</max_memory_usage>
  13. <use_uncompressed_cache>0</use_uncompressed_cache>
  14. <load_balancing>random</load_balancing>
  15. <readonly>1</readonly>
  16. </readonly>
  17. </profiles>
  18. <!-- 配额 -->
  19. <quotas>
  20. <!-- Name of quota. -->
  21. <default>
  22. <interval>
  23. <duration>3600</duration>
  24. <queries>0</queries>
  25. <errors>0</errors>
  26. <result_rows>0</result_rows>
  27. <read_rows>0</read_rows>
  28. <execution_time>0</execution_time>
  29. </interval>
  30. </default>
  31. </quotas>
  32. <users>
  33. <!-- 读写用户 -->
  34. <default>
  35. <password_sha256_hex>967f3bf355dddfabfca1c9f5cab39352b2ec1cd0b05f9e1e6b8f629705fe7d6e</password_sha256_hex>
  36. <networks incl="networks" replace="replace">
  37. <ip>::/0</ip>
  38. </networks>
  39. <profile>default</profile>
  40. <quota>default</quota>
  41. </default>
  42. <!-- 只读用户 -->
  43. <ck>
  44. <password_sha256_hex>967f3bf355dddfabfca1c9f5cab39352b2ec1cd0b05f9e1e6b8f629705fe7d6e</password_sha256_hex>
  45. <networks incl="networks" replace="replace">
  46. <ip>::/0</ip>
  47. </networks>
  48. <profile>readonly</profile>
  49. <quota>default</quota>
  50. </ck>
  51. </users>
  52. </yandex>

使用ClickHouse内置的同步方式

ClickHouse 是可以在不借助任何外力的情况下实现表数据复制的,但是问题在于这样做的可靠性很低。为了提高可靠性,需引入 zookeeper 来守卫数据一致性。

使用 ClickHouse 内置的同步方式可以直接通过修改 config.xml 文件来实现:

  1. <remote_servers>
  2. <cluster_1st>
  3. <shard>
  4. <weight>1</weight>
  5. <internal_replication>false</internal_replication>
  6. <replica>
  7. <host>TimeMachine01</host>
  8. <port>9000</port>
  9. </replica>
  10. <replica>
  11. <host>TimeMachine02</host>
  12. <port>9000</port>
  13. </replica>
  14. </shard>
  15. <shard>
  16. <weight>1</weight>
  17. <internal_replication>false</internal_replication>
  18. <replica>
  19. <host>TimeMachine03</host>
  20. <port>9000</port>
  21. </replica>
  22. <replica>
  23. <host>TimeMachine04</host>
  24. <port>9000</port>
  25. </replica>
  26. </shard>
  27. </cluster_1st>
  28. </remote_servers>

只要设置 internal_replication 为 false,那么我们不需要任何其他的配置即可实现数据复制和同步。其实现方式是:

  1. ClickHouse 按照权重将数据分成分片数量的等份;
  2. 将对应份数据分别写入该分片中的所有备份中。

比如在上述的集群中,如果写入 100 条数据,那么 ClickHouse 会先将 100 条数据分成两份,每份 50 条。第一份的 50 条分别写入 TimeMachine01 和 TimeMachine02,第二份的 50 条数据分别写入 TimeMachine03 和 TimeMachine04。

但是这里存在的一个很严重的问题是:

  • 系统不会去校验是否分别写入成功(比如写入 01 成功,但是写入 02 失败,那就出问题了)。
  • 系统不会去校验同一分片内备份之间数据是否完全一致。

当设置 internal_replication 为 true 的时候,必须使用 zookeeper 来配合使用,也就是我们将提到的第二种方式。如果 internal_replication 为 true 但是没有使用 zookeeper 的话,虽然服务器不会报错,但是经本人测试数据会发生严重错误:

  • 比如多次查询每次查询的结果数据不相等。
  • 同一个备份里面数据出现重复等。


    使用 zookeeper 来守卫同步方式

此种同步方式是上一种的优化,将internal_replication参数设为true,需要配合 zookeeper 和 clickhouse 的 ReplicatedMergeTree 表引擎来使用,缺一不可

言而概之,第二种方式的实现逻辑如下:

  1. ClickHouse 会将数据拆成分片数量的等份,然后选择每个分片中的的某一个完好的备份写入数据(只写入一份数据);
  2. ReplicatedMergeTree 会自动同步分片内部的各备份间的数据;
  3. zookeeper 会将各分片各备份建立索引 id,不停的去检验各备份间数据的同一性(心跳模式)。

更多请参考:深入理解ClickHouse之5-ClickHouse集群的replica实现方式

基于集群实现分布式 DDL

在默认情况下,创建多张副本表需要在不同服务器上进行创建,这是因为 CREATE、DROP、RENAME 和 ALTER 等 ddl 语句不支持分布式执行,而在假如集群配置后,就可以使用新的语法实现分布式 DDL 执行了。

语法示例:

  1. CREATE / DROP / RENAME / ALTER TABLE ON CLUSTER cluster_name
  2. -- cluster_name 对应为配置文件中的汲取名称,clickhouse 会根据集群的配置,去各个节点执行 DDL 语句
  3. -- two_shard 集群 创建测试表
  4. CREATE TABLE t_shard ON CLUSTER two_shard
  5. (
  6. `id` UInt8,
  7. `name` String,
  8. `date` DateTime
  9. )
  10. ENGINE = ReplicatedMergeTree('/clickhouse/tables/{shard}/t_shard', '{replica}')
  11. PARTITION BY toYYYYMM(date)
  12. ORDER BY id
  13. ┌─host──┬─port─┬─status─┬─error─┬─num_hosts_remaining─┬─num_hosts_active─┐
  14. node2 9977 0 1 1
  15. └───────┴──────┴────────┴───────┴─────────────────────┴──────────────────┘
  16. ┌─host──┬─port─┬─status─┬─error─┬─num_hosts_remaining─┬─num_hosts_active─┐
  17. node3 9977 0 0 0
  18. └───────┴──────┴────────┴───────┴─────────────────────┴──────────────────┘
  19. -- 表引擎可以使用其他任意引擎
  20. -- {shard} {replica} 两个动态变量代替了前面的硬编码方式
  21. -- clickhouse 会根据 shard_2 的配置在 node3 node2 中创建 t_shard 数据表
  22. -- 删除 t_shard
  23. DROP TABLE t_shard ON cluster shard_2;

数据结构

zookeeper 内的节点结构:

  1. <!-- 在默认情况下,分布式 DDL 在 zookeeper 内使用的根路径由 config.xml distributed_ddl 标签配置 -->
  2. <!-- 默认为 /clickhouse/task_queue/ddl-->
  3. <distributed_ddl>
  4. <path>/clickhouse/task_queue/ddl</path>
  5. </distributed_ddl>

在此路径之下,还有一些其他监听节点,包括 /query-[seq] 这是 DDL 操作日志,每执行一次分布式 DDL 查询,该节点下就会增加一条操作日志,记录响应操作。当各个节点监听到有新的日志假如的时候,便会响应执行。

DDL 操作日志使用 zookeeper 持久化顺序节点,每条指令的名称以 query-[seq] 为前缀,后面的序号递增,在 query-[seq] 操作日志下,还有两个状态节点:

  • query-[seq]/active:用做监控状态,在执行任务的过程中,在该节点下会临时保存当前集群内状态为 active 的节点。
  • query-[seq]/finished:用于检查任务完成情况,在任务执行过程中,每当集群内的某个 host 节点执行完成之后,就会在该节点下写入记录。例如以下表示 node3, node2 两个节点已经执行完成:
    • /query-000001/finished
      • node3 : 0
      • node2 : 0

【Clickhouse】副本与分片(二) - 图2

DDLLogEntry 日志对象的数据结构:

  1. # 在 /query-[seq]下记录的信息由 DDLLogEntry 承载,它的核心属性有以下几个:
  2. version: 1
  3. query: CREATE TABLE default.t_shard UUID \'d1679b02-9eae-4766-8032-8201a2746692\' ON CLUSTER two_shard (`id` UInt8, `name` String, `date` DateTime) ENGINE = ReplicatedMergeTree(\'/clickhouse/tables/{shard}/t_shard\', \'{replica}\') PARTITION BY toYYYYMM(date) ORDER BY id
  4. hosts: ['node3:9977','node2:9977']
  5. initiator: node3%2Exy%2Ecom:9977
  6. # query:记录了 DDL 查询的执行语句
  7. # host:记录了指定集群的 hosts 主机列表,集群由分布式 DDL 语句中的 on cluster 指定,在分布式 DDL 执行过程中,会根据 hosts 列表逐个判断它们的执行状态。
  8. # initiator:记录初始 host 主机的名称,hosts 主机列表的取值来自于初始化 host 节点上的去集群

host 主机列表的取值来源等同于下面的查询:

  1. SELECT host_name
  2. FROM system.clusters
  3. WHERE cluster = 'two_shard'
  4. -- ┌─host_name─┐
  5. -- node3
  6. -- node2
  7. -- └───────────┘

分布式 DDL 的执行流程

以创建分布式表为例说明分布式 DDL 的执行流程。分布式 DDL 整个流程按照从上而下的时间顺序执行,大致分成 3 个步骤:

  1. 推送 DDL 日志:首先在 node3 节点执行 create table on cluster,同时 node3 也会创建 DDLLogEntry 日志 ,并将日志推送到 zookeeper 中,并监控任务的执行进度;
  2. 拉取日志并执行:node3、node2 两个节点分别监控到 ddl/query-[seq] 日志的推送,分别拉取日志到本地,首先会判断各自的 host 是否被包含在 DDLLogEntry 的 host 列表中,如果包含进到执行流程,执行完毕后写入 finished 节点,如果不包含,忽略;
  3. 确认执行进度:在第一步中执行 DDL 语句后,客户端会阻塞 180 秒,以期望所有 host 执行完毕,如果等待时间大于 180 秒,则会转入后台线程继续等待,等待时间由 distributed_ddl_task_timeout 参数设置,默认 180。

Distributed 原理解析

Distributed 表引擎是分布式表的代名词,他自身不存储任何数据,而是作为数据分片的代理,能够自动路由数据至集群中的各个节点,所以 DIstributed 表引擎需要和其他表引擎一起协同工作。

【Clickhouse】副本与分片(二) - 图3

从上图可以看出一张表分成了两部分:

  • 本地表:通常以 _local 后缀进行命名。本地表是承接数据的载体,可以使用非 Distributed 的任意表引擎。
  • 分布式表:通常以 _all 为后缀进行命名,分布式表只能使用 Distributed 表引擎,他们与本地表形成一对多的映射关系,以后通过分布式表代理操作多张本地表。

对于分布式表与本地表之间表结构的一致性检查,Distributed 表引擎采用了读时检查的机制,这意味着如果他们的表结构不兼容,需要在查询时才会抛出异常,而在创建表引擎时不会进行检查,不同 ClickHouse 节点上的本地表之间使用不同表引擎也是可行的,但是通常不会这么做,保持他们的结构一致,有利于后期的维护避免造成不可预计的后果。

定义形式

【Clickhouse】副本与分片(二) - 图4

Distributed 表引擎的定义形式:

  1. CREATE TABLE [IF NOT EXISTS] [db_name.]table_name on cluster cluster_name(
  2. name1 [type] [DEFAULT|MATERIALIZED|ALIAS expr],
  3. name2 [type] [DEFAULT|MATERIALIZED|ALIAS expr],
  4. ...
  5. ) ENGINE = Distributed(cluster,database,table,[sharding_key])
  6. [PARTITION BY expr]
  7. [ORDER BY expr]
  8. [PRIMARY KEY expr]
  9. [SAMPLE BY expr]
  10. [SETTINGS name=value, ...]

参数说明:

  • cluster:集群名称,与集群配置中的自定义名称相对应,在对分布式表执行写入和查询过程中,它会使用集群的配置信息来找对应的节点。
  • database:对应数据库名称。
  • table:对应数据表名称。
  • sharding_key:分片键,选填参数,在写入数据的过程中,分布式表会依据分片键的规则,将数据分布到各个本地表所在的节点中。

示例:

  1. -- 创建分布式表 t_shard_2_all 代理 two_shard 集群的 drfault.t_shard_2_local
  2. CREATE TABLE t_shard_2_all ON CLUSTER two_shard
  3. (
  4. `id` UInt8,
  5. `name` String,
  6. `date` DateTime
  7. )
  8. ENGINE = Distributed(two_shard, default, t_shard_2_local, rand())
  9. -- Query id: 83e4f090-0f7d-4892-bbf3-a094f97a6eea
  10. -- ┌─host──┬─port─┬─status─┬─error─┬─num_hosts_remaining─┬─num_hosts_active─┐
  11. -- node2 9977 0 1 1
  12. -- └───────┴──────┴────────┴───────┴─────────────────────┴──────────────────┘
  13. -- ┌─host──┬─port─┬─status─┬─error─┬─num_hosts_remaining─┬─num_hosts_active─┐
  14. -- node3 9977 0 0 0
  15. -- └───────┴──────┴────────┴───────┴─────────────────────┴──────────────────┘
  16. -- 这里用的是 on cluster 分布式 DDL 所以在 two_shard 集群中每个节点都会创建一张分布式表
  17. -- 写入数据时会根据 rand() 随机函数的取值决定写入那个分片,
  18. -- 当这时还没有创建 本地表,可以看出Distributed 是读数据时才会进行检查。
  19. -- 尝试 查询 t_shard_2_all 分布式表
  20. SELECT *
  21. FROM t_shard_2_all;
  22. -- Received exception from server (version 21.4.3):
  23. -- Code: 60. DB::Exception: Received from localhost:9977. DB::Exception: Table default.t_shard_2_local doesn t exist.
  24. -- 使用分布式 DDL 创建本地表
  25. CREATE TABLE t_shard_2_local ON CLUSTER two_shard
  26. (
  27. `id` UInt8,
  28. `name` String,
  29. `date` DateTime
  30. )
  31. ENGINE = ReplicatedMergeTree('/clickhouse/tables/{shard}/t_shard_2_local', '{replica}')
  32. PARTITION BY toYYYYMM(date)
  33. ORDER BY id
  34. -- ┌─host──┬─port─┬─status─┬─error─┬─num_hosts_remaining─┬─num_hosts_active─┐
  35. -- node3 9977 0 1 0
  36. -- node2 9977 0 0 0
  37. -- └───────┴──────┴────────┴───────┴─────────────────────┴──────────────────┘
  38. -- 尝试 查询 t_shard_2_all 分布式表
  39. SELECT *
  40. FROM t_shard_2_all;
  41. -- Query id: 5ae82696-0f07-469b-bff5-bd17dc513da7
  42. -- Ok.
  43. -- 0 rows in set. Elapsed: 0.009 sec.
  44. -- 到现在为止,拥有两个数据分配的分布式表 t_shard_2_all 就创建好了

查询的分类

分布式表的查询操作可以分为以下几类:

  • 作用于本地表的查询:对应 SELECT 和 INSERT 分布式表会以分布式的方式作用于 local 本地表。
  • 只会影响分布式表自身,不会作用于本地表的查询,分布式表支持部分元数据操作,包括 CREATE、DROP、RENAME 和 ALTER,其中 ALTER 并不包括分区的操作(ATTACH PARTITION 和 REPLACE PARTITION 等)。这些操作只会修改分布式表自身,并不会修改 local 本地表。
  • 如果想要彻底删除一张分布式表,需要分别删除分布式表和本地表。
  1. 不支持的操作,分布式表不支持任何的 MUTATION 类型的操作,包括 ALTER DELETE 和 ALTER UPDATE。

彻底删除一张分布式表:

  1. -- 删除分布式表
  2. DROP TABLE t_shard_2_all ON cluster two_shard;
  3. -- 删除本地表
  4. DROP TABLE t_shard_2_local ON cluster two_shard;

分片规则

关于分片的规则这里进一步说明,分片键要求返回一个整型类型的取值,包括 Int 和 UInt 类型的系列。

示例:

  1. -- 分片键可以是一个具体的整型字段
  2. -- 按照用户 ID 划分
  3. Distributed(cluster,database,table,userid)
  4. -- 分片键也可以是返回整型的表达式
  5. -- 按照随机数划分
  6. Distributed(cluster,database,table,rand())
  7. -- 按照用户 ID 的散列值划分
  8. Distributed(cluster,database,table,intHash64(userid))

如果不声明分片键,那么分布式表只能包含一个分片,这意味着只能映射一张表,否则写入数据时将抛出异常。当一个分布式表只包含一个分片的时候也就失去了分布式的意义,所以通常会按照业务需要设置分片键。

分片权重(weight)

在配置集群时,有一项 weight 的设置,weight 默认为 1,它可以被设置成任意整除,但是建议将其设置为比较小的值。分片权重会影响分片中的数据倾斜程度,分片权重越大,写入的数据就会越多。

槽(slot)

slot 的数量等于所有分片权重之和,假设集群有两个分片,第一个分片 weight 为 10,第二个 weight 为 20 ,那么 slot 的数量为 30(10+20),slot 按照权重元素的取值区间,与对应的分片形成映射关系。例如:

  • 如果 slot 取值区间在 [0-10) 区间,则对应第一个分片。
  • 如果 slot 取值区间在 [10-20) 区间,则对应第二个分片。

选择函数

选择函数用于判断一行待写入的数据应该被写到哪个分片中,判断过程大致分成两个步骤:

(1)找出 slot 取值

计算公式如下:

  1. slot = shard_value % sum_weight
  2. shard_value 为分片键的取值
  3. sum_weight 为所有分片的权重之和

如果某行数据 shard_value = 10,sum_weight = 30, 那么 30%10 = 10,即 slot = 10。

(2)基于 slot 值找到对应的数据分片

当 slot 等于 10 的时候它属于 [10,20) 区间,所以这行数据会被对应到第二个分片:

【Clickhouse】副本与分片(二) - 图5

分布式写入的核心流程

向集群内的分片写入数据时,通常有两种思路,

  • 借助外部计算系统,先将数据均匀分片,再借由计算系统直接将数据写入 ClickHouse 集群的各个本地表,这种方案通常有更好的写入性能,因为分片数据时被并西恩点对点写入的,但是这种方案主要依赖外部系统,而不在于 ClickHouse 自身。
  • 通过 Distributed 表引擎代理分片数据。下面详细介绍这种方式的写入流程。

为了便于理解,这里将分片写入和副本复制拆分成两个部分讲解,使用一个拥有 2 个分片 0 个副本的集群讲解分片写入流程,使用一个拥有 1 个分片 1 个副本的集群讲解分片副本复制流程。

将数据写入分片的流程

在对 Distributed 表执行 INSERT 操作的时候,会进入数据写入的执行逻辑。整个过程大约分成 5 个步骤。

(1)在第一个分片节点写入本地分片数据

首先在 node3 节点对分布式表 t_shard_2_all 执行 INSERT 操作,写入 10,30,40,60 4 行数据,执行之后分布式表会做两件事:

  • 根据分配规则划分数据,在这个示例中,30,60 被划分到第一个分片,10,40 被划分到第二个分片。
  • 数据当前分配的数据直接写入本地表 t_shard_2_local。

(2)第一个分片建立远端连接,准备发送远端分片数据

将需要放到远端分片的数据以分区为单位,分别写入 t_shard_2_all 存储目录下的临时 bin 文件,数据文件命名规则如下:

  1. /database@host:port/[increase_num].bin
  2. # 10,40 的两条数据会写入到这个临时文件中

临时数据写完后会尝试与第二个分片的服务器进行连接。

(3)第一个分片向远端发送数据

这时会有另一组监听人会负责监听 t_shard_2_all 目录下的文件变化,这些任务负责将目录数据发送到远端分片,其中每份数据将由独立的进程负责发送,数据在传输之前会被压缩。

(4)第二个分片接收数据并写入本地

第二个分片与第一个分片的服务器建立连接后接受来自第一个分片的数据,并将他们写入本地表。

(5)第一个分片确认完成写入

由数据发送方确认所有数据发送完毕,至此数据写入流程完毕。

由 Distributed 表负责向远端分片发送数据时,有异步和同步两种模式:

  • 异步:在 Distributed 表在写完本地分片之后,insert 操作就会返回写入成功信息。
  • 同步:在执行 insert 操作之后,会等待所有分片完成写入。

由 insert_distributed_sync 参数控制使用何种模式,默认 false(异步),如果设置为 true ,还需要设置 insert_distributed_timeout 参数控制同步等待超时时间。

副本复制的流程

【Clickhouse】副本与分片(二) - 图6

(1)通过 Distributed 复制数据

在这种实现方式下,即使本地表不使用 ReplicatedMergeTree 表引擎,也能实现数据副本的功能,Distributed 会同时负责副本与分片的数据写入工作,而副本的写入流程与分片的写入流程相同,这种情况下,Distributed 节点的写入性能可能成为瓶颈。

(2)通过 ReplicatedMergeTree 复制数据

如果在集群的 shard 配置中增加设置 internal_replication = true,那么 Distributed 将在没每个分片只写一份数据,不负责其副本的写入,如果此时,本地表使用的是 ReplicatedMergeTree 表引擎,那么在 shard 内的多个副本会由 ReplicatedMergeTree 自己处理。

Distributed 选择 replica 的算法大致是,ClickHouse 服务器节点中拥有一个全局计数器 errors_count,当服务器出现异常时计数器 +1,当一个分片有多个副本时,选择 errors_count 计数最小的服务器,进行数据写入。

分布式查询的核心流程

与写入数据有所不同,面向集群查询数据的时候,只能通过 Distributed 表引擎实现,当 Distributed 表执行查询操作的时候,会依次查询每个分片的数据,然后再汇总返回。

多副本路由选择

在查询数据的时候,如果一个集群中有一个分片有多个副本,那么 Distributed 需要面临副本选择的问题,ClickHouse 会使用负载均衡算法从众多副本中选择一个,而具体使用哪种算法由 load_balancing 参数控制。

clickhouse 提供四种负载均衡算法:

  • random
  • nearest_hostname
  • in_order
  • first_or_random

random

random 是默认的负载均衡算法,ClickHouse 服务器节点中有一个全局计数器 errors_count, 当服务器发生异常时 计数器 + 1,random 就是选择 errors_count 最少的节点,如果有多个计数最少的 errors_count 节点,那么随机选择一个。

nearest_hostname

可以看做是 random 的变种,同样选择 errors_count 最少的节点,如果有多个计数最少的 errors_count 节点,那么选择选择与当前配置的 hostname 最相似的一个。

in_order

可以看做是 random 的变种,同样选择 errors_count 最少的节点,如果有多个计数最少的 errors_count 节点,那么根据 replica 的配置顺序逐个选择。

first_or_random

可以看做是 in_order 的变种,同样选择 errors_count 最少的节点,如果有多个计数最少的 errors_count 节点,选择配置的第一个 replica 节点,如果第一个 replica 节点不可用,随机选择一个。

多分片查询的核心流程

分布式查询与分布式写入类似,同样是谁发起谁负责,它会由接收 SELECT 查询的 Distributed 表,负责串联起整个查询。

首先针对分布式表的查询 SQL,按照分片数量将查询根据分片拆分成若干个针对本地表查询的子查询,然后向各个表发起查询,最后再汇总各个分片的结果。

例如在分布式表执行下面查询,查看执行计划:

  1. EXPLAIN
  2. SELECT count(1)
  3. FROM t_shard_2_all;
  4. -- ┌─explain─────────────────────────────────────────────────────────────────────┐
  5. -- Expression ((Projection + Before ORDER BY))
  6. -- MergingAggregated
  7. -- SettingQuotaAndLimits (Set limits and quota after reading from storage)
  8. -- Union
  9. -- Expression (Convert block structure for query from local replica)
  10. -- ReadFromPreparedSource (Optimized trivial count)
  11. -- ReadFromPreparedSource (Read from remote replica)
  12. -- └─────────────────────────────────────────────────────────────────────────────┘

整个执行计划从上至下可分成两个步骤:

  • 查询各分片数据:读取本地数据和读取远程数据是并行的,他们分别负责执行本地和远端分片的查询动作;
  • 返回合并结果:将返回结果合并。

使用 GLOBAL 优化分布式子查询

如果在分布式查询中使用子查询,可能会面临两难的局面,

先看下面一个示例:

  1. -- 使用分布式 DDL 创建分布式表
  2. CREATE TABLE t_distributed_query_all ON CLUSTER two_shard
  3. (
  4. `id` UInt8, -- 用户编号
  5. `repo` UInt8 -- 仓库编号
  6. )
  7. ENGINE = Distributed(two_shard, default, t_distributed_query_local, rand());
  8. -- 使用分布式 DDL 创建本地表
  9. CREATE TABLE t_distributed_query_local ON CLUSTER two_shard
  10. (
  11. `id` UInt8,
  12. `repo` UInt8
  13. )
  14. ENGINE = TinyLog;
  15. -- node2 节点写入数据
  16. INSERT INTO t_distributed_query_local VALUES (1, 100), (2, 100), (3, 100);
  17. -- 查询数据
  18. SELECT * FROM t_distributed_query_local;
  19. -- ┌─id─┬─repo─┐
  20. -- 1 100
  21. -- 2 100
  22. -- 3 100
  23. -- └────┴──────┘
  24. -- node3 节点写入数据
  25. INSERT INTO t_distributed_query_local VALUES (3,200),(4,200);
  26. -- 查询数据
  27. SELECT * FROM t_distributed_query_local;
  28. -- ┌─id─┬─repo─┐
  29. -- 3 200
  30. -- 4 200
  31. -- └────┴──────┘
  32. -- 查询全局表数据
  33. SELECT * FROM t_distributed_query_all;
  34. -- ┌─id─┬─repo─┐
  35. -- 1 100
  36. -- 2 100
  37. -- 3 100
  38. -- └────┴──────┘
  39. -- ┌─id─┬─repo─┐
  40. -- 3 200
  41. -- 4 200
  42. -- └────┴──────┘

要求找到同时拥有两个仓库的用户,对于这种查询可以使用 IN 查询子句,与此同时面临的问题是 IN 查询使用分布式表还是本地表?

如果在 IN 查询中使用本地表:

  1. SELECT uniq(id)
  2. FROM t_distributed_query_all
  3. WHERE (repo = 100) AND (
  4. id IN
  5. (
  6. SELECT id
  7. FROM t_distributed_query_local
  8. WHERE repo = 200
  9. )
  10. );
  11. -- ┌─uniq(id)─┐
  12. -- 0
  13. -- └──────────┘
  14. -- 并没有查询出结果
  15. -- 在分布式表在接收到查询后,将上面 SQL 替换成本地表的形式再发送到每个分片进行执行
  16. SELECT uniq(id)
  17. FROM t_distributed_query_local
  18. WHERE (repo = 100) AND (
  19. id IN
  20. (
  21. SELECT id
  22. FROM t_distributed_query_local
  23. WHERE repo = 200
  24. )
  25. );
  26. -- 单独在分片 1 或分片 2 都无法找到满足同时等于 100 200 的数据

为了解决查询问题,可以使用 GLOBAL IN 或者 JOIN 进行优化:

  1. SELECT uniq(id)
  2. FROM t_distributed_query_all
  3. WHERE (repo = 100) AND (id GLOBAL IN
  4. (
  5. SELECT id
  6. FROM t_distributed_query_all
  7. WHERE repo = 200
  8. ));
  9. -- Query id: 0a55d59d-c87b-4bc8-8985-dad26f0a39b9
  10. -- ┌─uniq(id)─┐
  11. -- 1
  12. -- └──────────┘

Global 查询流程:

  1. 将 IN 子句单独提出,发起一次分布式查询;
  2. 将分布式表转成 local 表后,分别在本地和远端分片执行查询;
  3. 将 IN 子查询结果进行汇总,放入一张临时的内存表进行保存;
  4. 将内存表发送到远端分片节点;
  5. 将分布式表转为本地表后,开始执行完整的 SQL 语句,IN 子句直接使用临时表的数据。

在使用 global 修饰符之后,ClickHouse 使用内存表临时保存了 IN 子查询到的数据,并将其发送到远端分片节点,以此达到了数据共享的目的,从而避免了查询放大的问题,IN 或者 JOIN 子句返回的数据不宜过大,如果内存表存在重复数据,可以实现在子句中增加 distinct 实现去重。