Skip to content
Snippets Groups Projects

Implement Benchmarking Strategy: Heuristic 1 (Step Strategy)

Closed Simon Ehrenstein requested to merge stu200776/spesb:48-step-strategy into master
Files
17
+ 14
0
 
from dataclasses import dataclass
 
 
@dataclass
 
class SubexperimentConfig:
 
""" Wrapper for the configuration of a subexperiment """
 
use_case: str
 
counter: int
 
dim_value: int
 
replicas: int
 
partitions: int
 
cpu_limit: str
 
memory_limit: str
 
kafka_streams_commit_interval_ms: int
 
execution_minutes: int
 
\ No newline at end of file
Loading