-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Description
When testing the the database scope in OLB, the code overrides my settings from the DynamicSpotter. Happens in OLBDetectionController.java (see below). Any good reason for this?
@OverRide
public void executeExperiments() throws InstrumentationException, MeasurementException, WorkloadException {
if (!reuser) {
// TODO: fix that
if (scope.equals(OLBExtension.DB_SCOPE)) {
instrumentApplication(getInstrumentationDescription(1.0));
runExperiment(this, 1);
uninstrumentApplication();
instrumentApplication(getInstrumentationDescription(1.0));
runExperiment(this, 125);
uninstrumentApplication();
instrumentApplication(getInstrumentationDescription(0.1));
runExperiment(this, 250);
uninstrumentApplication();
instrumentApplication(getInstrumentationDescription(0.1));
runExperiment(this, 375);
uninstrumentApplication();
instrumentApplication(getInstrumentationDescription(0.05));
runExperiment(this, 500);
uninstrumentApplication();
} else {
executeDefaultExperimentSeries(this, experimentSteps, getInstrumentationDescription());
}
}
}
Metadata
Metadata
Assignees
Labels
No labels