我是靠谱客的博主 缥缈奇迹,最近开发中收集的这篇文章主要介绍Cloudera 主机时钟偏差完美解决方案,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 

CDH 集群需要保持各节点时间同步,需要在每个节点配置 NTP 时间同步服务

1、集群配置 NTP 主从时间同步服务

安装 NTP

yum install -y ntp

配置 /etc/ntp.conf 参数
ntp 时钟服务节点:在集群中配置一个 ntp 时间服务器,负责对内网其它节点提供时钟服务。
配置参数说明如下,完整配置脚本见清单中的 server-ntp.conf

 

# 设置对内网主机提供NTP服务,集群网关是192.168.20.1,允许内网其他机器同步时间 restrict 192.168.20.1 mask 255.255.255.0 nomodify notrap # 指定上层对时的外部服务器,优先选择阿里云的时钟服务 server time6.aliyun.com perfer server 0.cn.pool.ntp.org server 1.cn.pool.ntp.org server 2.cn.pool.ntp.org server 3.cn.pool.ntp.org #允许上层时间服务器主动修改本机时间 restrict time6.aliyun.com nomodify notrap noquery restrict 0.cn.pool.ntp.org nomodify notrap noquery restrict 1.cn.pool.ntp.org nomodify notrap noquery restrict 2.cn.pool.ntp.org nomodify notrap noquery restrict 3.cn.pool.ntp.org nomodify notrap noquery #外部时间服务器不可用时,设置以本地时间作为时间服务 server 127.127.1.0 fudge 127.127.1.0 stratum 10

ntp 子节点:配置参数与 ntp 时钟服务节点同步时间。
配置参数说明如下

 

# 指定上层对时的外部服务器,192.168.20.30为配置了ntpd时钟服务端的节点IP server 192.168.20.30 perfer server time6.aliyun.com #允许上层时间服务器主动修改本机时间 restrict 192.168.20.30 nomodify notrap noquery restrict time6.aliyun.com nomodify notrap noquery # 外部时间服务器不可用时,设置以本地时间作为时间服务 server 127.127.1.0 fudge 127.127.1.0 stratum 10

启用 ntp 服务

systemctl start ntpd systemctl enable ntpd

初始时间同步

ntpdate -u time6.aliyun.com

同步系统时间到硬件

hwclock --systohc

2、节点非正常开机启动时的主机时钟偏差问题解决

问题:在 Cloudera 集群中,节点意外宕机自动重启后,集群持续报告 主机时钟偏差 的告警信息,导致集群内一些服务无法正常提供服务。

原因:经排查测算后找到原因了,在服务器非正常启动后,cloudera-scm-agent 启动时,会检测 ntpd 服务是否启动,如果没有检测到 ntpd ,Cloudera 默认会以 chronyd 作为默认时间服务。然而系统并未配置 chronyd 服务,所以一直会出现 主机时钟偏差 的告警信息,服务器正常启动时不会出现该问题。
 

最后

以上就是缥缈奇迹为你收集整理的Cloudera 主机时钟偏差完美解决方案的全部内容,希望文章能够帮你解决Cloudera 主机时钟偏差完美解决方案所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部