Add support for lag state in stateDB#344
Merged
lguohan merged 1 commit intosonic-net:masterfrom Oct 25, 2017
Merged
Conversation
Contributor
Author
|
root@sonic:/etc/sonic# redis-cli -n 6 keys PORTCH*
root@sonic:/etc/sonic# redis-cli -n 6 hgetall "PORTCHANNEL_TABLE|PortChannel47"
root@sonic:/etc/sonic# redis-cli -n 6 hgetall "PORTCHANNEL_TABLE|PortChannel46"
|
Create an entry in stateDB for each LAG created, and delete the entry when lag removed Signed-off-by: Jipan Yang <jipan.yang@alibaba-inc.com>
5766041 to
4c64b78
Compare
Contributor
Author
|
Has dependency on sonic-net/sonic-swss-common#143 |
This was referenced Oct 21, 2017
lguohan
reviewed
Oct 25, 2017
| m_lagTable(db, APP_LAG_TABLE_NAME), | ||
| m_lagMemberTable(db, APP_LAG_MEMBER_TABLE_NAME) | ||
| m_lagMemberTable(db, APP_LAG_MEMBER_TABLE_NAME), | ||
| m_stateLagTable(stateDb, STATE_LAG_TABLE_NAME, CONFIGDB_TABLE_NAME_SEPARATOR) |
Contributor
There was a problem hiding this comment.
-> state_db, check https://github.com/Azure/sonic-swss/pull/336/files
lguohan
approved these changes
Oct 25, 2017
EdenGri
pushed a commit
to EdenGri/sonic-swss
that referenced
this pull request
Feb 28, 2022
* Dump buffer pool and profile config Signed-off-by: Wenda <wenni@microsoft.com> * Add logic to set dynamic alpha Signed-off-by: Wenda <wenni@microsoft.com> * Add show mmu Signed-off-by: Wenda <wenni@microsoft.com> * Add command line description Signed-off-by: Wenda <wenni@microsoft.com> * Check alpha value range; exit with error message if field to set is not supported Signed-off-by: Wenda <wenni@microsoft.com>
oleksandrivantsiv
pushed a commit
to oleksandrivantsiv/sonic-swss
that referenced
this pull request
Mar 1, 2023
8db1eaf 2018-09-07 | added vxlan tunnel as possible condition for underlay interface attribute (sonic-net#870) (HEAD, origin/v1.3) [YonatanPitz] Signed-off-by: Guohan Lu <gulv@microsoft.com>
jianyuewu
pushed a commit
to jianyuewu/sonic-swss
that referenced
this pull request
Dec 24, 2025
* Add modifyRedis flag to consumer table object * Remove sal annotations * Add unittests * Address comments
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Create an entry in stateDB for each LAG created, and delete the entry when lag removed
Signed-off-by: Jipan Yang jipan.yang@alibaba-inc.com