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
This feature introduces an endpoint update for HA-flows: a partial update without paths recalculation. The condition for executing this kind of update is the updating only fields of endpoint that don't affect paths between them:
port
inner VLAN
outer VLAN
Create new paths in the FSM to bypass resources allocation and de-allocation
Make sure proper rules are installed
find out a way to check whether a diverse group ID has changed
Here are pictures of the new paths in the update FSM workflow. A new path skips old resources de-allocation (because the new are the same as the old):
and resources reverting on error (again, because the new and the old rules are the same):
As for the rules: at this point rule manager creates meters to add, which cannot be added, because they are already on the switch. So. apparently these rules could be skipped. However, it is not that straightforward how to implement it. One idea was to pass an additional flag to the rule manager from the build rules action and adjust the rule manager to use that. Probably there is a better way to implement it.
With the diverse group ID: changes in the diverse group ID says that the path might require recalculation and therefore endpoints update cannot be executed. However, database contains the current state and it is not clear whether the data from the update request lead to the diverse group ID change, it is not a part of the request object. There is a need to implement a method that will be invoked when a decision about the endpoints update is made, whether the diverse group ID changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This feature introduces an endpoint update for HA-flows: a partial update without paths recalculation. The condition for executing this kind of update is the updating only fields of endpoint that don't affect paths between them:
closes #5415