forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FRR]Setting multipath size to 514 and disabling bgp-vnc for optimiza…
…tion (sonic-net#20744) - Why I did it Increased the max multipath to 512. In addition removed bgp-vnc as this feature is not used by SONiC . https://docs.frrouting.org/en/latest/vnc.html#vnc-and-vnc-gw This feature adds overhead in general and removing this improves bgp convergence time for scale. - How I did it Added a patch modify debian rules. - How to verify it Run BGP tests in scaled topology.
- Loading branch information
1 parent
e736a83
commit f43d350
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
src/sonic-frr/patch/0061-Set-multipath-to-514-and-disable-bgp-vnc-for-optimiz.patch
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 501f267ec4c7359fc518ba31c5d63045c935045c Mon Sep 17 00:00:00 2001 | ||
From: dgsudharsan <[email protected]> | ||
Date: Wed, 4 Dec 2024 20:39:46 +0000 | ||
Subject: [PATCH] Set multipath to 514 and disable bgp-vnc for optimization | ||
|
||
|
||
diff --git a/debian/rules b/debian/rules | ||
index 5a8199afb7..3d762e6df1 100755 | ||
--- a/debian/rules | ||
+++ b/debian/rules | ||
@@ -66,8 +66,7 @@ override_dh_auto_configure: | ||
--disable-protobuf \ | ||
--disable-zeromq \ | ||
--enable-ospfapi \ | ||
- --enable-bgp-vnc \ | ||
- --enable-multipath=256 \ | ||
+ --enable-multipath=514 \ | ||
\ | ||
--enable-user=frr \ | ||
--enable-group=frr \ | ||
-- | ||
2.43.2 | ||
|
This file contains 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