Skip to content
Snippets Groups Projects

Add Support for Benchmarking Strategies

Closed Simon Ehrenstein requested to merge stu200776/spesb:46-add-benchmarking-strategies into master
Files
8
+ 15
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
subexperiment_executor: object
\ No newline at end of file
Loading