Reduce macsuck bandwidth usage to database (#680)
* Reduce macsuck bandwidth usage to database get_port_macs transfers a full list of all device_port.(mac,ip) in every macsuck. With 8k devices and 40k interfaces it takes up around 15MB. Transferring them 8k times during an 1h macsuck cycle requires bandwidth in the 300 to 400 mbit/s range. This patch changes get_port_macs to be called inside walk_fwtable and only transfer the macs found in the current target device/vlan.
This commit is contained in:
committed by
Oliver Gorwits
parent
b211c7c7e2
commit
26d3fbdd40
@@ -30,11 +30,11 @@ register_worker({ phase => 'main', driver => 'snmp' }, sub {
|
||||
# cache the device ports to save hitting the database for many single rows
|
||||
my $device_ports = {map {($_->port => $_)}
|
||||
$device->ports(undef, {prefetch => {neighbor_alias => 'device'}})->all};
|
||||
my $port_macs = get_port_macs();
|
||||
|
||||
my $interfaces = $snmp->interfaces;
|
||||
|
||||
# get forwarding table data via basic snmp connection
|
||||
my $fwtable = walk_fwtable($device, $interfaces, $port_macs, $device_ports);
|
||||
my $fwtable = walk_fwtable($device, $interfaces, $device_ports);
|
||||
|
||||
# ...then per-vlan if supported
|
||||
my @vlan_list = get_vlan_list($device);
|
||||
@@ -43,7 +43,7 @@ register_worker({ phase => 'main', driver => 'snmp' }, sub {
|
||||
foreach my $vlan (@vlan_list) {
|
||||
snmp_comm_reindex($snmp, $device, $vlan);
|
||||
my $pv_fwtable =
|
||||
walk_fwtable($device, $interfaces, $port_macs, $device_ports, $vlan);
|
||||
walk_fwtable($device, $interfaces, $device_ports, $vlan);
|
||||
$fwtable = {%$fwtable, %$pv_fwtable};
|
||||
}
|
||||
}
|
||||
@@ -265,7 +265,7 @@ sub get_vlan_list {
|
||||
# walks the forwarding table (BRIDGE-MIB) for the device and returns a
|
||||
# table of node entries.
|
||||
sub walk_fwtable {
|
||||
my ($device, $interfaces, $port_macs, $device_ports, $comm_vlan) = @_;
|
||||
my ($device, $interfaces, $device_ports, $comm_vlan) = @_;
|
||||
my $skiplist = {}; # ports through which we can see another device
|
||||
my $cache = {};
|
||||
|
||||
@@ -278,6 +278,9 @@ sub walk_fwtable {
|
||||
? {} : $snmp->qb_fw_vlan;
|
||||
my $bp_index = $snmp->bp_index;
|
||||
|
||||
my @fw_mac_list = values %$fw_mac;
|
||||
my $port_macs = get_port_macs(\@fw_mac_list);
|
||||
|
||||
# to map forwarding table port to device port we have
|
||||
# fw_port -> bp_index -> interfaces
|
||||
|
||||
|
||||
Reference in New Issue
Block a user