You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Config | map[string]interface{} | Any field in [LoaderConfiguration](https://github.com/vhive-serverless/invitro/blob/main/docs/configuration.md#loader-configuration-file-format) except `Platform`| N/A | The configuration for each loader experiment which overrides configurations in baseLoaderConfig |
22
+
| Config | map[string]interface{} | Any field in [LoaderConfiguration](https://github.com/vhive-serverless/invitro/blob/main/docs/configuration.md#loader-configuration-file-format) except `Platform`| N/A | The configuration for each loader experiment which overrides configurations in baseLoaderConfig |
23
23
| Name | string | N/A | N/A | The name of the loader experiment |
24
24
| TracesDir | string | N/A | N/A | Directory containing the traces for the experiment |
25
25
| TracesFormat | string | "data/traces/example_{}" | N/A | Format of the trace files **The format string "{}" is required**|
@@ -29,7 +29,9 @@ As a wrapper around loader, multi-loader requires the initial cluster setup to b
29
29
| PreScript | string | any bash Command | "" | (Optional) Local script that runs this specific experiment |
30
30
| PostScript | string | any bash Command | "" | (Optional) Local script that runs this specific experiment |
31
31
32
-
> **_Important_**: Only one of the following is required:
32
+
> **_Important_**:
33
+
>
34
+
> Only one of the following is required:
33
35
> 1.`TracesDir`, or
34
36
> 2.`TracesFormat` and `TraceValues`, or
35
37
> 3.`TracePath` within the `LoaderExperiment`'s `Config` field
@@ -38,10 +40,13 @@ As a wrapper around loader, multi-loader requires the initial cluster setup to b
38
40
> 1.`TracesDir`,
39
41
> 2.`TracesFormat` and `TraceValues`,
40
42
> 3.`TracePath`
41
-
> The `Platform` field must not be overridden and should only defined in the base config.
42
-
> The `IatGeneration` and `Generated` fields might not work as expected for multiple experiments due to limitations of loader.
43
+
>
44
+
> The `Platform` field must not be overridden and should only be defined in the base config.
45
+
>
46
+
> The `IatGeneration` and `Generated` fields may not function as expected when handling multiple experiments due to limitations in the loader implementation.
43
47
44
48
> **_Note_**:
49
+
>
45
50
> The `Config` field follows the same structure as the [LoaderConfiguration](https://github.com/vhive-serverless/invitro/blob/main/docs/configuration.md#loader-configuration-file-format).
46
51
> Any field defined in `Config` will override the corresponding value from the configuration in `BaseConfigPath`, but only for that specific experiment.
47
52
> For example, if `BaseConfigPath` has `ExperimentDuration` set to 5 minutes, and you define `ExperimentDuration` as 10 minutes in `Config`, that particular experiment will run for 10 minutes instead.
0 commit comments