云迁移-rsync增量数据

Posted zywu-king

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了云迁移-rsync增量数据相关的知识,希望对你有一定的参考价值。

rsync备份
rsync由于本身的特性,在第一次rsync备份后,以后每次都只是传内容有改变的部分,而不是全部传。所以,rsync在做镜像方面是很不错的,只传增量,节省带宽、时间。
常规本地rsync备份命令可以是:

rsync -az –delete SRC DST

其中:
-z 压缩
-a 简单理解就是保持一致性
–delete 严格保证DST内容与SRC一致,即DST中SRC没有的文件会被删除掉 (–delete-before表示在进行同步之前,先将目标目录全部删除,然后再进行同步操作)

实例如下:

[[email protected] mnt]# mkdir test
[[email protected] mnt]# cd test/
[[email protected] mnt]# ls
test
[[email protected] test]# echo "a1" > a1.txt
[[email protected] test]# echo "a2" > a2.txt
[[email protected] test]# echo "a3" > a3.txt
[[email protected] test]# ls
a1.txt  a2.txt  a3.txt  aaa

现在使用rsync进行增量备份

[[email protected] mnt]# rsync -az --delete test /opt/
[[email protected] mnt]# ls /opt/
test
[[email protected] mnt]# ls /opt/
test  wang
[[email protected] mnt]# rsync -az --delete test /opt/
[[email protected] mnt]# ls /opt/
test  wang
[[email protected] mnt]# ls /opt/test/
a1.txt  a2.txt  a3.txt  a4  aaa

注意:
–delete参数要放在源目录和目标目录前,并且两个目录结构一定要一致!不能使用./*。
如果目录结构不一致,则不会删除目标目录中的目录。如上,/opt/wang目录由于目录结构不一致,故它是多余的但不删除。

现在进行增量备份,rsync在第一次同步后,后面就只同步内容有改变的部分

温馨提示:
rsync使用–delete参数,在做增量方式的全备份可以说是最佳选择。但这样只有一个副本,也就是说如果你想查以前某个时间段的数据,是没法查到的。









以上是关于云迁移-rsync增量数据的主要内容,如果未能解决你的问题,请参考以下文章

rsync

云原生应用架构的迁移 一 :增量迁移范式

云原生应用架构的迁移 一 :增量迁移范式

rsync备份服务

Rsync介绍

linux rsync配置及用法