Activity log for bug #1411163

Date Who What changed Old value New value Message
2015-01-15 09:24:54 Xiang Hui bug added bug
2015-01-15 09:45:22 venkata anil neutron: assignee venkata anil (anil-venkata)
2015-01-15 18:18:24 Eugene Nikanorov tags l2-pop
2015-01-15 18:18:58 Eugene Nikanorov neutron: importance Undecided Medium
2015-01-15 18:19:02 Eugene Nikanorov neutron: status New Confirmed
2015-02-13 06:04:24 venkata anil neutron: status Confirmed In Progress
2015-08-03 15:27:18 OpenStack Infra neutron: status In Progress Fix Committed
2015-08-11 13:23:37 OpenStack Infra tags l2-pop in-feature-pecan l2-pop
2015-09-03 19:07:41 Thierry Carrez neutron: status Fix Committed Fix Released
2015-09-03 19:07:41 Thierry Carrez neutron: milestone liberty-3
2015-10-09 01:30:46 Nobuto Murata bug added subscriber Nobuto Murata
2015-10-09 09:07:01 Ihar Hrachyshka tags in-feature-pecan l2-pop in-feature-pecan juno-backport-potential kilo-backport-potential l2-pop
2015-10-09 18:53:18 OpenStack Infra tags in-feature-pecan juno-backport-potential kilo-backport-potential l2-pop in-feature-pecan in-stable-kilo juno-backport-potential kilo-backport-potential l2-pop
2015-10-11 16:27:37 Chuck Short nominated for series neutron/kilo
2015-10-11 16:27:37 Chuck Short bug task added neutron/kilo
2015-10-11 16:27:45 Chuck Short neutron/kilo: status New Fix Committed
2015-10-11 16:27:49 Chuck Short neutron/kilo: milestone 2015.1.2
2015-10-13 19:24:33 Chuck Short neutron/kilo: status Fix Committed Fix Released
2015-10-15 12:30:17 Thierry Carrez neutron: milestone liberty-3 7.0.0
2016-11-10 01:59:48 Yoshi Kadokawa bug added subscriber Yoshi Kadokawa
2016-11-25 09:26:48 Xiang Hui attachment added trusty_updates_lp1411163.debdiff https://bugs.launchpad.net/neutron/+bug/1411163/+attachment/4782852/+files/trusty_updates_lp1411163.debdiff
2016-11-25 09:31:48 Xiang Hui description [Env] OpenStack: icehouse OS: ubuntu enable l2 population enable gre tunnel [Description] If the dhcp and l3 agent on the same host, then after this host is down, then there will be a probability that scheduled to other same host, then sometimes the ovs tunnel can't be created on the new scheduled host. [Root cause] After debugging, we found below log: 2015-01-14 13:44:18.284 9815 INFO neutron.plugins.ml2.drivers.l2pop.db [req-e36fe1fe-a08c-43c9-9d9c-75fe714d6f91 None] query:[<neutron.db.model s_v2.Port[object at 7f8d706a3650] {tenant_id=u'ae27091dccf148249349d6396e10f230', id=u'2061f5e4-c4a0-42ae-b611-4fe6c2c5cfbd', name=u'', network _id=u'12ee7040-119a-47bf-a968-67509ebb8eda', mac_address=u'fa:16:3e:b6:20:8e', admin_state_up=True, status=u'ACTIVE', device_id=u'dhcp28f6fc30- af6e-5f44-ae85-dcc1cc074ee5-12ee7040-119a-47bf-a968-67509ebb8eda', device_owner=u'network:dhcp'}>, <neutron.db.models_v2.Port[object at 7f8d706 a37d0] {tenant_id=u'ae27091dccf148249349d6396e10f230', id=u'6e99eae8-5c6a-4b8e-b9e1-dbd8d133dfa1', name=u'', network_id=u'12ee7040-119a-47bf-a9 68-67509ebb8eda', mac_address=u'fa:16:3e:22:56:ba', admin_state_up=True, status=u'ACTIVE', device_id=u'e63a0802-d86d-4a30-95fa-0005a6aef6fb', d evice_owner=u'network:router_interface'}>] Above shows there will be a probability that two ACTIVE ports shows up in db together, but from l2 pop mech_driver: " if agent_active_ports == 1 or ( self.get_agent_uptime(agent) < cfg.CONF.l2pop.agent_boot_time): " only in above condition the fdb entry will be added and notified to agent, so failures are pop up. [Env] OpenStack: icehouse OS: ubuntu enable l2 population enable gre tunnel [Description] If the dhcp and l3 agent on the same host, then after this host is down, then there will be a probability that scheduled to other same host, then sometimes the ovs tunnel can't be created on the new scheduled host. [Root cause] After debugging, we found below log: 2015-01-14 13:44:18.284 9815 INFO neutron.plugins.ml2.drivers.l2pop.db [req-e36fe1fe-a08c-43c9-9d9c-75fe714d6f91 None] query:[<neutron.db.model s_v2.Port[object at 7f8d706a3650] {tenant_id=u'ae27091dccf148249349d6396e10f230', id=u'2061f5e4-c4a0-42ae-b611-4fe6c2c5cfbd', name=u'', network _id=u'12ee7040-119a-47bf-a968-67509ebb8eda', mac_address=u'fa:16:3e:b6:20:8e', admin_state_up=True, status=u'ACTIVE', device_id=u'dhcp28f6fc30- af6e-5f44-ae85-dcc1cc074ee5-12ee7040-119a-47bf-a968-67509ebb8eda', device_owner=u'network:dhcp'}>, <neutron.db.models_v2.Port[object at 7f8d706 a37d0] {tenant_id=u'ae27091dccf148249349d6396e10f230', id=u'6e99eae8-5c6a-4b8e-b9e1-dbd8d133dfa1', name=u'', network_id=u'12ee7040-119a-47bf-a9 68-67509ebb8eda', mac_address=u'fa:16:3e:22:56:ba', admin_state_up=True, status=u'ACTIVE', device_id=u'e63a0802-d86d-4a30-95fa-0005a6aef6fb', d evice_owner=u'network:router_interface'}>] Above shows there will be a probability that two ACTIVE ports shows up in db together, but from l2 pop mech_driver: " if agent_active_ports == 1 or (                 self.get_agent_uptime(agent) < cfg.CONF.l2pop.agent_boot_time): " only in above condition the fdb entry will be added and notified to agent, so failures are pop up. --------------------------- [Impact] This patch addresses an issue on neutron(1:2014.1.5-0ubuntu6) where no tunnel is created between network node and compute node during failover testing and which causing vms unreachable. [Test Case] Deploy an OpenStack cloud w/ trusty-icehouse with neutron HA, doing failover tests on network nodes, there will be a high certain rate that this issue happened. [Regression Potential] None.
2016-11-30 12:50:33 Corey Bryant bug task added neutron (Ubuntu)
2016-11-30 12:50:43 Corey Bryant nominated for series Ubuntu Trusty
2016-11-30 12:50:43 Corey Bryant bug task added neutron (Ubuntu Trusty)
2016-11-30 12:50:53 Corey Bryant neutron (Ubuntu): status New Invalid
2016-11-30 14:08:21 Launchpad Janitor branch linked lp:~ubuntu-server-dev/neutron/icehouse
2016-11-30 14:13:52 Corey Bryant bug added subscriber Ubuntu Stable Release Updates Team
2016-12-07 11:07:06 Brian Murray neutron (Ubuntu Trusty): status New Incomplete
2016-12-07 12:42:15 Brian Murray bug added subscriber Brian Murray
2016-12-09 09:06:15 Xiang Hui neutron (Ubuntu Trusty): status Incomplete Fix Committed
2016-12-09 09:06:37 Xiang Hui neutron (Ubuntu Trusty): assignee Xiang Hui (xianghui)
2016-12-09 11:23:41 Timo Aaltonen bug added subscriber SRU Verification
2016-12-09 11:23:46 Timo Aaltonen tags in-feature-pecan in-stable-kilo juno-backport-potential kilo-backport-potential l2-pop in-feature-pecan in-stable-kilo juno-backport-potential kilo-backport-potential l2-pop verification-needed
2016-12-24 03:08:55 Mathew Hodson neutron (Ubuntu): status Invalid Fix Released
2016-12-24 03:09:05 Mathew Hodson neutron (Ubuntu Trusty): importance Undecided Medium
2016-12-24 03:09:07 Mathew Hodson neutron (Ubuntu): importance Undecided Medium
2017-01-04 14:37:38 Corey Bryant tags in-feature-pecan in-stable-kilo juno-backport-potential kilo-backport-potential l2-pop verification-needed in-feature-pecan in-stable-kilo juno-backport-potential kilo-backport-potential l2-pop verification-done
2017-01-25 10:18:57 Robie Basak removed subscriber Ubuntu Stable Release Updates Team
2017-01-25 10:29:02 Launchpad Janitor neutron (Ubuntu Trusty): status Fix Committed Fix Released