From b07e6afc616a8ea542cf81239c8031a515d396d6 Mon Sep 17 00:00:00 2001 From: Idan Hefetz Date: Mon, 27 Nov 2017 14:32:58 +0000 Subject: [PATCH] Release notes Change-Id: I3dff86398ea6a2a28a65e40c5ecce475584e5539 --- .../notes/parallel_evaluation-db8660ef3ff5b864.yaml | 7 +++++++ .../persist_overlapping_scenarios-d426dffdf3d11094.yaml | 6 ++++++ releasenotes/notes/sql_integration-c33342d100492ceb.yaml | 5 +++++ 3 files changed, 18 insertions(+) create mode 100644 releasenotes/notes/parallel_evaluation-db8660ef3ff5b864.yaml create mode 100644 releasenotes/notes/persist_overlapping_scenarios-d426dffdf3d11094.yaml create mode 100644 releasenotes/notes/sql_integration-c33342d100492ceb.yaml diff --git a/releasenotes/notes/parallel_evaluation-db8660ef3ff5b864.yaml b/releasenotes/notes/parallel_evaluation-db8660ef3ff5b864.yaml new file mode 100644 index 000000000..39409d51e --- /dev/null +++ b/releasenotes/notes/parallel_evaluation-db8660ef3ff5b864.yaml @@ -0,0 +1,7 @@ +--- +features: + - Parallel evaluation of Vitrage templates. + The user can now specify a number of workers to evaluate the templates. + Each such worker, holds a clone of the graph and will evaluate a portion + of the template scenarios. The number of workers defaults to the number + of available cores. diff --git a/releasenotes/notes/persist_overlapping_scenarios-d426dffdf3d11094.yaml b/releasenotes/notes/persist_overlapping_scenarios-d426dffdf3d11094.yaml new file mode 100644 index 000000000..dba28ab14 --- /dev/null +++ b/releasenotes/notes/persist_overlapping_scenarios-d426dffdf3d11094.yaml @@ -0,0 +1,6 @@ +--- +features: + - Persisting of the current active actions. + Scenarios that execute the same actions are considered overlapping, + Vitrage keeps track of these actions, previously in-memory and now it is + stored in the DB. This allows for parallel evaluators. diff --git a/releasenotes/notes/sql_integration-c33342d100492ceb.yaml b/releasenotes/notes/sql_integration-c33342d100492ceb.yaml new file mode 100644 index 000000000..2190b721e --- /dev/null +++ b/releasenotes/notes/sql_integration-c33342d100492ceb.yaml @@ -0,0 +1,5 @@ +--- +features: + - Integration with Sql Alchemy. + Allows for data and state to be kept after restarts. + And will also allow a shared data store for multiple processes.