The roles
section is where we tell qDup which scripts to run on which hosts and
when to run them.
roles:
doit:
hosts: [server]
setup-scripts:
- download-runtime
- start-runtime
run-scripts:
- start-driver
cleanup-scripts:
- remove-runtime
The scripts can be listed by name or also a YAML mapping that sets script specific state values.
roles:
doit:
hosts: [server]
setup-scripts:
- download-runtime
- start-runtime:
with:
role: serverA
- start-runtime:
with:
role: serverB
run-scripts:
- start-driver
cleanup-scripts:
- remove-runtime
There are 3 phase to a qDup run:
-
setup
-
run
-
cleanup
The setup phase runs first and is designed for preparing the host for the performance test.
The scripts in the setup phase run sequentially to ensure a consistent environment for the run phase.
qDup takes a snapshot of the environment before and after all setup-scripts
and will apply those changes
to the ssh terminal for each run-scripts
and cleanup-scripts
in the same role.
The run phase is where all scripts start at the same time (with the environment changes from setup) and is designed to perform the performance test.