1
0
mirror of https://github.com/gluster/glusterfs.git synced 2026-02-06 18:48:16 +01:00
Files
glusterfs/extras/benchmarking/launch-script.sh
Amar Tumballi 0f33180bc3 * bug fix in stripe to show proper block size for the file.
* extended attribute in stripe is now optional (so one can do stripe volume on tmpfs too)

* minor bug fix in darwin part of compat.c

* added volume specfile options array in bdb.c

* added some scripts to do i/o benchmarking
2017-05-05 13:09:58 +05:30

19 lines
310 B
Bash
Executable File

#!/bin/sh
# This script is to launch the script in parallel across all the nodes.
mount_point="/mnt/glusterfs"
path_to_script="$mount_point}/benchmark/local-script.sh"
num_hosts=8
for i in $(seq 1 $num_hosts); do
ssh node$i path_to_script &
done
sleep 3;
touch ${mount_point}/benchmark/start-test