内容简介:你好,欢迎浏览我的博客,这篇文章将记录我使用docker搭建clickhouse集群的过程这里我们准备三台服务器,分别配置hostname为server01、server02、server03
你好,欢迎浏览我的博客,这篇文章将记录我使用 docker 搭建clickhouse集群的过程
工具准备
服务器准备
这里我们准备三台服务器,
分别配置hostname为server01、server02、server03
所有服务器的/etc/hosts都加上
$ip1 server01 $ip2 server02 $ip3 server03 复制代码
注意:这里的$ip1、$ip2、$ip3代表的是你三台服务器的ip,记得以实际值写入到/etc/hosts文件中哦
安装 docker
执行命令 yum list | grep docker
返回结果应该如图所示
注意 docker 的版本
一致了之后执行 yum install -y docker
-y参数是为了在待输入yes的时候直接自动输入yes
安装 clickhouse-server 和 clickhouse-client
执行命令 yum list | grep clickhouse
返回结果应该如图所示
我们装的是前两个
接下来我们执行下面两条命令进行安装
yum pull docker.io/yandex/clickhouse-server; yum pull docker.io/yandex/clickhouse-client; 复制代码
安装 zookeeper 集群
可以参照Zookeeper 集群搭建
启动clickhouse-server
创建对应本地路径
在三台服务器
创建配置存储目录: mkdir /etc/clickhouse-server
创建数据存储目录: mkdir /opt/clickhouse
获取配置
在server01服务器
采用非docker方式安装都是有默认配置的,这个时候我们没有默认配置怎么办?
我们可以先按照官方教程的docker命令启动一下
docker run -d --name clickhouse-server --ulimit nofile=262144:262144 --volume=/opt/clickhouse/:/var/lib/clickhouse yandex/clickhouse-server
-d参数:当前容器在后台启动 --name参数:当前容器的名字,不传的话docker会随机生成 --ulimit参数:这个参数还不清楚,有了解的朋友可以在评论区告诉我一下 --volume参数:将冒号两侧的路径建立映射,当容器服务读取冒号后面的虚拟机内路径时,会去读冒号前面的本机路径。加这个参数的作用是自定义配置
启动完成了后,我们需要复制容器内的配置文件到本机目录下
docker cp clickhouse-server:/etc/clickhouse-server/ /etc/clickhouse-server/
配置集群
在server01服务器
编辑config.xml
执行命令 vim /etc/clickhouse-server/config.xml
编辑config.xml文件
在 remote_servers
这个xml标签后添加如下配置
<!-- If element has 'incl' attribute, then for it's value will be used corresponding substitution from another file. By default, path to file with substitutions is /etc/metrika.xml. It could be changed in config in 'include_from' element. Values for substitutions are specified in /yandex/name_of_substitution elements in that file. --> <include_from>/etc/clickhouse-server/metrika.xml</include_from> 复制代码
新增metrika.xml
执行命令 vim /etc/clickhouse-server/metrika.xml
新增metrika.xml文件
输入如下文本
<yandex> <!-- 集群配置 --> <clickhouse_remote_servers> <cluster_3s_1r> <!-- 数据分片1 --> <shard> <internal_replication>false</internal_replication> <replica> <host>server01</host> <port>9000</port> <user>default</user> <password></password> </replica> </shard> <!-- 数据分片2 --> <shard> <internal_replication>false</internal_replication> <replica> <host>server02</host> <port>9000</port> <user>default</user> <password></password> </replica> </shard> <!-- 数据分片3 --> <shard> <internal_replication>false</internal_replication> <replica> <host>server03</host> <port>9000</port> <user>default</user> <password></password> </replica> </shard> </cluster_3s_1r> </clickhouse_remote_servers> <!-- ZK --> <zookeeper-servers> <node index="1"> <host>server01</host> <port>2181</port> </node> <node index="2"> <host>server02</host> <port>2181</port> </node> <node index="3"> <host>server03</host> <port>2181</port> </node> </zookeeper-servers> <networks> <ip>::/0</ip> </networks> <!-- 数据压缩算法 --> <clickhouse_compression> <case> <min_part_size>10000000000</min_part_size> <min_part_size_ratio>0.01</min_part_size_ratio> <method>lz4</method> </case> </clickhouse_compression> </yandex> 复制代码
传递配置文件
到这里我们的关于集群的配置就全部完成了,接下来要做的是把我们在server01上的配置文件传输到其它服务器上 执行命令
scp -r /etc/clickhouse-server server02:/etc/clickhouse-server scp -r /etc/clickhouse-server server03:/etc/clickhouse-server 复制代码
可以去对应服务器验证一下
启动集群
分别在三台服务器
执行docker启动脚本
docker run -d \ --name cs \ --ulimit nofile=262144:262144 \ --volume=/opt/clickhouse/:/var/lib/clickhouse \ --volume=/etc/clickhouse-server/:/etc/clickhouse-server/ \ --add-host server01:$ip1 \ --add-host server02:$ip2 \ --add-host server03:$ip3 \ --hostname $current_hostname \ -p 9000:9000 \ -p 8123:8123 \ -p 9009:9009 \ yandex/clickhouse-server 复制代码
注意1:这里的 $ip1、$ip2、$ip3 记得替换为实际值
注意2:$current_hostname 为当前服务器的hostname
--add-host参数:因为我们在配置文件中使用了hostname来指代我们的服务器,为了让容器能够识别,所以需要加此参数
--hostname参数:clickhouse中的 system.clusters
表会显示集群信息,其中is_local的属性如果不配置hostname的话clickhouse无法识别是否是当前本机。is_local都为0的话会影响集群操作,比如create table on cluster cluster_2s_1r .....
--p参数:暴露容器中的端口到本机端口中。 容器端口
验证集群搭建
分别查看三台服务器的 system.clusters
,应该显示集群中三台服务器的信息,且 is_local
为正确值
启动 clickhouse-client
在任意服务器
docker run -it \ --rm \ --add-host server01:$ip1 \ --add-host server02:$ip2 \ --add-host server03:$ip3 \ yandex/clickhouse-client \ --host server01 \ --port 9000 复制代码
--host参数:相当于我们通过yum安装clickhouse时,执行命令 clickhouse-client --host server01
后面接的参数host,指定用于连接的clickhouse-server的host
--port参数:相当于我们通过yum安装clickhouse时,执行命令 clickhouse-client --port 9000
后面接的参数port,指定用于连接的clickhouse-server的port
写在最后
使用docker搭建服务和我们平时在服务器上搭建的思路有些不太一样,需要时刻注意我们使用docker启动的服务是在一个虚拟机里的,可以理解为“面向虚拟机部署”
一开始部署集群的时候我的is_local这个属性值就一直不正常,后来看了 这篇文章 ,想着用他的方式试一下
发现is_local的值好了!我一开始还以为是docker中network的问题,后来在改配置的过程中才意识到是参数hostname起到了关键的作用
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Elasticsearch 集群搭建和集群原理
- Zookeeper学习系列【二】Zookeeper 集群章节之集群搭建
- Spark集群环境搭建
- Zookeeper搭建集群
- FastDFS集群搭建
- Zookeeper集群环境搭建
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
C++ Primer Plus
Stephen Prata / Addison Wesley / 2011-10-18 / GBP 39.99
C++ Primer Plus, Sixth Edition New C++11 Coverage C++ Primer Plus is a carefully crafted, complete tutorial on one of the most significant and widely used programming languages today. An accessible an......一起来看看 《C++ Primer Plus》 这本书的介绍吧!
随机密码生成器
多种字符组合密码
HEX CMYK 转换工具
HEX CMYK 互转工具