Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
force-bdss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adham Hashibon
force-bdss
Merge requests
!115
Introduced multilayer computation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Introduced multilayer computation
multilayering
into
master
Overview
1
Commits
5
Pipelines
0
Changes
8
Merged
Adham Hashibon
requested to merge
multilayering
into
master
6 years ago
Overview
1
Commits
5
Pipelines
0
Changes
8
Expand
Created by: stefanoborini
Introduces the possibility to perform more than one layer of DataSources
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
ff85ae1a
5 commits,
6 years ago
8 files
+
208
−
42
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
force_bdss/core/workflow.py
+
6
−
3
Options
@@ -13,9 +13,12 @@ class Workflow(HasStrictTraits):
#: Can be None if no MCO has been specified yet.
mco
=
Instance
(
BaseMCOModel
,
allow_none
=
True
)
#: Contains the factory-specific DataSource Model objects.
#: The list can be empty
data_sources
=
List
(
BaseDataSourceModel
)
#: The execution layers. Execution starts from the first layer,
#: where all data sources are executed in sequence. It then passes all
#: the computed data to the second layer, then the third etc.
#: For now, the final execution is performed by the KPI layer, but this
#: will go away when we remove the KPI calculators.
execution_layers
=
List
(
List
(
BaseDataSourceModel
))
#: Contains the factory-specific KPI Calculator Model objects.
#: The list can be empty
Loading