2 # Desc: A bash function for splitting up rsync jobs based on size
4 echo "ERROR:This is a bash function, not a script." 2>&1; exit 1;
6 function rsync_tranches
() {
7 # Desc: Runs rsync in parallel across different files size ranges
8 # Example: rsync_tranches -avu --progress --dry-run ./SOURCE/ ./DEST/
11 local -a rsync_opts
=();
14 # Parse arguments until source and destination are found
15 while [[ $# -gt 0 ]]; do
17 # If it's not an option, assume it's the source, then the destination
23 ## If not a file or directory, assume option
24 if [[ ! -f "$1" ]] && [[ ! -d "$1" ]]; then
28 ## If valid file or directory, assume source or dest path
29 if [[ -z "$source" ]]; then
39 # Validate that source and destination are set
40 if [[ -z "$source" ]] ||
[[ -z "$dest" ]]; then
41 echo "Error: Source and destination directories must be specified." 1>&2;
45 # Tranche 1: 0 to 1MiB-1
46 rsync
--min-size='0' --max-size='1MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
49 # Tranche 2: 1MiB to 2MiB-1
50 rsync
--min-size='1MiB' --max-size='2MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
52 # Tranche 3: 2MiB to 4MiB-1
53 rsync
--min-size='2MiB' --max-size='4MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
55 # Tranche 4: 4MiB to 8MiB-1
56 rsync
--min-size='4MiB' --max-size='8MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
58 # Tranche 5: 8MiB to 16MiB-1
59 rsync
--min-size='8MiB' --max-size='16MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
61 # Tranche 6: 16MiB to 32MiB-1
62 rsync
--min-size='16MiB' --max-size='32MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
64 # Tranche 7: 32MiB to 64MiB-1
65 rsync
--min-size='32MiB' --max-size='64MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
67 # Tranche 8: 64MiB to 128MiB-1
68 rsync
--min-size='64MiB' --max-size='128MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
70 # Tranche 9: 128MiB to 256MiB-1
71 rsync
--min-size='128MiB' --max-size='256MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
73 # Tranche 10: 256MiB to 512MiB-1
74 rsync
--min-size='256MiB' --max-size='512MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
76 # Tranche 11: 512MiB to 1024MiB-1
77 rsync
--min-size='512MiB' --max-size='1024MiB-1' "${rsync_opts[@]}" "$source" "$dest" &
79 # Tranche 12: Greater than 1024MiB
80 rsync
--min-size='1024MiB' --max-size='8192PiB-1' "${rsync_opts[@]}" "$source" "$dest" &
82 wait # Wait for all rsync processes to complete
84 export -f rsync_tranches
;
86 # Author: Steven Baltakatei Sandoval