mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2024-11-22 08:46:56 -06:00
42 lines
592 B
Plaintext
42 lines
592 B
Plaintext
@startuml
|
|
|
|
Participant Input as i
|
|
Participant Thread as t
|
|
Participant Action as a
|
|
|
|
== acquire input data ==
|
|
|
|
group TIMER read-input
|
|
t -> i : get segment(stride)
|
|
activate i
|
|
t <- i : <cycle segment>[stride]
|
|
deactivate i
|
|
end
|
|
|
|
group TIMER strides
|
|
|
|
loop over cycle values in segment
|
|
group TIMER cycle
|
|
group TIMER phase
|
|
t -> a : runCycle(cycle)
|
|
activate a
|
|
t <- a : result
|
|
deactivate a
|
|
end
|
|
|
|
== additional phases ==
|
|
|
|
group TIMER phase
|
|
loop until phases complete
|
|
t -> a : runPhase(cycle)
|
|
activate a
|
|
t <- a : result
|
|
deactivate a
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end # strides
|
|
|
|
@enduml |