DistCp是支持带宽限流的,使用者可以通过命令参数bandwidth来为程序进行限流
对于网络如果万一中断,可以采用追加等方式来解决。
更多详细如下
对于增量数据同步的需求,在DistCp中也得到了很好的实现.通过update,append和*diff*2个参数能很好的解决.官方的参数使用说明:
Update: Update target, copying only missing files or directories Append: Reuse existing data in target files and append new data to them if possible. Diff: Use snapshot diff report to identify the difference between source and target.
第一个参数,解决了新增文件目录的同步,第二参数,解决已存在文件的增量更新同步,第三个参数解决删除或重命名文件的同步
|