RHCS configure transport = (udp udpb udp rdma) in cluster.conf 's cman

简介:
       transport
              This directive controls the transport mechanism used.  If the inter-
              face to which corosync is binding is an RDMA interface such as RoCEE
              or Infiniband, the "iba" parameter may be specified.  To  avoid  the
              use  of multicast entirely, a unicast transport parameter "udpu" can
              be specified.  This requires specifying the  list  of  members  that
              could potentially make up the membership before deployment.

              The  default  is udp.  The transport type can also be set to udpu or
              iba.

              Within the totem directive, there are several configuration  options
              which are used to control the operation of the protocol.  It is gen-
              erally not recommended to change any of these values without  proper
              guidance  and  sufficient testing.  Some networks may require larger
              values if suffering from frequent reconfigurations.   Some  applica-
              tions  may  require  faster  failure  detection  times  which can be
              achieved by reducing the token timeout.

我们在使用RHCS做集群时, 心跳包默认是通过多播发送的, 多播地址是通过集群ID来计算的.
如果你的环境不支持多播(udp), 那么可以选择广播(udpb)或单播(udpu), 或者你有infiniband设备的话, 可以选择(rdma)
配置可参考 :
/usr/share/cluster/cluster.rng

非常详细.

例如, 默认是多播的. 我们在启动CMAN服务后, 可以看到多播地址以及监听端口.
# netstat -anp|grep corosync
udp        0      0 10.10.10.154:5404           0.0.0.0:*                               11937/corosync      
udp        0      0 10.10.10.154:5405           0.0.0.0:*                               11937/corosync      
udp        0      0 239.192.70.113:5405         0.0.0.0:*                               11937/corosync

同时我们可以使用TCPDUMP观察到心跳包是通过多播来发送的.
# tcpdump -i eth0 'ip[16] >=224'
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
15:01:24.609140 IP 10.10.10.154.hpoms-dps-lstn > 239.192.70.113.netsupport: UDP, length 119
15:01:26.512234 IP 10.10.10.154.hpoms-dps-lstn > 239.192.70.113.netsupport: UDP, length 119
15:01:28.415854 IP 10.10.10.154.hpoms-dps-lstn > 239.192.70.113.netsupport: UDP, length 119


如果要改成单播, 需要改cman, 添加一个参数transport, 使用udpu的值. 注意不要忘记改配置的版本号.
# vi /etc/cluster/cluster.conf
<cluster config_version="23" name="digoal_pg001">
  <cman expected_votes="1" two_node="1" transport="udpu"/>

重启cman服务后, 可以看到没有多播的监听地址了, 现在使用了单播监听UDP, 端口也变了.
# netstat -anp|grep corosync
udp        0      0 10.10.10.154:5405           0.0.0.0:*                               16222/corosync      
udp        0      0 10.10.10.154:46015          0.0.0.0:*                               16222/corosync      
udp        0      0 10.10.10.154:9318           0.0.0.0:*                               16222/corosync 

观测不到多播包.
# tcpdump -i eth0 'ip[16] >=224'

可以看到心跳包走单播了
# tcpdump -i eth0 |grep 10.10.10.221
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eth0, link-type EN10MB (Ethernet), capture size 65535 bytes
15:22:38.731769 IP 10.10.10.154.netsupport > 10.10.10.221.netsupport: UDP, length 107
15:22:38.732357 IP 10.10.10.221.netsupport > 10.10.10.154.netsupport: UDP, length 107
15:22:38.941722 IP 10.10.10.154.secure-ts > 10.10.10.221.netsupport: UDP, length 119
15:22:40.636224 IP 10.10.10.154.netsupport > 10.10.10.221.netsupport: UDP, length 107
15:22:40.636911 IP 10.10.10.221.netsupport > 10.10.10.154.netsupport: UDP, length 107
15:22:40.846299 IP 10.10.10.154.secure-ts > 10.10.10.221.netsupport: UDP, length 119
15:22:42.540841 IP 10.10.10.154.netsupport > 10.10.10.221.netsupport: UDP, length 107
15:22:42.541616 IP 10.10.10.221.netsupport > 10.10.10.154.netsupport: UDP, length 107
15:22:42.750954 IP 10.10.10.154.secure-ts > 10.10.10.221.netsupport: UDP, length 119


[参考]
1. /usr/share/cluster/cluster.rng
    <optional>
     <attribute name="transport" rha:description="Specifies transport mechanism to use. Available values are udp (multicast default), udpb (broadcast), udpu (unicast) and rdma (Infiniband).  corosync.conf(5)" rha:sample="">
     <choice>
       <value>udp</value>
       <value>udpb</value>
       <value>udpu</value>
       <value>rdma</value>
      </choice>
     </attribute>
    </optional>


2. man corosync.conf
目录
相关文章
|
6月前
|
网络协议 Linux 开发工具
计算机网络--TCP中的参数配置
计算机网络--TCP中的参数配置
|
7月前
|
存储 网络协议 网络安全
Flannel dial tcp X.X.X.X i/o timeout报错解决
总的来说,解决这个问题需要对你的网络环境、Flannel配置和etcd服务进行全面的检查和调试。
169 0
|
网络协议
TCP server
TCP server
107 0
|
网络协议 网络性能优化 网络架构
UDP和TCP的区别及应用场景《openstack 网络》
UDP和TCP的区别及应用场景《openstack 网络》
263 0
UDP和TCP的区别及应用场景《openstack 网络》
|
网络协议
网络协议之:memcached binary protocol详解
前面讲到了memcached的文本协议,虽然文本协议看起来非常简单,但是对于客户端来说一般还是会选择效率更高的二进制协议。 二进制协议的本质和文本协议是一样的,只是他们的表现方式不同而已。本文将会详细介绍memcached中二进制协议的实现细节。
网络协议之:memcached binary protocol详解
|
缓存 网络协议 搜索推荐
网络协议之:haproxy的Proxy Protocol代理协议
代理大家应该都很熟悉了,比较出名的像是nginx,apache HTTPD,stunnel等。 我们知道代理就是代替客户端向服务器端进行消息请求,并且希望在代理的过程中保留初始的TCP连接信息,例如源和目标IP和端口等,以提供一些个性化的操作。 一般情况下,为了实现这个目标,有一些现成的解决办法,比如在HTTP协议中,可以使用“X-Forwarded-For”标头,来包含有关原始源地址,还有”X-Original-To”用来携带目的地址的信息。
|
网络协议 UED
TCP Cluster for mqtt 技术实施方案
http://style.witmart.com/style/201204/img/referralprogram/cn/employers/web-design/250x250banner.jpg)" >
2260 0
|
网络协议 PHP
swoole深入学习 2. tcp Server和tcp Client
  这节来学习Swoole最基础的Server和Client。会通过创建一个tcp Server来讲解。 server
2032 0

热门文章

最新文章

下一篇
开通oss服务