sersync实现数据实时同步

简介: 1.1 第一个里程碑:安装sersync软件 1.1.1 将软件上传到服务器当中并解压 1、上传软件到服务器上 rz -E 为了便于管理上传位置统一设置为 /server/tools 中 2、解压软件包 [root@backup sersync_installdir_64bit]# tree .

1.1 第一个里程碑:安装sersync软件

1.1.1 将软件上传到服务器当中并解压

1、上传软件到服务器上 rz -E

为了便于管理上传位置统一设置为 /server/tools

2、解压软件包

[root@backup sersync_installdir_64bit]# tree
.
└── sersync
    ├── bin
    │   └── sersync
    ├── conf
    │   └── confxml.xml
    └── logs

1.1.2 二进制包安装方法

二进制包安装软件方法(绿色软件安装方法):

 直接解压就可以使用

[root@nfs01 sersync_installdir_64bit]# mv sersync/ /usr/local/
[root@nfs01 tools]# tree /usr/local/sersync/
  /usr/local/sersync/
  ├── bin
  │   └── sersync
  ├── conf
  │   └── confxml.xml
  └── logs
  
  3 directories, 2 files

1.2 第二个里程碑:编写sersync配置文件

1.2.1 常见的语法格式

rsync 配置文件编写:ini语法

sersync配置文件编写:xml语法

ansible配置文件编写:yml 语法

1.2.2 修改配置文件

编写前备份

[root@backup conf]# ll
total 4
-rw-r--r-- 1 root root 2214 Oct 26  2011 confxml.xml
[root@backup conf]# cp confxml.xml{,.bak}

6-11行表示排除同步的数据,等价于 --exclude 功能,表示排除

<filter start="false">
        <exclude expression="(.*)\.svn"></exclude>
        <exclude expression="(.*)\.gz"></exclude>
        <exclude expression="^info/*"></exclude>
         <exclude expression="^static/*"></exclude>
</filter>

12-21行是利用inotify的功能监控指定的事件,等价与 -e createdelete…… 表示指定监控事件信息

 <inotify>
     <delete start="true"/>
     <createFolder start="true"/>
     <createFile start="false"/>
     <closeWrite start="true"/>
     <moveFrom start="true"/>
     <moveTo start="true"/>
     <attrib start="false"/>
     <modify start="false"/>
 </inotify>

24-28行:推送到哪里 name=模块 rsync服务器的地址

 <localpath watch="/data"> #监控那个目录
     <remote ip="172.16.1.41" name="backup"/>
     <!--<remote ip="192.168.8.39" name="tongbu"/>-->
     <!--<remote ip="192.168.8.40" name="tongbu"/>-->
 </localpath>

29-35 定义rsync推送时的参数信息。

注意:不要有单词拼写错误 true),否则程序不能正常启动,卡死

<rsync>
    <commonParams params="-az"/>
    <auth start="true" users="rsync_backup" passwordfile="/etc/rsync.password"/>
    <userDefinedPort start="false" port="874"/><!-- port=874 -->
    <timeout start="false" time="100"/><!-- timeout=100 -->
    <ssh start="false"/>
</rsync>

配置文件最终内容:

 

 1 [root@nfs01 tools]# cat /usr/local/sersync/conf/confxml.xml 
 2  <?xml version="1.0" encoding="ISO-8859-1"?>
 3  <head version="2.5">
 4     <host hostip="localhost" port="8008"></host>
 5     <debug start="false"/>
 6     <fileSystem xfs="false"/>
 7     <filter start="false">
 8     <exclude expression="(.*)\.svn"></exclude>
 9     <exclude expression="(.*)\.gz"></exclude>
10     <exclude expression="^info/*"></exclude>
11     <exclude expression="^static/*"></exclude>
12     </filter>
13     <inotify>
14     <delete start="true"/>
15     <createFolder start="true"/>
16     <createFile start="false"/>
17     <closeWrite start="true"/>
18     <moveFrom start="true"/>
19     <moveTo start="true"/>
20     <attrib start="false"/>
21     <modify start="false"/>
22     </inotify>
23 
24     <sersync>
25     <localpath watch="/data">
26         <remote ip="172.16.1.41" name="nfsbackup"/>
27         <!--<remote ip="192.168.8.39" name="tongbu"/>-->
28         <!--<remote ip="192.168.8.40" name="tongbu"/>-->
29     </localpath>
30     <rsync>
31         <commonParams params="-az"/>
32         <auth start="true" users="rsync_backup" passwordfile="/etc/rsync.password"/>
33         <userDefinedPort start="false" port="874"/><!-- port=874 -->
34         <timeout start="false" time="100"/><!-- timeout=100 -->
35         <ssh start="false"/>
36     </rsync>
37     <failLog path="/tmp/rsync_fail_log.sh" timeToExecute="60"/><!--default every 60mins execute once-->
38     <crontab start="false" schedule="600"><!--600mins-->
39         <crontabfilter start="false">
40         <exclude expression="*.php"></exclude>
41         <exclude expression="info/*"></exclude>
42         </crontabfilter>
43     </crontab>
44     <plugin start="false" name="command"/>
45     </sersync>
46 
47     <plugin name="command">
48     <param prefix="/bin/sh" suffix="" ignoreError="true"/>    <!--prefix /opt/tongbu/mmm.sh suffix-->
49     <filter start="false">
50         <include expression="(.*)\.php"/>
51         <include expression="(.*)\.sh"/>
52     </filter>
53     </plugin>
54 
55     <plugin name="socket">
56     <localpath watch="/opt/tongbu">
57         <deshost ip="192.168.138.20" port="8009"/>
58     </localpath>
59     </plugin>
60     <plugin name="refreshCDN">
61     <localpath watch="/data0/htdocs/cms.xoyo.com/site/">
62         <cdninfo domainname="ccms.chinacache.com" port="80" username="xxxx" passwd="xxxx"/>
63         <sendurl base="http://pic.xoyo.com/cms"/>
64         <regexurl regex="false" match="cms.xoyo.com/site([/a-zA-Z0-9]*).xoyo.com/images"/>
65     </localpath>
66     </plugin>
67 </head>
View Code 配置文件最终内容

 

1.3 第三里程碑: 启动sersync

1.3.1 修改文件的权限(可执行)

首先让程序让文件有执行权限

[root@nfs01 bin]# chmod a+x sersync 
[root@nfs01 bin]# ll
total 1768
-rwxr-xr-x 1 root root 1810128 Oct 26  2011 sersync

1.3.2 查看软件的帮助信息

[root@nfs01 bin]# ./sersync -h
set the system param
execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches
execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events
parse the command param
_______________________________________________________
重要参数-d:启用守护进程模式
重要参数-r:在监控前,将监控目录与远程主机用rsync命令推送一遍
    参数-n: 指定开启守护线程的数量,默认为10个
重要参数-o:指定配置文件,默认使用confxml.xml文件
    参数-m:单独启用其他模块,使用 -m refreshCDN 开启刷新CDN模块
    参数-m:单独启用其他模块,使用 -m socket 开启socket模块
    参数-m:单独启用其他模块,使用 -m http 开启http模块
不加-m参数,则默认执行同步程序
________________________________________________________________

1.3.3 在程序的bin目录下启动程序

./sersync -dro /usr/local/sersync/conf/confxml.xml

1.3.4 启动方法二

/usr/local/sersync/bin/程序的bin目录添加到PATH

export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/sersync/bin/

然后sersync命令就能直接使用

[root@nfs01 scripts]# sersync -dro /usr/local/sersync/conf/confxml.xml 
set the system param
execute:echo 50000000 > /proc/sys/fs/inotify/max_user_watches
execute:echo 327679 > /proc/sys/fs/inotify/max_queued_events
parse the command param
option: -d     run as a daemon
option: -r     rsync all the local files to the remote servers before the sersync work
option: -o     config xml name:  /usr/local/sersync/conf/confxml.xml
daemon thread num: 10
parse xml config file
host ip : localhost    host port: 8008
daemon start,sersync run behind the console 
use rsync password-file :
user is    rsync_backup
passwordfile is     /etc/rsync.password
config xml parse success
please set /etc/rsyncd.conf max connections=0 Manually
sersync working thread 12  = 1(primary thread) + 1(fail retry thread) + 10(daemon sub threads) 
Max threads numbers is: 22 = 12(Thread pool nums) + 10(Sub threads)
please according your cpu ,use -n param to adjust the cpu rate
------------------------------------------
rsync the directory recursivly to the remote servers once
working please wait...
execute command: cd /data && rsync -az -R --delete ./ rsync_backup@172.16.1.41::nfsbackup --password-file=/etc/rsync.password >/dev/null 2>&1 
run the sersync: 
watch path is: /data

1.4 Inotify sersync总结对比

1.4.1 Inotify实时并发:

  结论:经过测试,每秒200文件并发,数据同步几乎无延迟(小于1秒)

1.4.2 inotify 优点:

  1)监控文件系统事件变化,通过同步工具实现实时数据同步。

1.4.3 inotify 缺点

  1)并发如果大于200个文件(10-100k),同步就会有延迟

  2)我们前面写的脚本,每次都是全部推送一次,但确实是增量的。也可以只同步变化的文件,不变化的不理。

  3)监控到事件后,调用rsync同步是单进程的,而sersync为多进程同步。既然有了inotify-tools,为什么还要开发sersync

1.4.4 serysync功能多:(inotify+rsync命令)

  1)支持通过配置文件管理

  2)真正的守护进程socket

  3)可以对失败文件定时重传(定时任务功能)

  4)第三方的HTTP接口(例如:更新cdn缓存)

  5)默认多进程rsync同步

1.4.5 高并发数据实时同步方案小结:

  1inotifysersync+ rsync,是文件级别的。

  2drbd文件系统级别,文件系统级别,基于block块同步,缺点:备节点数据不可用

  3)第三方软件的同步功能:mysql同步(主从复制),oraclemongodb

  4)程序双写,直接写两台服务器。

  5)利用产品业务逻辑解决(读写分离,备份读不到,读主)

2.1 man命令的级别

centos6

[root@nfs01 ~]# man man
       The standard sections of the manual include:

       1      User Commands                                 #用户命令

       2      System Calls                                  #系统调用

       3      C Library Functions                          # Ç库函数
 
       4      Devices and Special Files                   #设备和特殊文件

       5      File Formats and Conventions                #文件格式和约定

       6      Games et. Al.                                  #游戏等。

       7      Miscellanea                                     #杂记

       8      System Administration tools and Daemons   #系统管理工具和程序

       Distributions  customize  the  manual section to their specifics,
       which often include additional sections.

centos7

[root@clsn tuichu]# man ~
1   Executable programs or shell commands
2   System calls (functions provided by the kernel)
3   Library calls (functions within program libraries)
4   Special files (usually found in /dev)
5   File formats and conventions eg /etc/passwd
6   Games
7   Miscellaneous  (including  macro  packages  and conventions), e.g.
    man(7), groff(7)
8   System administration commands (usually only for root)
9   Kernel routines [Non standard]

 

目录
相关文章
|
4月前
|
人工智能 自然语言处理 算法
大模型备案需要通过算法备案才能进行吗?
本内容详细介绍了算法备案与大模型备案的流程、审核重点及两者关系。算法备案覆盖生成合成类等5类算法,需提交安全自评估报告,审核周期约2个月;大模型备案针对境内公众服务的大模型,涉及多维度审查,周期3-6个月。两者存在前置条件关系,完成算法备案是大模型备案的基础。阿里云提供全流程工具支持,包括合规预评估、材料校验和进度追踪,助力企业高效备案。此外,文档解答了常见问题,如算法迭代是否需重新备案,并解析政策红利与技术支持,帮助企业降低合规成本、享受补贴奖励。适用于需了解备案流程和技术支持的企业和个人开发者。
679 4
|
JSON 前端开发 安全
iframe和form提交
iframe和form提交
226 5
|
供应链 监控 安全
ERP系统中的库存管理与优化
【7月更文挑战第25天】 ERP系统中的库存管理与优化
1281 2
|
机器学习/深度学习 人工智能 数据挖掘
为什么越来越多的人喜欢用Python?
Python编程语言在过去的几年里取得了巨大的成功,吸引了越来越多的人,从初学者到专业开发者,都喜欢使用它。那么,为什么Python如此受欢迎?这篇文章将探讨Python的吸引力以及它在不同领域的应用。
|
Linux
edac-utils工具如何使用
【6月更文挑战第1天】edac-utils工具如何使用
737 3
|
Linux 编译器 数据处理
探索Linux命令之nm:解析二进制文件的神器
`nm`命令是Linux下分析二进制文件的工具,显示符号表中的函数、变量等信息及它们的地址和类型。它帮助理解程序结构、调试和优化,支持不同符号类型、输出选项和过滤。常用参数如`-a`显示所有符号,`-t f`列出定义的函数。在实际应用中,可以结合其他工具如`objdump`、`readelf`进行更深入的分析,并注意备份原始文件。
|
人工智能 运维 云计算
飞天技术观丨开放的Autonomous Cloud,开启AI崭新时代
面向智能时代,阿里云将通过从底层算力到AI平台再到模型服务的全栈技术创新,升级云计算体系,打造一朵AI时代最开放的云。2023年,AI和云计算也终于走在一起,融合出更有生命力的广阔空间。
飞天技术观丨开放的Autonomous Cloud,开启AI崭新时代
|
Linux 程序员
CentOS7 部署黑客帝国代码雨
CentOS7 部署黑客帝国代码雨
250 1
|
消息中间件 存储 Kafka
3分钟白话RocketMQ系列—— 核心概念
3分钟白话RocketMQ系列—— 核心概念
416 1
|
存储 运维 监控
【运维知识进阶篇】Sersync实时同步详解
【运维知识进阶篇】Sersync实时同步详解
462 0