summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Markelov <alex@markelov.org>2015-10-31 08:30:08 +0000
committerVenky Shankar <vshankar@redhat.com>2015-12-11 00:27:49 -0800
commiteff14863fb6a6da0ccf8a40343160b09f29ea493 (patch)
tree9a9c0710d0984b32b72c0d75c3c4b0c77ed245e2
parentddf5957d3e4e09ed750f68447492796af61f08e4 (diff)
Add support for sparse files to tarssh method
Without '--sparse' option tar will not properly archive sparse file and geo-replication will result in non-sparse file on the remote end. Here is more on how I arrived at this http://markelov.org/wiki/index.php/GlusterFS_3.6.1_on_CentOS_6.5:_geo-replication_and_sparse_files_problem Change-Id: I8d671964a1b48bbb916e4a064571221bf3631494 BUG: 1276839 Signed-off-by: Alex Markelov <alex@markelov.org> Reviewed-on: http://review.gluster.org/12476 Tested-by: Gluster Build System <jenkins@build.gluster.com> Tested-by: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Aravinda VK <avishwan@redhat.com>
-rw-r--r--geo-replication/syncdaemon/resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/geo-replication/syncdaemon/resource.py b/geo-replication/syncdaemon/resource.py
index 0573acce3e7..740861a23f3 100644
--- a/geo-replication/syncdaemon/resource.py
+++ b/geo-replication/syncdaemon/resource.py
@@ -958,7 +958,7 @@ class SlaveRemote(object):
logging.debug("files: " + ", ".join(files))
(host, rdir) = slaveurl.split(':')
tar_cmd = ["tar"] + \
- ["-cf", "-", "--files-from", "-"]
+ ["--sparse", "-cf", "-", "--files-from", "-"]
ssh_cmd = gconf.ssh_command_tar.split() + \
["-p", str(gconf.ssh_port)] + \
[host, "tar"] + \