diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-10 17:10:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-10 17:10:42 +0200 |
| commit | cae193284570d6ee9dbacdde57b3e4e367aa9d9f (patch) | |
| tree | 205bf08e503bc8b8bb2d5af77f0b4aee819f862b /gradle | |
| parent | 58ac6e203f38ea0122d08c74adf7644c478c3afe (diff) | |
| parent | f142be8c2afd1f19bdec183f1169639b7cd1a472 (diff) | |
merge: Integrate fault injector into compute simulator
This pull request integrates the fault injector into the `opendc-compute-simulator` module,
where it is now specialized to inject faults into `SimHost` instances.
The previous fault injector implementation supported generic targets,
but this caused the implementation to be more complex.
Since the fault injector was only used for `SimHost` instances,
we have decided to specialize it to `SimHost` for now.
- Support generic distribution in fault injector
- Terminate servers after reaching deadline
- Integrate fault injection into compute simulator
- Clarify terminology in compute service
** External Dependencies**
- Apache commons-math3
**Breaking API Changes**
- Removal of `opendc-simulator-failures` and its corresponding interfaces/classes.
Diffstat (limited to 'gradle')
| -rw-r--r-- | gradle/libs.versions.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 76846104..4e2fc777 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -2,6 +2,7 @@ classgraph = "4.8.115" clikt = "3.2.0" config = "1.4.1" +commons-math3 = "3.6.1" hadoop = "3.3.1" jackson = "2.12.5" junit-jupiter = "5.7.2" @@ -71,3 +72,4 @@ kotlinx-benchmark-runtime-jvm = { module = "org.jetbrains.kotlinx:kotlinx-benchm classgraph = { module = "io.github.classgraph:classgraph", version.ref = "classgraph" } hadoop-common = { module = "org.apache.hadoop:hadoop-common", version.ref = "hadoop" } hadoop-mapreduce-client-core = { module = "org.apache.hadoop:hadoop-mapreduce-client-core", version.ref = "hadoop" } +commons-math3 = { module = "org.apache.commons:commons-math3", version.ref = "commons-math3" } |
