package workload
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- case class MultiSuiteRunConfig(suitesParallel: Boolean, enableHive: Boolean, suites: Seq[Suite]) extends Product with Serializable
- case class Suite(description: Option[String], repeat: Int = 1, parallel: Boolean = false, benchmarkOutput: Option[String], saveMode: String, workloadConfigs: Seq[Map[String, Any]]) extends Product with Serializable
- trait Workload extends AnyRef
- trait WorkloadDefaults extends AnyRef
Value Members
- object ConfigCreator
- object MultipleSuiteKickoff
- object Suite extends Serializable
-
object
SuiteKickoff
Run each workload in the sequence.
Run each workload in the sequence. Run the sequence
repeattimes over. If my sequence is Seq(A, B, B, C), it's running serially, and repeat is 2, this will run like: A B B C --- A B B C --- DoneAs opposed to: A A -- B B -- B B -- C C --- Done