今天給大家分享一個采用 Consul
實現(xiàn)的負(fù)載均衡的方案,很多小伙伴都知道 Nginx
可以實現(xiàn)負(fù)載均衡,但是可能沒實現(xiàn)過結(jié)合 Consul
,今天就給大家分享一下。
整體架構(gòu)
我們先看下整個框架的架構(gòu)是什么樣子的,這里我們有三個服務(wù)提供者和三個服務(wù)調(diào)用者,它們通過 Consul
和 Nginx
,以及 Consul-template
來實現(xiàn)負(fù)載均衡。
說明 本例子是進(jìn)行 RPC 的負(fù)載均衡,RPC 是 tcp協(xié)議,所以 Nginx 要配置 tcp 模塊,支持 tcp 負(fù)載均衡。
Consul
集群 用于服務(wù)注冊,注冊多個服務(wù)實例,對外提供RPC
服務(wù)。Consul-template
用于實時監(jiān)測Consul
中服務(wù)的狀態(tài),配合自身一個模板文件,生成Nginx
的配置文件。Nginx
使用自身的配置文件和第二步生成的配置文件,進(jìn)行負(fù)載均衡。
Nginx安裝
- 安裝最新版
Nginx
,保證Nginx
版本在 1.9.0 以上 - 1.9.0 版本以上才支持
TCP
轉(zhuǎn)發(fā),據(jù)說不是默認(rèn)安裝了該模塊,安裝完成可以查詢一下,如果有--with-stream
參數(shù),表示已經(jīng)支持TCP
。如果沒有就重新編譯增加參數(shù)安裝。 - 我的 Nginx 安裝在
/etc/nginx
目錄下 - 安裝完成使用
nginx -t
監(jiān)測一下是否成功。
Consul-template
本文旨在負(fù)載均衡,Consul 集群搭建不作介紹。
1.下載對應(yīng)系統(tǒng)版本文件 https://releases.hashicorp.com/consul-template/
2.解壓,并復(fù)制到PATH
路徑下
[silence@centos145 ~]$ tar xzvf consul-template_0.19.4_linux_amd64.tgz
[silence@centos145 ~]$ mv ./consul-template /usr/sbin/consul-template
3.找個地方新建個文件夾,并創(chuàng)建三個文件
4.config.hcl
主要用來配置consul-template
的啟動參數(shù)項,包括consul
服務(wù)器的地址,模板文件的位置,生成的配置文件的位置等等。除了consul
和template
塊,其他參數(shù)可選。參考https://github.com/hashicorp/consul-template
5.Consul
塊配置Consul
服務(wù)器地址和端口
consul {
auth {
enabled = false
username = "test"
password = "test"
}
address = "172.20.132.196:8500"
retry {
enabled = true
attempts = 12
backoff = "250ms"
max_backoff = "1m"
}
}
6.template
塊配置模板的路徑和生成文件的位置,以及生成文件后需要執(zhí)行的命令。在我們這里我們需要nginx
重新加載配置文件,所以設(shè)置的命令為nginx -s reload
template {
source = "/etc/nginx/consul-template/template.ctmpl"
destination = "/etc/nginx/consul-template/nginx.conf"
create_dest_dirs = true
command = "/usr/sbin/nginx -s reload"
command_timeout = "30s"
error_on_missing_key = false
perms = 0600
backup = true
left_delimiter = "{{"
right_delimiter = "}}"
wait {
min = "2s"
max = "10s"
}
}
7.template.ctmpl
編寫,因為這里只需要服務(wù)器地址和端口號就可以,所以模板文件如下:
[root@centos145 consul-template]# cat template.ctmpl
stream {
log_format main '$remote_addr - [$time_local] '
'$status';
access_log /var/log/nginx/tcp_access.log main;
upstream cloudsocket {
\{\{range service "ad-rpc-device-server"}}server \{\{.Address}}:\{\{.Port}};{{end}}
}
server {
listen 8888;
proxy_pass cloudsocket;
}
}
8.啟動consul-template
consul-template -config=./config.hcl
使用config.hcl配置文件是為了簡化命令 consul-template -consul-addr=172.20.132.196:8500 -template=./template.ctmpl:./nginx.conf
9.初始的nignx.conf
文件為空的,在啟動后內(nèi)容為
[root@centos145 consul-template]# cat nginx.conf
stream {
log_format main '$remote_addr - [$time_local] '
'$status';
access_log /var/log/nginx/tcp_access.log main;
upstream cloudsocket {
server 172.20.139.77:8183;
}
server {
listen 8888;
proxy_pass cloudsocket;
}
}
確保服務(wù)已經(jīng)成功注冊到Consul中,即可以看到服務(wù)器地址和端口已經(jīng)配置進(jìn)去了。
10.在nginx
的安裝目錄的nginx.conf
中引入consul-template
生成的配置文件 include /etc/nginx/consul-template/nginx.conf;
注意生成的配置文件不能喝nginx本身的配置文件中內(nèi)容重復(fù)?。?!
11.啟動一個服務(wù)實例,查看生成的nginx.conf
文件會發(fā)現(xiàn)在upstream cloudsocket{}
中會動態(tài)增加服務(wù)列表,并且隨著服務(wù)的加入和離開,動態(tài)變化。
[root@centos145 consul-template]# cat nginx.conf
stream {
log_format main '$remote_addr - [$time_local] '
'$status';
access_log /var/log/nginx/tcp_access.log main;
upstream cloudsocket {
server 172.20.139.77:8183;
}
server {
listen 8888;
proxy_pass cloudsocket;
}
}
再啟動一個,服務(wù)列表變成兩個了
[root@centos145 consul-template]# cat nginx.conf
stream {
log_format main '$remote_addr - [$time_local] '
'$status';
access_log /var/log/nginx/tcp_access.log main;
upstream cloudsocket {
server 172.20.139.77:8183;server 172.20.139.77:8184;
}
server {
listen 8888;
proxy_pass cloudsocket;
}
}
12.thrift
客戶端在調(diào)用的時候只需要配置Nginx
的地址和端口就可以了,不需要配置服務(wù)的地址和端口了,Nginx
會自動做轉(zhuǎn)發(fā)。
(推薦教程:Nginx 入門指南)
總結(jié)
今天給大家介紹了一個新的負(fù)載均衡實現(xiàn)方案,這種方案對于一些小規(guī)模的集群還是很不錯的,當(dāng)然如果是大集群,還是采用阿里云或者騰訊云提供的方案才是最好的。想自己實現(xiàn)的小伙伴環(huán)境去嘗試搭建一下,還是很好玩的。
文章來源:公眾號-- Java極客技術(shù)
作者:鴨血粉絲
以上就是關(guān)于Consul-template+Nginx 實現(xiàn)Thrift Consul負(fù)載均衡的相關(guān)介紹了,希望對大家有所幫助。