X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=blobdiff_plain;f=cleaner%2Fcleanbench.sh;fp=cleaner%2Fcleanbench.sh;h=2d0bf1d78a4c219392b620b68c6b4fa23374bdf9;hp=0000000000000000000000000000000000000000;hb=347ada3d206b9839ca5944bc11918fef91ea2cf1;hpb=e82f49e722f0361090daeb13efa8ed75c8bb6f14 diff --git a/cleaner/cleanbench.sh b/cleaner/cleanbench.sh new file mode 100755 index 0000000..2d0bf1d --- /dev/null +++ b/cleaner/cleanbench.sh @@ -0,0 +1,22 @@ +#!/bin/bash +# +# Simple script to perform various random writes to files in a directory to +# create a workload for the cleaner. + +NUM_FILES=8 +NUM_BLOCKS=16 +BLOCKSIZE=512K + +NUM_WRITES=128 + +for n in $(seq 0 $(($NUM_FILES - 1))); do + [ -f file-$n ] || dd if=/dev/zero of=file-$n bs=$BLOCKSIZE count=$NUM_BLOCKS +done + +for i in $(seq $NUM_WRITES); do + f=$(($RANDOM % $NUM_FILES)) + b=$(($RANDOM % $NUM_BLOCKS)) + echo "Write $i: file $f block $b" + dd if=/dev/zero of=file-$f bs=$BLOCKSIZE count=1 seek=$b conv=notrunc + sleep 2 +done