Skip to content
Snippets Groups Projects
Unverified Commit 36ea1304 authored by Luca Capello's avatar Luca Capello
Browse files

README.md: [local] s/\(DATA|RESULT\)_DIR/\1_PATH/g

parent 5c6e6333
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ Installation direct from the git repo:
# To run fio locally (which launches a single client locally)
make local SCENARIO=beegfs FIO_RW=randread NUM_CLIENTS=1 \
DATA_DIR=/path-to-test-dir RESULT_DIR=/path-to-result-dir
DATA_PATH=/path-to-test-dir RESULT_PATH=/path-to-result-dir
# Alternatively, to deploy multiple clients by creating k8s job
......
......@@ -38,8 +38,15 @@ cleanup () {
SCRATCH_DIR=$DATA_PATH/fio_read && [[ "${FIO_RW}" =~ "write" ]] && SCRATCH_DIR=/data/fio_write/$CLIENT_NAME
export SCRATCH_DIR
[ ${DEBUG} -eq 1 ] && \
echo "D: SCRATCH_DIR: ${SCRATCH_DIR}"
export SCENARIO_DIR=$RESULTS_PATH/$SCENARIO_NAME/$NUM_CLIENTS
[ ${DEBUG} -eq 1 ] && \
echo "D: SCENARIO_DIR: ${SCENARIO_DIR}"
export CLIENT_DIR=$RESULTS_PATH/$SCENARIO_NAME/$NUM_CLIENTS/$CLIENT_NAME
[ ${DEBUG} -eq 1 ] && \
echo "D: CLIENT_DIR: ${CLIENT_DIR}"
prepare
syncpods 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment