Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Add lazyDeployment flag to split operators #20

Open
bknasmueller opened this issue Oct 10, 2017 · 0 comments
Open

Add lazyDeployment flag to split operators #20

bknasmueller opened this issue Oct 10, 2017 · 0 comments
Assignees

Comments

@bknasmueller
Copy link
Contributor

By defining lazy-deployment to be TRUE or FALSE, Pathfinder will deploy all fallback paths' operators at initialisation or at their activation, respectively.

Example:

$split = Split($step1) {
   lazyDeployment = false,
   pathOrder = $step2a $step2b
 }

here, Pathfinder will deploy all operators in the paths $step2a and $step2b at topology initialisation time.

$split = Split($step1) {
   lazyDeployment = true,
   pathOrder = $step2a $step2b
 }

Here, pathfinder will first deploy the operators of path $step2a. Only if a fault in that path is detected, the operators of path $step2b are deployed and actively used.

@bknasmueller bknasmueller self-assigned this Oct 10, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant