mirror of
https://github.com/gluster/glusterfs.git
synced 2026-02-06 18:48:16 +01:00
* 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
19 lines
310 B
Bash
Executable File
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
|
|
|
|
|