Activity log for bug #1612069

Date Who What changed Old value New value Message
2016-08-11 06:09:33 LIU Yulong bug added bug
2016-08-11 06:12:09 LIU Yulong summary HA router state change take too much time to notify neutron server HA router state change takes too much time to notify neutron server
2016-08-11 06:12:09 LIU Yulong description The ha state change BatchNotifier uses the following calculated interval. def _calculate_batch_duration(self): # Slave becomes the master after not hearing from it 3 times detection_time = self.conf.ha_vrrp_advert_int * 3 # Keepalived takes a couple of seconds to configure the VIPs configuration_time = 2 # Give it enough slack to batch all events due to the same failure return (detection_time + configuration_time) * 2 It takes almost 16s for a single HA router state change to notify neutron server. Actually before this notify, the ip MonitorDaemon has already set the router to its relevant state. So no need to wait this long time. The ha state change BatchNotifier uses the following calculated interval. def _calculate_batch_duration(self): # Slave becomes the master after not hearing from it 3 times detection_time = self.conf.ha_vrrp_advert_int * 3 # Keepalived takes a couple of seconds to configure the VIPs configuration_time = 2 # Give it enough slack to batch all events due to the same failure return (detection_time + configuration_time) * 2 It takes almost 16s, by default ha_vrrp_advert_int is 2s, for a single HA router state change to notify neutron server. Actually before this notify, the ip MonitorDaemon has already set the router to its relevant state. So no need to wait this long time.
2016-08-11 06:17:26 venkata anil tags l3-ha
2016-09-02 09:59:19 OpenStack Infra neutron: status New In Progress
2016-09-02 09:59:19 OpenStack Infra neutron: assignee LIU Yulong (dragon889)
2016-09-07 07:17:46 John Schwarz neutron: importance Undecided Low
2016-09-14 03:18:23 LIU Yulong attachment added 26_test_neutron.html https://bugs.launchpad.net/neutron/+bug/1612069/+attachment/4740526/+files/26_test_neutron.html
2017-02-22 15:51:37 Adam Spiers bug added subscriber Adam Spiers
2017-07-07 21:00:12 OpenStack Infra neutron: status In Progress Fix Released