parallel_sync
parallel_sync copied to clipboard
Output from process
Hi,
I'm trying parallel_sync. The copy looks good but i have no output to see progress. How can i pass rsync options like --progress --update
Here my launch file: from parallel_sync import rsync
rsync.copy('/mnt/Backup_BDD/mongodb/', '/data/mongodb/', exclude=['*.pyc'], parallelism=10, extract=False, validate=False)
Thanks
Hi. Currently this method uses pure python, not rsync so you cannot add rsync arguments. Would it be good enough to print the file path as it is being copied?
Yes, I vote for print the file path (aka rsync -i option). Nice to see something if monitoring from a console... else it works great for scripting "as is"
Hi,
Yes, it would be nice.