Skip to content

Commit 7bb7869

Browse files
committed
Only backup databases that are less than 100MB to AFS
First order approximation, this skips databases that are smaller than 100MB if they have large index files, but this prevents the AFS backup volumes from becoming overful. This version also fails to backup databases that have spaces in their names, because of a bash for loop. Switching to \0 delimiters will correct this issue.
1 parent fe7f926 commit 7bb7869

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

run-afs.sh

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
# For this to work, we need to run k5start in "kinit daemon" mode,
1414
# which means we need a pid fie.
1515

16+
base=/srv/data/mysql/db
17+
# Remember that du reports values in kb
18+
max_size=$((100 * 1024))
1619
kstartpid=$(mktemp /tmp/backup-ng-k5start.XXXXXXXXXX)
1720
kstartret=1
1821

@@ -24,8 +27,12 @@ while [ $kstartret -ne 0 ]; do
2427

2528
# Get a list of all the mysql databases
2629
for db in $(mysqlshow.py); do
30+
# Make sure the database is in the form username+db
2731
echo "$db" | grep -q '+'
2832
[ $? -ne 0 ] && continue
33+
# Figure out the size
34+
size=$(du -s /srv/data/mysql/db/$(mysqlname "$db") | awk '{print $1}')
35+
[ $size -gt $max_size ] && echo "Skipping $db" && continue
2936
user="${db%%+*}"
3037
sql-backup.py --local -c sql.mit.edu-afs.json --user="$user" --database="$db"
3138
done

0 commit comments

Comments
 (0)