*** baoli has joined #openstack-neutron | 00:01 | |
*** markvoelker has quit IRC | 00:01 | |
*** Sukhdev has joined #openstack-neutron | 00:07 | |
*** mfuruta has joined #openstack-neutron | 00:12 | |
*** rcernin has quit IRC | 00:13 | |
*** baoli has quit IRC | 00:13 | |
kevinbenton | mriedem: around? | 00:14 |
---|---|---|
*** lujinluo has joined #openstack-neutron | 00:22 | |
*** baoli has joined #openstack-neutron | 00:23 | |
*** yushiro has joined #openstack-neutron | 00:27 | |
*** baoli has quit IRC | 00:28 | |
*** hoangcx has joined #openstack-neutron | 00:30 | |
*** john-davidge has joined #openstack-neutron | 00:35 | |
*** chlong has joined #openstack-neutron | 00:36 | |
*** tbachman_ has joined #openstack-neutron | 00:37 | |
*** tbachman has quit IRC | 00:38 | |
*** tbachman_ is now known as tbachman | 00:38 | |
*** john-davidge has quit IRC | 00:40 | |
*** bzhao has joined #openstack-neutron | 00:41 | |
mriedem | kevinbenton: yeah, for a short bit | 00:45 |
*** namnh has joined #openstack-neutron | 00:45 | |
kevinbenton | mriedem: can you check my comment on that bug? | 00:45 |
kevinbenton | mriedem: it sounds like we made a bit of a bad assumption about how nova would interact with auto allocate | 00:45 |
kevinbenton | mriedem: mainly, is it feasible to have nova use GET auto allocate to find the network it should use? | 00:46 |
mriedem | kevinbenton: nova is calling the auto-allocate api to create the network, and then creating a port in that network | 00:47 |
mriedem | the failing test is just tempest asserting that there is a single network for the tenant | 00:47 |
mriedem | so i mean we can workaround that in tempest i guess, or document it as a limitation, | 00:48 |
mriedem | but what is cleaning up http://logs.openstack.org/01/327901/1/check/gate-tempest-dsvm-neutron-full/9972b81/logs/screen-q-svc.txt.gz#_2016-06-12_14_46_57_349 ? | 00:48 |
mriedem | a periodic task or something? | 00:48 |
mriedem | because i'm guessing the 2 servers have ports on different networks here, which is going to be the weird part for the actual tenant user | 00:48 |
kevinbenton | no, auto allocate will immediately detect after creating | 00:49 |
kevinbenton | and delete the second one | 00:49 |
mriedem | and return the first? | 00:49 |
kevinbenton | yeah | 00:49 |
kevinbenton | so as long as they are using the responses from that they are safe | 00:49 |
mriedem | ok, i guess if i can assert that the ports for the servers are in that one and only network, then i think i could live with it | 00:49 |
kevinbenton | there is just a small window where something doing net-list will see the temporary one | 00:49 |
mriedem | yeah nova is totally using the net_id returned from auto-allocate | 00:50 |
mriedem | yup, and that's tempest right now | 00:50 |
mriedem | although, | 00:50 |
kevinbenton | mriedem: https://github.com/openstack/neutron/blob/master/neutron/services/auto_allocate/db.py#L295-L307 | 00:50 |
mriedem | we could still have a race in nova when it's listing available networks for the tenant, it could get 2 back in this case, and pick the wrong one | 00:50 |
kevinbenton | mriedem: ah, is the decision process like "list networks, if none use auto allocate" ? | 00:51 |
mriedem | yup | 00:51 |
mriedem | sec | 00:51 |
mriedem | in here https://review.openstack.org/#/c/316275/12/nova/network/neutronv2/api.py@536 | 00:51 |
mriedem | we look for private tenant-owned networks or public shared networks, and if that's empty we call auto-allocate | 00:52 |
kevinbenton | hmmm | 00:52 |
mriedem | but if we had 3 concurrent requests, 1st creates the network via auto-allocate, 2nd calls auto at the same time, creates a 2nd network, hits that error and returns the first, but the 3rd calls get_available_networks and gets 2 networks back | 00:52 |
mriedem | oh in that case nova will fail | 00:53 |
kevinbenton | yep | 00:53 |
mriedem | https://review.openstack.org/#/c/316275/12/nova/network/neutronv2/api.py@574 | 00:53 |
mriedem | nova will see there is more than 1 but none were specified, and say it's ambiguous | 00:53 |
kevinbenton | go into a sleep and retry loop 60 times :) | 00:53 |
mriedem | gah | 00:54 |
kevinbenton | ok i'll see what we can do | 00:54 |
mriedem | well, how would you know which network is the real one to use, i.e. the first created? | 00:54 |
mriedem | is there any difference in status? | 00:54 |
mriedem | or would the 2nd not have a subnet or something? | 00:54 |
kevinbenton | no, we can certainly use a different status though | 00:54 |
kevinbenton | would you be willing to filter on the status? | 00:54 |
kevinbenton | ignore networks in ALLOCATING state or something? | 00:55 |
kevinbenton | mriedem: let me chat with armax when he's online | 00:56 |
kevinbenton | mriedem: we still have some other options | 00:56 |
kevinbenton | mriedem: just requires more logic on the neutron side | 00:56 |
mriedem | that might be an option. it'd be preferable to do any filtering when listing networks up front, rather than after we're in the NetworkAmbiguous block | 00:57 |
mriedem | i'll add some notes to the bug report too | 00:58 |
kevinbenton | mriedem: yeah, i was just thinking nova could automatically exclude ALLOCATING networks or even DOWN networks in all automatic selection like this | 00:58 |
*** banix has quit IRC | 00:59 | |
kevinbenton | mriedem: but it does kinda suck because its dealing with what should be neutron's responsibility | 01:00 |
*** thorst has joined #openstack-neutron | 01:01 | |
mriedem | the other thing would be, | 01:01 |
*** azbiswas has joined #openstack-neutron | 01:01 | |
mriedem | if that 3 server scenario above, would the 'real' network's status be ALLOCATING too, or only the 2nd bad one - seems like there would still be a window there | 01:01 |
mriedem | if the first and second networks were both allocating at the same time, then the 3rd request would get nothing back and call auto and possibly create a 3rd new bad network | 01:02 |
mriedem | idk | 01:02 |
kevinbenton | yeah | 01:02 |
kevinbenton | let's avoid that for now | 01:02 |
mriedem | this is probably part of the reason why armax wanted nova-api to just auto-allocate up front before casting off to the compute to build the port(s), but we pushed back on that because we don't want to block nova-api on external calls | 01:03 |
kevinbenton | yeah | 01:03 |
kevinbenton | definitely why :) | 01:03 |
kevinbenton | trying to bury the poop under the rug | 01:03 |
mriedem | heh | 01:03 |
mriedem | there is always the squish and the smell i guess | 01:03 |
mriedem | anyway, notes are in the bug report, i'm going to sign off (8pm for me here and it's been a long day outside) | 01:04 |
mriedem | kevinbenton: thanks for checking into that though | 01:04 |
*** thorst has quit IRC | 01:04 | |
kevinbenton | ok, i have the info i need to think about this more | 01:04 |
kevinbenton | mriedem: thx | 01:04 |
kevinbenton | mriedem: ttyl | 01:04 |
mriedem | i was sooo close to having this done and ready to go :) | 01:04 |
mriedem | yup, np, later | 01:04 |
*** mriedem has quit IRC | 01:04 | |
*** thorst has joined #openstack-neutron | 01:05 | |
*** stanzgy has joined #openstack-neutron | 01:07 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/neutron: Preventing overlap CIDR on *one* network in case neutron active-active https://review.openstack.org/314054 | 01:09 |
*** thorst has quit IRC | 01:13 | |
*** mickeys has joined #openstack-neutron | 01:21 | |
*** tbachman has quit IRC | 01:21 | |
*** tbachman has joined #openstack-neutron | 01:25 | |
openstackgerrit | Merged openstack/neutron: Fixes variable name confusion https://review.openstack.org/328711 | 01:25 |
*** thorst has joined #openstack-neutron | 01:26 | |
*** thorst has quit IRC | 01:26 | |
*** thorst has joined #openstack-neutron | 01:27 | |
*** hoangcx_ has joined #openstack-neutron | 01:27 | |
*** hoangcx has quit IRC | 01:28 | |
*** johnbelamaric has quit IRC | 01:30 | |
*** stanzgy has quit IRC | 01:31 | |
*** thorst has quit IRC | 01:31 | |
*** hoangcx has joined #openstack-neutron | 01:33 | |
*** hoangcx_ has quit IRC | 01:33 | |
*** donghao has joined #openstack-neutron | 01:34 | |
*** banix has joined #openstack-neutron | 01:35 | |
*** hoangcx_ has joined #openstack-neutron | 01:36 | |
*** kengo_sakai has joined #openstack-neutron | 01:36 | |
*** kengo_sakai has quit IRC | 01:36 | |
*** kengo_sakai has joined #openstack-neutron | 01:37 | |
*** EinstCrazy has joined #openstack-neutron | 01:37 | |
*** hoangcx__ has joined #openstack-neutron | 01:38 | |
*** baoli has joined #openstack-neutron | 01:38 | |
*** hoangcx has quit IRC | 01:39 | |
*** baoli has quit IRC | 01:40 | |
*** hoangcx_ has quit IRC | 01:41 | |
*** techcet has joined #openstack-neutron | 01:42 | |
*** jamesdenton has joined #openstack-neutron | 01:46 | |
*** techcet has quit IRC | 01:47 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/324838 | 01:50 |
*** hoangcx__ has quit IRC | 01:51 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/neutron: Avoiding created multiple gateway ports on *one* router gateway https://review.openstack.org/323807 | 01:53 |
*** kengo_sakai has quit IRC | 01:53 | |
*** mickeys has quit IRC | 01:54 | |
*** hoangcx has joined #openstack-neutron | 01:55 | |
*** tbachman has quit IRC | 01:56 | |
*** stanzgy has joined #openstack-neutron | 01:58 | |
*** markvoelker has joined #openstack-neutron | 01:58 | |
*** baoli has joined #openstack-neutron | 01:58 | |
*** baoli has quit IRC | 01:59 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: [WIP] Refactoring config options for agent https://review.openstack.org/324191 | 01:59 |
*** EinstCrazy has quit IRC | 02:01 | |
*** markvoelker has quit IRC | 02:02 | |
*** tbachman has joined #openstack-neutron | 02:03 | |
*** EinstCrazy has joined #openstack-neutron | 02:04 | |
*** gangil has quit IRC | 02:05 | |
*** yamamoto_ has joined #openstack-neutron | 02:05 | |
*** gangil has joined #openstack-neutron | 02:10 | |
*** sputnik13 has joined #openstack-neutron | 02:12 | |
*** sputnik13 has quit IRC | 02:13 | |
*** hoangcx_ has joined #openstack-neutron | 02:15 | |
*** jamesdenton has quit IRC | 02:15 | |
*** hoangcx has quit IRC | 02:18 | |
*** banix has quit IRC | 02:21 | |
openstackgerrit | Yang Yu proposed openstack/python-neutronclient: Update the bgp-peer-create CLI https://review.openstack.org/323182 | 02:25 |
*** banix has joined #openstack-neutron | 02:26 | |
*** thorst has joined #openstack-neutron | 02:30 | |
*** thorst has quit IRC | 02:30 | |
*** thorst has joined #openstack-neutron | 02:30 | |
*** vishwanathj has joined #openstack-neutron | 02:32 | |
*** yamamoto_ has quit IRC | 02:33 | |
*** hieulq has quit IRC | 02:33 | |
*** annp has joined #openstack-neutron | 02:33 | |
*** thorst has quit IRC | 02:36 | |
*** yamamoto_ has joined #openstack-neutron | 02:37 | |
*** hieulq has joined #openstack-neutron | 02:37 | |
HenryG | kevinbenton: Thanks for investigating and answering the auto-allocation issue for Matt. | 02:38 |
*** zhhuabj has joined #openstack-neutron | 02:38 | |
*** mickeys has joined #openstack-neutron | 02:39 | |
*** mickeys has quit IRC | 02:39 | |
*** banix has quit IRC | 02:39 | |
*** tbachman has quit IRC | 02:41 | |
*** hieulq has quit IRC | 02:46 | |
*** yamamoto_ has quit IRC | 02:46 | |
*** yamamoto_ has joined #openstack-neutron | 02:48 | |
*** hieulq has joined #openstack-neutron | 02:50 | |
*** yamamoto_ has quit IRC | 02:50 | |
*** azbiswas has quit IRC | 03:05 | |
*** ramishra has joined #openstack-neutron | 03:06 | |
*** annp has quit IRC | 03:10 | |
*** gouthamr has quit IRC | 03:12 | |
*** azbiswas has joined #openstack-neutron | 03:18 | |
*** Guest10310 has quit IRC | 03:28 | |
openstackgerrit | bin proposed openstack/neutron: Refactor DNS integration out of DB core plugin https://review.openstack.org/313291 | 03:28 |
openstackgerrit | Aradhana Singh proposed openstack/neutron: [WIP] Refactoring config options for agent https://review.openstack.org/324191 | 03:30 |
*** hoangcx has joined #openstack-neutron | 03:32 | |
*** yushiro has quit IRC | 03:33 | |
*** hoangcx_ has quit IRC | 03:33 | |
*** thorst has joined #openstack-neutron | 03:34 | |
*** yamamoto_ has joined #openstack-neutron | 03:34 | |
*** yamamoto_ has quit IRC | 03:36 | |
*** EinstCrazy has quit IRC | 03:36 | |
*** EinstCrazy has joined #openstack-neutron | 03:37 | |
*** thorst has quit IRC | 03:41 | |
*** shahid_ has joined #openstack-neutron | 03:43 | |
*** john-davidge has joined #openstack-neutron | 03:51 | |
*** iwamoto has joined #openstack-neutron | 03:53 | |
*** singhj has joined #openstack-neutron | 03:55 | |
*** john-davidge has quit IRC | 03:56 | |
*** hynekm has joined #openstack-neutron | 03:56 | |
*** EinstCrazy has quit IRC | 03:57 | |
*** EinstCrazy has joined #openstack-neutron | 03:57 | |
*** markvoelker has joined #openstack-neutron | 03:59 | |
*** yushiro has joined #openstack-neutron | 03:59 | |
*** lnicolas has quit IRC | 04:01 | |
*** Sukhdev has quit IRC | 04:02 | |
*** markvoelker has quit IRC | 04:03 | |
*** singhj has quit IRC | 04:03 | |
*** hynekm has quit IRC | 04:05 | |
*** vishwanathj has quit IRC | 04:06 | |
openstackgerrit | Yang Yu proposed openstack/python-neutronclient: Fixed --insecure not taking effect when specified https://review.openstack.org/273408 | 04:08 |
*** Sukhdev has joined #openstack-neutron | 04:10 | |
*** namnh has quit IRC | 04:18 | |
*** namnh has joined #openstack-neutron | 04:18 | |
*** diga has joined #openstack-neutron | 04:20 | |
*** vishwanathj has joined #openstack-neutron | 04:21 | |
*** vikasc has joined #openstack-neutron | 04:25 | |
*** vishwanathj has quit IRC | 04:25 | |
*** links has joined #openstack-neutron | 04:26 | |
*** yamamoto_ has joined #openstack-neutron | 04:33 | |
*** azbiswas has quit IRC | 04:37 | |
*** chandankumar has joined #openstack-neutron | 04:37 | |
*** thorst has joined #openstack-neutron | 04:39 | |
*** vishwanathj has joined #openstack-neutron | 04:42 | |
*** techcet has joined #openstack-neutron | 04:42 | |
*** gangil has quit IRC | 04:44 | |
*** jhershbe has joined #openstack-neutron | 04:45 | |
*** diga has quit IRC | 04:46 | |
*** thorst has quit IRC | 04:46 | |
*** diga has joined #openstack-neutron | 04:46 | |
*** Alex_Stef has joined #openstack-neutron | 04:47 | |
*** techcet has quit IRC | 04:47 | |
*** pgadiya has joined #openstack-neutron | 04:50 | |
*** ircuser-1 has joined #openstack-neutron | 04:50 | |
*** sbalukoff_ has quit IRC | 04:51 | |
*** sbalukoff_ has joined #openstack-neutron | 04:52 | |
openstackgerrit | Nam Nguyen Hoai proposed openstack/neutron: Preventing overlap CIDR on *one* network in case neutron active-active https://review.openstack.org/314054 | 04:53 |
*** kengo_sa_ has joined #openstack-neutron | 04:54 | |
*** kengo_sa_ has quit IRC | 05:00 | |
*** prateek has joined #openstack-neutron | 05:06 | |
*** emagana has joined #openstack-neutron | 05:07 | |
*** harshad has joined #openstack-neutron | 05:07 | |
*** vishwanathj has quit IRC | 05:09 | |
*** vishwanathj has joined #openstack-neutron | 05:10 | |
openstackgerrit | Aradhana Singh proposed openstack/neutron: [WIP] Refactoring config options for agent https://review.openstack.org/324191 | 05:10 |
*** numans has joined #openstack-neutron | 05:15 | |
*** gvrangan has joined #openstack-neutron | 05:18 | |
*** ilyashakhat has joined #openstack-neutron | 05:20 | |
*** salv-orlando has joined #openstack-neutron | 05:21 | |
*** salv-orl_ has quit IRC | 05:21 | |
*** itzikb has joined #openstack-neutron | 05:24 | |
*** sudipto has joined #openstack-neutron | 05:25 | |
*** dave-mccowan has quit IRC | 05:27 | |
*** salv-orl_ has joined #openstack-neutron | 05:29 | |
*** hynekm has joined #openstack-neutron | 05:29 | |
*** salv-orlando has quit IRC | 05:31 | |
*** azbiswas has joined #openstack-neutron | 05:31 | |
*** ratailor has joined #openstack-neutron | 05:34 | |
*** anilvenkata has joined #openstack-neutron | 05:41 | |
*** thorst has joined #openstack-neutron | 05:43 | |
*** kawa2014 has joined #openstack-neutron | 05:48 | |
*** moshele has joined #openstack-neutron | 05:48 | |
*** azbiswas has quit IRC | 05:50 | |
*** thorst has quit IRC | 05:51 | |
*** kawa2014 has quit IRC | 05:55 | |
*** M00nr41n has quit IRC | 05:56 | |
*** zhhuabj has quit IRC | 05:58 | |
*** nyechiel has joined #openstack-neutron | 05:58 | |
*** markvoelker has joined #openstack-neutron | 05:59 | |
*** chlong has quit IRC | 06:03 | |
*** markvoelker has quit IRC | 06:04 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Mark dhcp port as ready after enabling dhcp at agent https://review.openstack.org/327062 | 06:06 |
*** kawa2014 has joined #openstack-neutron | 06:07 | |
*** Leo_ has joined #openstack-neutron | 06:09 | |
*** sridhar_ram is now known as sridhar_ram_ooo | 06:11 | |
*** zhhuabj has joined #openstack-neutron | 06:12 | |
*** emagana has quit IRC | 06:13 | |
*** rcernin has joined #openstack-neutron | 06:14 | |
*** gampel has joined #openstack-neutron | 06:15 | |
*** chlong has joined #openstack-neutron | 06:15 | |
*** csatari has joined #openstack-neutron | 06:15 | |
*** rcernin has quit IRC | 06:18 | |
*** rcernin has joined #openstack-neutron | 06:19 | |
*** ilyashakhat has quit IRC | 06:22 | |
*** kobis has joined #openstack-neutron | 06:23 | |
*** vikram has joined #openstack-neutron | 06:24 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Imported Translations from Zanata https://review.openstack.org/328592 | 06:24 |
*** nmagnezi has joined #openstack-neutron | 06:25 | |
*** nmagnezi has quit IRC | 06:25 | |
*** ilyashakhat has joined #openstack-neutron | 06:26 | |
*** nmagnezi has joined #openstack-neutron | 06:27 | |
*** apoorv has joined #openstack-neutron | 06:27 | |
*** Leo_ has quit IRC | 06:30 | |
*** zhhuabj has quit IRC | 06:31 | |
openstackgerrit | Andreas Jaeger proposed openstack/neutron-fwaas: Remove POT file https://review.openstack.org/328861 | 06:32 |
*** zhhuabj has joined #openstack-neutron | 06:32 | |
*** vikasc has quit IRC | 06:34 | |
*** vikasc has joined #openstack-neutron | 06:34 | |
*** yfried has joined #openstack-neutron | 06:35 | |
*** ilyashakhat has quit IRC | 06:36 | |
*** tbachman has joined #openstack-neutron | 06:37 | |
*** abregman has joined #openstack-neutron | 06:38 | |
openstackgerrit | Brandon Logan proposed openstack/neutron: WIP: Pecan: Implement pagination https://review.openstack.org/328542 | 06:39 |
openstackgerrit | Brandon Logan proposed openstack/neutron: Pecan: move fields and filters logic to hooks https://review.openstack.org/328863 | 06:39 |
*** ushkalim has joined #openstack-neutron | 06:39 | |
*** sridharg has joined #openstack-neutron | 06:39 | |
*** itamarl has joined #openstack-neutron | 06:40 | |
openstackgerrit | garyk proposed openstack/neutron: Use neutron-lib constants https://review.openstack.org/328864 | 06:40 |
*** techcet has joined #openstack-neutron | 06:43 | |
*** andreas_s has joined #openstack-neutron | 06:45 | |
*** nyechiel has quit IRC | 06:47 | |
*** nplanel has joined #openstack-neutron | 06:47 | |
*** techcet has quit IRC | 06:47 | |
*** thorst has joined #openstack-neutron | 06:50 | |
*** azbiswas has joined #openstack-neutron | 06:50 | |
*** jpena|off is now known as jpena | 06:51 | |
*** claudiub has quit IRC | 06:51 | |
*** nplanel has quit IRC | 06:52 | |
*** EinstCrazy has quit IRC | 06:53 | |
*** thorst has quit IRC | 06:56 | |
*** EinstCrazy has joined #openstack-neutron | 06:56 | |
*** azbiswas has quit IRC | 06:57 | |
*** amotoki has joined #openstack-neutron | 07:00 | |
*** javeriak has joined #openstack-neutron | 07:00 | |
*** tesseract has joined #openstack-neutron | 07:00 | |
*** agireud has quit IRC | 07:04 | |
*** Leo_ has joined #openstack-neutron | 07:04 | |
*** salv-orl_ has quit IRC | 07:07 | |
*** agireud has joined #openstack-neutron | 07:07 | |
*** javeriak has quit IRC | 07:07 | |
*** salv-orlando has joined #openstack-neutron | 07:08 | |
*** Leo_ has quit IRC | 07:08 | |
*** roeyc has joined #openstack-neutron | 07:09 | |
*** mhickey has joined #openstack-neutron | 07:12 | |
*** john-davidge has joined #openstack-neutron | 07:12 | |
openstackgerrit | Hong Hui Xiao proposed openstack/neutron: Refactor update_segment_host_mapping_for_agent for agentless topology https://review.openstack.org/322486 | 07:12 |
*** fzdarsky has joined #openstack-neutron | 07:15 | |
*** elopez has joined #openstack-neutron | 07:15 | |
*** chlong has quit IRC | 07:15 | |
*** elopez is now known as Guest90337 | 07:16 | |
*** matrohon has joined #openstack-neutron | 07:16 | |
*** john-davidge has quit IRC | 07:17 | |
*** ihrachys has joined #openstack-neutron | 07:23 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: objects: Add filter query hook to NeutronDbObject https://review.openstack.org/328304 | 07:23 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: fix shared filter for policies https://review.openstack.org/328313 | 07:23 |
*** eddima has joined #openstack-neutron | 07:24 | |
*** vishwanathj has quit IRC | 07:27 | |
*** abregman_ has joined #openstack-neutron | 07:27 | |
*** Sukhdev has quit IRC | 07:27 | |
*** vishwanathj has joined #openstack-neutron | 07:27 | |
*** bcafarel has joined #openstack-neutron | 07:29 | |
*** abregman has quit IRC | 07:29 | |
*** jlanoux has joined #openstack-neutron | 07:30 | |
*** Alex_Stef has quit IRC | 07:30 | |
*** diga has quit IRC | 07:31 | |
*** abregman_ is now known as abregman | 07:31 | |
*** mohankumar has joined #openstack-neutron | 07:36 | |
openstackgerrit | IWAMOTO Toshihiro proposed openstack/neutron: DO NOT MERGE: A hack to measure ovs flow installation times https://review.openstack.org/267905 | 07:37 |
openstackgerrit | IWAMOTO Toshihiro proposed openstack/neutron: DO NOT MERGE: benchmark RPC get_devices_details_list_and_failed_devices https://review.openstack.org/328881 | 07:37 |
*** mikelk has joined #openstack-neutron | 07:38 | |
*** tmorin has joined #openstack-neutron | 07:40 | |
*** mikelk has quit IRC | 07:41 | |
*** jamie_h has joined #openstack-neutron | 07:42 | |
*** abregman has quit IRC | 07:43 | |
*** bobmel has quit IRC | 07:44 | |
*** mikelk has joined #openstack-neutron | 07:47 | |
*** diga has joined #openstack-neutron | 07:47 | |
*** edand has joined #openstack-neutron | 07:50 | |
*** saggi1 has joined #openstack-neutron | 07:52 | |
*** thorst has joined #openstack-neutron | 07:53 | |
*** sbalukoff_ has quit IRC | 07:54 | |
*** sbalukoff_ has joined #openstack-neutron | 07:54 | |
*** M00nr41n has joined #openstack-neutron | 07:55 | |
*** oanson has joined #openstack-neutron | 07:56 | |
*** abregman has joined #openstack-neutron | 07:57 | |
*** Leo_ has joined #openstack-neutron | 07:59 | |
*** kengo_sa_ has joined #openstack-neutron | 07:59 | |
*** zzzeek has quit IRC | 08:00 | |
*** permalac has joined #openstack-neutron | 08:00 | |
*** markvoelker has joined #openstack-neutron | 08:00 | |
*** zzzeek has joined #openstack-neutron | 08:00 | |
*** thorst has quit IRC | 08:01 | |
yushiro | ping ajo | 08:02 |
*** Leo_ has quit IRC | 08:03 | |
*** markvoelker has quit IRC | 08:05 | |
*** neiljerram has joined #openstack-neutron | 08:05 | |
openstackgerrit | ZhaoBo proposed openstack/neutron-dynamic-routing: Add bgp speaker and route advertisement doc https://review.openstack.org/318532 | 08:05 |
*** javeriak has joined #openstack-neutron | 08:08 | |
*** ygbo has joined #openstack-neutron | 08:12 | |
*** devvesa has joined #openstack-neutron | 08:12 | |
*** reedip has joined #openstack-neutron | 08:13 | |
*** chandankumar has quit IRC | 08:13 | |
*** chandankumar has joined #openstack-neutron | 08:14 | |
*** john-davidge has joined #openstack-neutron | 08:15 | |
*** reedip has quit IRC | 08:17 | |
*** reedip has joined #openstack-neutron | 08:17 | |
*** reedip has quit IRC | 08:17 | |
*** john-davidge has quit IRC | 08:19 | |
*** donghao has quit IRC | 08:20 | |
*** javeriak has quit IRC | 08:21 | |
*** donghao has joined #openstack-neutron | 08:22 | |
*** salv-orlando has quit IRC | 08:23 | |
*** salv-orlando has joined #openstack-neutron | 08:24 | |
*** mickeys has joined #openstack-neutron | 08:25 | |
zigo | I get loads of unit test failures when trying to build Neutron Newton b1: https://newton-xenial.pkgs.mirantis.com/job/neutron/6/consoleFull | 08:29 |
zigo | Could someone help me to fix that? | 08:29 |
zigo | What's weird, is that it seems working well in Jessie. | 08:29 |
*** oshvartz has joined #openstack-neutron | 08:29 | |
*** mickeys has quit IRC | 08:29 | |
*** javeriak has joined #openstack-neutron | 08:29 | |
*** gvrangan has quit IRC | 08:30 | |
*** javeriak has quit IRC | 08:30 | |
*** mickeys has joined #openstack-neutron | 08:30 | |
*** javeriak has joined #openstack-neutron | 08:30 | |
*** nplanel has joined #openstack-neutron | 08:32 | |
*** yfried_ has joined #openstack-neutron | 08:34 | |
*** reedip has joined #openstack-neutron | 08:34 | |
*** jlibosva has joined #openstack-neutron | 08:34 | |
*** mickeys has quit IRC | 08:34 | |
*** yfried has quit IRC | 08:34 | |
*** jsheeren has joined #openstack-neutron | 08:36 | |
*** reedip has quit IRC | 08:36 | |
*** jsheeren has quit IRC | 08:36 | |
*** reedip has joined #openstack-neutron | 08:36 | |
*** reedip has quit IRC | 08:37 | |
*** yushiro has quit IRC | 08:38 | |
*** chandankumar has quit IRC | 08:39 | |
*** chandankumar has joined #openstack-neutron | 08:40 | |
*** azbiswas has joined #openstack-neutron | 08:40 | |
*** dmk0202 has joined #openstack-neutron | 08:44 | |
ihrachys | jlibosva: I will update the hooks patch with cleanup | 08:44 |
*** azbiswas has quit IRC | 08:45 | |
ihrachys | in a sec | 08:45 |
jlibosva | ihrachys: have you seen my comment? | 08:45 |
ihrachys | nope, lemme check | 08:45 |
jlibosva | ihrachys: I wonder whether it's worth to check hook per every model/object we have | 08:45 |
ihrachys | jlibosva: probably not | 08:45 |
jlibosva | ihrachys: unless the hook is somehow overriden I think it would make sense to separate it from BaseDbObjectTestCase | 08:45 |
ihrachys | lemme upload what I have, and you will follow up with a separate case for that | 08:46 |
jlibosva | ihrachys: ack, thanks | 08:46 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: objects: Add filter query hook to NeutronDbObject https://review.openstack.org/328304 | 08:46 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: common_db_mixin: added a method to unregister query hooks https://review.openstack.org/328906 | 08:46 |
ihrachys | jlibosva: ^ note two patches | 08:46 |
*** harshad has quit IRC | 08:47 | |
*** jsheeren has joined #openstack-neutron | 08:48 | |
*** davidsha has joined #openstack-neutron | 08:51 | |
*** yfried has joined #openstack-neutron | 08:51 | |
*** Alex_Stef has joined #openstack-neutron | 08:52 | |
*** kengo_sa_ has quit IRC | 08:52 | |
*** fragatin_ has quit IRC | 08:52 | |
*** Leo_ has joined #openstack-neutron | 08:52 | |
*** reedip__ has joined #openstack-neutron | 08:53 | |
*** yfried_ has quit IRC | 08:55 | |
openstackgerrit | Slawek Kaplonski proposed openstack/python-neutronclient: Add no-shared option to qos-policy-update command https://review.openstack.org/327935 | 08:56 |
*** reedip__ has quit IRC | 08:56 | |
*** Leo_ has quit IRC | 08:57 | |
openstackgerrit | Hong Hui Xiao proposed openstack/python-neutronclient: Add segment as an attribute to subnet in client https://review.openstack.org/315573 | 08:58 |
*** gongysh has joined #openstack-neutron | 09:00 | |
*** thorst has joined #openstack-neutron | 09:00 | |
*** javeriak has quit IRC | 09:03 | |
*** javeriak has joined #openstack-neutron | 09:03 | |
*** ishant|away is now known as ishant | 09:04 | |
*** vikram has quit IRC | 09:05 | |
*** lujinluo has quit IRC | 09:06 | |
*** thorst has quit IRC | 09:06 | |
*** namnh has quit IRC | 09:07 | |
ajo | ihrachys, jlibosva have you seen this failure: http://logs.openstack.org/55/328655/1/check/gate-neutron-dsvm-api/fb314a2/console.html#_2016-06-11_20_42_39_022 ? | 09:10 |
ajo | not sure if related to recent pagination patches | 09:10 |
ajo | neutron.tests.tempest.api.test_subnetpools.SubnetPoolsSearchCriteriaTest.test_list_pagination_page_reverse_with_href_links | 09:10 |
ajo | 2016-06-11 20:42:39.024 | File "/opt/stack/new/neutron/neutron/tests/tempest/api/base.py", line 508, in assertSameOrder | 09:11 |
ajo | 2016-06-11 20:42:39.024 | self.assertEqual(len(original), len(actual)) | 09:11 |
*** wenjianhn_afk is now known as wenjianhn | 09:11 | |
jlibosva | ajo: yep, it should be fixed by now | 09:11 |
ihrachys | ajo: you should rebase | 09:11 |
ajo | ah nice :D | 09:11 |
ihrachys | or recheck | 09:11 |
ajo | ihrachys++ | 09:11 |
ihrachys | in gate context | 09:11 |
ajo | jlibosva++ | 09:11 |
ihrachys | that said, it happened June 11.. | 09:12 |
ihrachys | lemme check line numbers | 09:12 |
ajo | ack | 09:12 |
*** reedip__ has joined #openstack-neutron | 09:13 | |
ihrachys | ajo: doesn't seem like the fix hit the issue?.. | 09:14 |
ihrachys | line numbers are current | 09:14 |
openstackgerrit | Miguel Angel Ajo proposed openstack/neutron: Cleanup Liberty to Mitaka upgrade corner cases not necessary anymore https://review.openstack.org/323268 | 09:14 |
ihrachys | will dig a bit | 09:14 |
ajo | ihrachys, ack, thank you | 09:14 |
*** abregman is now known as abregman|afk | 09:16 | |
ihrachys | ajo: I need you to review a lot of ovo stuff :) | 09:16 |
ajo | ihrachys, yeah, things piling up on me ':D sorry, re-send me anything in order of priority, I'll try to handle it ASAP | 09:17 |
*** reedip__ has quit IRC | 09:17 | |
ihrachys | ajo: how about you ping me when you actually have time? not sure it's effective other way around. | 09:17 |
ajo | ihrachys, let's give it a try tomorrow, I'll try to drain most of my queue today | 09:18 |
ihrachys | ok. please do | 09:18 |
ihrachys | thanks | 09:18 |
*** hoangcx has quit IRC | 09:20 | |
*** roeyc has quit IRC | 09:21 | |
*** roeyc has joined #openstack-neutron | 09:22 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: tests: fetch unshared subnetpools only https://review.openstack.org/328923 | 09:23 |
ihrachys | ajo: jlibosva: ^ fix for the api test failure | 09:23 |
*** mfuruta has quit IRC | 09:23 | |
* ihrachys is dumb, stumbled on the same issue twice | 09:24 | |
*** mvk_ has quit IRC | 09:24 | |
ihrachys | though in different places | 09:24 |
*** ilyashakhat has joined #openstack-neutron | 09:25 | |
*** iwamoto has quit IRC | 09:25 | |
*** pcaruana has joined #openstack-neutron | 09:27 | |
*** john-davidge has joined #openstack-neutron | 09:28 | |
*** M00nr41n has quit IRC | 09:28 | |
*** amotoki has quit IRC | 09:31 | |
*** pjm6_ has joined #openstack-neutron | 09:34 | |
*** rossella_s has joined #openstack-neutron | 09:34 | |
*** reedip__ has joined #openstack-neutron | 09:34 | |
*** reedip__ has quit IRC | 09:37 | |
*** pjm6 has quit IRC | 09:38 | |
*** vikasc has quit IRC | 09:38 | |
*** roeyc has quit IRC | 09:42 | |
*** dsneddon has quit IRC | 09:48 | |
*** vikasc has joined #openstack-neutron | 09:50 | |
*** mvk_ has joined #openstack-neutron | 09:51 | |
*** abregman|afk is now known as abregman | 09:53 | |
*** emagana has joined #openstack-neutron | 09:54 | |
*** kengo_sa_ has joined #openstack-neutron | 09:55 | |
*** davidsha has quit IRC | 09:56 | |
*** numans has quit IRC | 09:58 | |
*** emagana has quit IRC | 09:58 | |
*** davidsha has joined #openstack-neutron | 10:00 | |
*** ilyashakhat has quit IRC | 10:01 | |
*** nyechiel has joined #openstack-neutron | 10:03 | |
*** kengo_sa_ has quit IRC | 10:03 | |
*** thorst has joined #openstack-neutron | 10:04 | |
*** djan has quit IRC | 10:06 | |
*** chandankumar has quit IRC | 10:10 | |
*** tbachman_ has joined #openstack-neutron | 10:10 | |
*** pjm6_ is now known as pjm6 | 10:10 | |
*** thorst has quit IRC | 10:11 | |
*** tbachman has quit IRC | 10:11 | |
*** tbachman_ is now known as tbachman | 10:11 | |
*** jsheeren has quit IRC | 10:12 | |
*** javeriak has quit IRC | 10:13 | |
*** iyamahat has joined #openstack-neutron | 10:14 | |
*** yamamoto_ has quit IRC | 10:19 | |
*** iyamahat has quit IRC | 10:19 | |
*** amotoki has joined #openstack-neutron | 10:19 | |
*** donghao has quit IRC | 10:23 | |
*** javeriak has joined #openstack-neutron | 10:26 | |
*** csatari has quit IRC | 10:27 | |
*** armax has joined #openstack-neutron | 10:28 | |
openstackgerrit | Miguel Angel Ajo proposed openstack/neutron-specs: QoS Improved validation mechanism for rules https://review.openstack.org/323474 | 10:31 |
ajo | ihrachys, ack, thanks | 10:31 |
*** armax has quit IRC | 10:33 | |
*** kawa2014 has quit IRC | 10:35 | |
*** diga has quit IRC | 10:38 | |
*** Leo_ has joined #openstack-neutron | 10:40 | |
*** mikelk has quit IRC | 10:41 | |
*** armax has joined #openstack-neutron | 10:42 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Extend utils create methods to accept check_allow_post https://review.openstack.org/328940 | 10:43 |
*** Leo_ has quit IRC | 10:45 | |
*** apoorv has quit IRC | 10:46 | |
ihrachys | jlibosva: do you plan to update the patch for hooks, or should I? | 10:47 |
slaweq | amotoki: hello | 10:47 |
jlibosva | ihrachys: I will - I also plan to comment | 10:48 |
slaweq | I changed releasenote in https://review.openstack.org/#/c/327935 | 10:48 |
jlibosva | ihrachys: on the first one | 10:48 |
slaweq | can You check it once again? :) | 10:48 |
amotoki | slaweq: hi. could you make two bullets into one? | 10:48 |
*** shahid_ has quit IRC | 10:49 | |
amotoki | slaweq: the rendered version can be checked by clicking gate-python-neutronclient-releasenotes of jenkins results. | 10:49 |
*** EinstCrazy has quit IRC | 10:49 | |
*** armax has quit IRC | 10:50 | |
*** sudipto has quit IRC | 10:50 | |
amotoki | slaweq: if you don't mind, i can update it. | 10:50 |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] unify portbinding for normal and dvr ports https://review.openstack.org/326987 | 10:50 |
*** armax has joined #openstack-neutron | 10:50 | |
slaweq | amotoki: ok, doing | 10:51 |
ihrachys | jlibosva: you want a fixture? | 10:53 |
slaweq | amotoki: ofcourse You can update it | 10:53 |
slaweq | it would be easier probably :) | 10:53 |
amotoki | slaweq: we always honor the authorship of the original author :-) | 10:53 |
jlibosva | ihrachys: I was thinking about separating the method that tests filter hook outside of BaseDbObjectTestCase | 10:54 |
jlibosva | ihrachys: I'll send a patch soon | 10:54 |
slaweq | for me it's not problem, You can change it if You want | 10:54 |
ihrachys | jlibosva: what does it buy us? | 10:54 |
ihrachys | jlibosva: I mean, I am ok with moving out | 10:54 |
ihrachys | jlibosva: but it does not solve the issue of polution | 10:54 |
jlibosva | ihrachys: we will use custom model and object | 10:55 |
ihrachys | jlibosva: and?.. | 10:55 |
ihrachys | jlibosva: you still will need to register the hook on common_db_mixin | 10:55 |
*** sputnik13_ has joined #openstack-neutron | 10:55 | |
*** armax has quit IRC | 10:55 | |
jlibosva | ihrachys: oh, I see. you mean it will still remain in common_db_mixin dict | 10:55 |
ihrachys | yes | 10:55 |
ihrachys | that's the goal of my patch, avoiding that | 10:56 |
*** namnh has joined #openstack-neutron | 10:56 | |
jlibosva | ihrachys: I missed that | 10:57 |
jlibosva | ihrachys: then maybe either moving the function to tests? | 10:57 |
jlibosva | ihrachys: or the fixture - which would be probably more elegant | 10:57 |
ihrachys | jlibosva: I am ok-ish, not that I agree that it's needed. | 10:58 |
ihrachys | HenryG was planning to move the code into neutron-lib | 10:58 |
openstackgerrit | Akihiro Motoki proposed openstack/python-neutronclient: Add no-shared option to qos-policy-update command https://review.openstack.org/327935 | 10:58 |
ihrachys | so probably a fixture is a better deal | 10:58 |
ihrachys | ok, let me spend a cycle on writing a fixture | 11:00 |
jlibosva | ihrachys: I can take over if you are busy | 11:00 |
*** sputnik13_ has quit IRC | 11:00 | |
ihrachys | jlibosva: I would love | 11:00 |
ihrachys | I mean, if you take over | 11:00 |
ihrachys | jlibosva: thanks | 11:01 |
*** amuller has joined #openstack-neutron | 11:01 | |
*** roeyc has joined #openstack-neutron | 11:02 | |
*** ociuhandu has joined #openstack-neutron | 11:03 | |
*** mikelk has joined #openstack-neutron | 11:04 | |
*** stanzgy_ has joined #openstack-neutron | 11:06 | |
*** salv-orlando has quit IRC | 11:07 | |
*** stanzgy has quit IRC | 11:07 | |
*** armax has joined #openstack-neutron | 11:08 | |
*** thorst has joined #openstack-neutron | 11:08 | |
*** salv-orlando has joined #openstack-neutron | 11:08 | |
*** stanzgy_ has quit IRC | 11:10 | |
namnh | amuller: Are you free? If yes, please review my patch set: https://review.openstack.org/#/c/314054/ .In this patch, I had a function to detect overlap IPv6. Thanks Mr.Assaf | 11:12 |
*** thorst has quit IRC | 11:15 | |
*** rtheis has joined #openstack-neutron | 11:16 | |
*** salv-orl_ has joined #openstack-neutron | 11:28 | |
openstackgerrit | Hong Hui Xiao proposed openstack/python-neutronclient: Add segment as an attribute to subnet in client https://review.openstack.org/315573 | 11:29 |
*** salv-orlando has quit IRC | 11:32 | |
*** thorst has joined #openstack-neutron | 11:33 | |
*** yamamoto has joined #openstack-neutron | 11:33 | |
*** namnh has quit IRC | 11:42 | |
*** csatari has joined #openstack-neutron | 11:42 | |
*** yamamoto has quit IRC | 11:44 | |
*** jpena is now known as jpena|lunch | 11:44 | |
ihrachys | HenryG: https://review.openstack.org/#/c/328923/ | 11:45 |
ihrachys | HenryG: it reminds me the definition of insanity | 11:46 |
*** elo has quit IRC | 11:46 | |
*** roeyc has quit IRC | 11:47 | |
*** baoli has joined #openstack-neutron | 11:47 | |
moshele | andreas_s: hi | 11:48 |
*** baoli_ has joined #openstack-neutron | 11:48 | |
*** amotoki has quit IRC | 11:49 | |
*** roeyc has joined #openstack-neutron | 11:49 | |
*** sdague has joined #openstack-neutron | 11:49 | |
*** baoli has quit IRC | 11:52 | |
andreas_s | moshele, hi | 11:53 |
*** yamamoto has joined #openstack-neutron | 11:53 | |
moshele | andreas_s: regarding allowed_address_pairs comment https://review.openstack.org/#/c/320562/ | 11:54 |
moshele | andreas_s: so as I see most of the use case is to add another ip address to the port | 11:54 |
*** wolverineav has quit IRC | 11:54 | |
moshele | andreas_s: in what case will I add another mac? | 11:55 |
andreas_s | moshele, ok. I must admit I don't know! Just saw in the docs that one can define arbitrary mappings... | 11:56 |
moshele | andreas_s: This feature make sene when using vip and you want to add it to you port, but the vip mac is the same as the interface mac | 11:57 |
moshele | andreas_s: also this redhat link https://access.redhat.com/solutions/2086033 address this feature as "Using Neutron's allowed-address-pairs feature to allow multiple IP addresses per interface for an Openstack instance" | 11:58 |
*** vikasc has quit IRC | 11:58 | |
andreas_s | moshele, yeah, found that link as well... | 11:59 |
moshele | andreas_s: so I don't know how to address it because I do know the use case. So I just for know to ignore it and if some find that is is broken we can address it as a bug | 11:59 |
andreas_s | ihrachys, do you know by chance, is there a use case for the allowed address pair extension where you would define an mac other than the ports own mac? | 12:01 |
openstackgerrit | ChangBo Guo(gcb) proposed openstack/neutron: Use method get_ipv6_addr_by_EUI64 from oslo.utils https://review.openstack.org/328976 | 12:01 |
*** raildo-afk is now known as raildo | 12:01 | |
*** markvoelker has joined #openstack-neutron | 12:01 | |
andreas_s | the docs indicate that this is possible, but the use case is not clear to us right now... | 12:02 |
ihrachys | andreas_s: maybe you want to allow traffic from ports unknown to neutron? | 12:03 |
*** mvk_ has quit IRC | 12:03 | |
moshele | ihrachys: how can I create port which unknown to neutron for a vm? | 12:03 |
andreas_s | ihrachys, hhmm. So for example for kvm on kvm? | 12:05 |
moshele | andreas_s: ok I see | 12:05 |
ihrachys | moshele: you may have your instance running on a domain that is external, right? I guess in that case the extension will allow you to receive traffic that uses some other IP address and that is sent by a physical machine on the domain, or smth. honestly, I don't actually know, just hypothesize | 12:06 |
*** pradk has joined #openstack-neutron | 12:06 | |
*** gampel has left #openstack-neutron | 12:06 | |
*** markvoelker has quit IRC | 12:06 | |
*** elo has joined #openstack-neutron | 12:08 | |
*** davidsha has quit IRC | 12:08 | |
*** ilyashakhat has joined #openstack-neutron | 12:08 | |
*** davidsha has joined #openstack-neutron | 12:08 | |
andreas_s | moshele, so what about enabling this in another stage, on request? This would mean just to mention this restriction in the release notes | 12:10 |
andreas_s | then it's documtented | 12:10 |
andreas_s | documented | 12:10 |
*** thorst has quit IRC | 12:11 | |
*** gongysh has quit IRC | 12:11 | |
*** yamamoto has quit IRC | 12:13 | |
*** thorst has joined #openstack-neutron | 12:15 | |
*** azbiswas has joined #openstack-neutron | 12:15 | |
*** sdague has quit IRC | 12:16 | |
*** sdague has joined #openstack-neutron | 12:16 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: objects: Add filter query hook to NeutronDbObject https://review.openstack.org/328304 | 12:16 |
*** amotoki has joined #openstack-neutron | 12:16 | |
*** azbiswas has quit IRC | 12:20 | |
HenryG | ihrachys: ugh | 12:20 |
*** zhenguo_ has quit IRC | 12:21 | |
*** ranjithd has joined #openstack-neutron | 12:21 | |
*** emagana has joined #openstack-neutron | 12:21 | |
*** dane_leblanc has quit IRC | 12:21 | |
*** kawa2014 has joined #openstack-neutron | 12:23 | |
*** markvoelker has joined #openstack-neutron | 12:25 | |
*** emagana has quit IRC | 12:26 | |
*** ramishra has quit IRC | 12:27 | |
*** ramishra has joined #openstack-neutron | 12:29 | |
*** Leo_ has joined #openstack-neutron | 12:29 | |
*** elo has quit IRC | 12:30 | |
*** pgadiya has quit IRC | 12:30 | |
*** Guest90337 has quit IRC | 12:31 | |
*** prithiv has joined #openstack-neutron | 12:31 | |
*** kriskend has joined #openstack-neutron | 12:32 | |
*** scottda has joined #openstack-neutron | 12:32 | |
*** tpsilva has joined #openstack-neutron | 12:32 | |
*** Leo_ has quit IRC | 12:34 | |
*** hoangcx has joined #openstack-neutron | 12:34 | |
*** javeriak has quit IRC | 12:36 | |
*** amotoki_ has joined #openstack-neutron | 12:38 | |
*** ushkalim has quit IRC | 12:39 | |
*** dane_leblanc has joined #openstack-neutron | 12:39 | |
*** amotoki has quit IRC | 12:41 | |
*** julim has joined #openstack-neutron | 12:42 | |
*** yfried has quit IRC | 12:43 | |
slaweq | amotoki_: plop | 12:44 |
*** kriskend has quit IRC | 12:44 | |
slaweq | can You maybe W+1 click on https://review.openstack.org/#/c/327935/ | 12:44 |
*** jpena|lunch is now known as jpena | 12:44 | |
*** mohankumar has quit IRC | 12:44 | |
amotoki_ | slaweq: done | 12:44 |
*** emagana has joined #openstack-neutron | 12:45 | |
slaweq | amotoki_: thx a lot | 12:45 |
*** jamesdenton has joined #openstack-neutron | 12:45 | |
*** yamamoto has joined #openstack-neutron | 12:46 | |
*** hoangcx_ has joined #openstack-neutron | 12:46 | |
*** yamamoto has quit IRC | 12:47 | |
*** amotoki_ has quit IRC | 12:48 | |
*** emagana has quit IRC | 12:49 | |
*** mvk has joined #openstack-neutron | 12:49 | |
*** john-davidge has quit IRC | 12:49 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: objects: Add filter query hook to NeutronDbObject https://review.openstack.org/328304 | 12:50 |
*** hoangcx_ has quit IRC | 12:50 | |
*** EinstCrazy has joined #openstack-neutron | 12:51 | |
*** hoangcx has quit IRC | 12:51 | |
*** ilyashakhat has quit IRC | 12:51 | |
*** ushkalim has joined #openstack-neutron | 12:51 | |
*** andreas_s has quit IRC | 12:52 | |
moshele | andreas_s: ok sound good | 12:52 |
*** hoangcx has joined #openstack-neutron | 12:52 | |
*** wolverineav has joined #openstack-neutron | 12:55 | |
*** EinstCrazy has quit IRC | 12:55 | |
*** jschwarz has joined #openstack-neutron | 12:55 | |
*** yamamoto has joined #openstack-neutron | 12:56 | |
*** yamamoto has quit IRC | 12:57 | |
*** chlong has joined #openstack-neutron | 12:58 | |
*** csatari has quit IRC | 12:58 | |
*** csatari has joined #openstack-neutron | 12:59 | |
*** mohankumar has joined #openstack-neutron | 12:59 | |
*** tangchen has quit IRC | 13:00 | |
*** armax has quit IRC | 13:00 | |
*** armax_ has joined #openstack-neutron | 13:00 | |
*** wolverineav has quit IRC | 13:00 | |
*** hoangcx has quit IRC | 13:00 | |
*** tangchen has joined #openstack-neutron | 13:00 | |
*** Alex_Stef has quit IRC | 13:01 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Don't return marker item when paginating backwards https://review.openstack.org/328992 | 13:01 |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Handle no limit in emulated pagination helper https://review.openstack.org/328993 | 13:01 |
*** sgordon` has joined #openstack-neutron | 13:01 | |
*** hoangcx has joined #openstack-neutron | 13:01 | |
*** kengo_sa_ has joined #openstack-neutron | 13:01 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: fix shared filter for policies https://review.openstack.org/328313 | 13:01 |
*** dave-mccowan has joined #openstack-neutron | 13:03 | |
*** pradk has quit IRC | 13:04 | |
*** armax has joined #openstack-neutron | 13:04 | |
*** oanson has quit IRC | 13:05 | |
*** armax_ has quit IRC | 13:05 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: added api sorting/pagination tests for policies https://review.openstack.org/328259 | 13:06 |
*** kengo_sa_ has quit IRC | 13:06 | |
*** lindycoder has joined #openstack-neutron | 13:06 | |
*** nplanel has quit IRC | 13:07 | |
*** oferby has joined #openstack-neutron | 13:08 | |
gsagie | oferby hello! | 13:09 |
*** armax_ has joined #openstack-neutron | 13:10 | |
gsagie | oferby: thanks for the review on my networking-l2gw patch, i was starting to feel lonely | 13:10 |
*** kriskend has joined #openstack-neutron | 13:11 | |
*** hdaniel has joined #openstack-neutron | 13:11 | |
*** oferb has quit IRC | 13:11 | |
*** armax has quit IRC | 13:11 | |
*** armax_ is now known as armax | 13:11 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: added api sorting/pagination tests for policies https://review.openstack.org/328259 | 13:12 |
*** yamamoto has joined #openstack-neutron | 13:13 | |
*** armax has quit IRC | 13:14 | |
*** edmondsw has joined #openstack-neutron | 13:15 | |
*** gouthamr has joined #openstack-neutron | 13:15 | |
*** vhoward has joined #openstack-neutron | 13:15 | |
openstackgerrit | Merged openstack/neutron: Remove useless str() https://review.openstack.org/328657 | 13:15 |
*** Alex_Stef has joined #openstack-neutron | 13:16 | |
*** yamamoto has quit IRC | 13:16 | |
*** lucas___ has joined #openstack-neutron | 13:17 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: support native sorting/pagination for policies and rules https://review.openstack.org/328273 | 13:19 |
openstackgerrit | Merged openstack/neutron: tests: fetch unshared subnetpools only https://review.openstack.org/328923 | 13:19 |
*** oferb has joined #openstack-neutron | 13:19 | |
*** leecalcote has quit IRC | 13:20 | |
*** leecalcote has joined #openstack-neutron | 13:21 | |
*** oferby has quit IRC | 13:21 | |
*** leecalcote has quit IRC | 13:25 | |
*** ushkalim has quit IRC | 13:26 | |
*** banix has joined #openstack-neutron | 13:26 | |
HenryG | ihrachys: I have lost my grasp on pagination marker details :( | 13:27 |
*** prithiv has quit IRC | 13:27 | |
ihrachys | HenryG: heh. tell me | 13:27 |
*** yamamoto has joined #openstack-neutron | 13:28 | |
*** Leo_ has joined #openstack-neutron | 13:29 | |
*** prithiv has joined #openstack-neutron | 13:29 | |
*** Leom has joined #openstack-neutron | 13:30 | |
*** yamamoto has quit IRC | 13:31 | |
*** yamamoto has joined #openstack-neutron | 13:32 | |
*** mvk has quit IRC | 13:32 | |
*** Leo_ has quit IRC | 13:33 | |
*** johnbelamaric has joined #openstack-neutron | 13:36 | |
openstackgerrit | Jakub Libosvar proposed openstack/neutron: objects: Add filter query hook to NeutronDbObject https://review.openstack.org/328304 | 13:36 |
*** hynekm has quit IRC | 13:36 | |
*** permalac has quit IRC | 13:37 | |
*** ushkalim has joined #openstack-neutron | 13:38 | |
openstackgerrit | Armando Migliaccio proposed openstack/neutron: Make UUID for auto allocated network predictable https://review.openstack.org/329006 | 13:38 |
*** Alex_Stef has quit IRC | 13:38 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: qos: fix shared filter for policies https://review.openstack.org/328313 | 13:40 |
*** jschwarz has quit IRC | 13:40 | |
openstackgerrit | Merged openstack/python-neutronclient: Add no-shared option to qos-policy-update command https://review.openstack.org/327935 | 13:41 |
*** janzian has joined #openstack-neutron | 13:42 | |
*** rodrigods has quit IRC | 13:43 | |
*** rodrigods has joined #openstack-neutron | 13:43 | |
openstackgerrit | garyk proposed openstack/neutron: Remove unit tests for deprecated code https://review.openstack.org/329009 | 13:45 |
*** andreas_s has joined #openstack-neutron | 13:46 | |
*** sudipto has joined #openstack-neutron | 13:47 | |
*** yamamoto has quit IRC | 13:48 | |
*** ushkalim has quit IRC | 13:49 | |
*** diga has joined #openstack-neutron | 13:49 | |
*** diga has quit IRC | 13:49 | |
*** mickeys has joined #openstack-neutron | 13:49 | |
*** hdaniel has quit IRC | 13:50 | |
*** diga has joined #openstack-neutron | 13:50 | |
*** ratailor has quit IRC | 13:51 | |
*** Alex_Stef has joined #openstack-neutron | 13:51 | |
*** prithiv has quit IRC | 13:51 | |
*** prithiv has joined #openstack-neutron | 13:52 | |
*** john-davidge has joined #openstack-neutron | 13:53 | |
*** roeyc has quit IRC | 13:53 | |
*** yamamoto has joined #openstack-neutron | 13:54 | |
*** links has quit IRC | 13:54 | |
*** mickeys has quit IRC | 13:54 | |
*** john-dav_ has joined #openstack-neutron | 13:54 | |
*** john-dav_ is now known as john-davidge_ | 13:54 | |
*** brad_behle has joined #openstack-neutron | 13:54 | |
*** leecalcote has joined #openstack-neutron | 13:55 | |
*** nmagnezi has quit IRC | 13:56 | |
*** mvk has joined #openstack-neutron | 13:56 | |
*** kengo_sakai has joined #openstack-neutron | 13:56 | |
*** mlavalle has joined #openstack-neutron | 13:56 | |
*** john-davidge has quit IRC | 13:57 | |
*** tonytan4ever has joined #openstack-neutron | 13:57 | |
*** leecalcote has quit IRC | 14:00 | |
*** kengo_sakai has quit IRC | 14:01 | |
*** ushkalim has joined #openstack-neutron | 14:02 | |
openstackgerrit | Brian Haley proposed openstack/neutron: Use neutron-lib constants https://review.openstack.org/328864 | 14:03 |
*** gongysh has joined #openstack-neutron | 14:03 | |
*** a_ta has joined #openstack-neutron | 14:03 | |
*** lindycoder has quit IRC | 14:04 | |
*** r-daneel has joined #openstack-neutron | 14:05 | |
*** oanson has joined #openstack-neutron | 14:05 | |
*** tbachman has quit IRC | 14:06 | |
*** tbachman has joined #openstack-neutron | 14:06 | |
openstackgerrit | James Anziano proposed openstack/neutron: Added UT for floating ips with dns https://review.openstack.org/301809 | 14:06 |
*** gongysh has quit IRC | 14:06 | |
*** singhj has joined #openstack-neutron | 14:07 | |
*** ishant is now known as ishant|away | 14:08 | |
*** krtaylor has quit IRC | 14:09 | |
*** banix has quit IRC | 14:09 | |
openstackgerrit | Ihar Hrachyshka proposed openstack/neutron: Don't return marker item when paginating backwards https://review.openstack.org/328992 | 14:09 |
*** banix has joined #openstack-neutron | 14:09 | |
*** prithiv has quit IRC | 14:10 | |
openstackgerrit | venkata anil proposed openstack/neutron: multiple port bindings for HA ports https://review.openstack.org/323314 | 14:10 |
*** prithiv has joined #openstack-neutron | 14:10 | |
*** jprovazn has joined #openstack-neutron | 14:11 | |
*** banix_ has joined #openstack-neutron | 14:12 | |
ihrachys | rossella_s: https://review.openstack.org/#/c/328304/ | 14:12 |
*** gongysh has joined #openstack-neutron | 14:12 | |
ihrachys | hook mechanism that we kinda depend on to make any progress | 14:12 |
*** eddima has quit IRC | 14:12 | |
*** pradk has joined #openstack-neutron | 14:12 | |
*** abregman has quit IRC | 14:13 | |
*** banix__ has joined #openstack-neutron | 14:14 | |
rossella_s | ihrachys, thanks for pinging me, will review when my meeting ends | 14:14 |
*** jschwarz has joined #openstack-neutron | 14:14 | |
*** banix has quit IRC | 14:14 | |
*** banix__ is now known as banix | 14:14 | |
*** eddima has joined #openstack-neutron | 14:14 | |
*** anilvenkata has quit IRC | 14:15 | |
*** ajmiller has joined #openstack-neutron | 14:15 | |
*** tbachman_ has joined #openstack-neutron | 14:17 | |
*** banix_ has quit IRC | 14:17 | |
*** tbachman has quit IRC | 14:18 | |
*** tbachman_ is now known as tbachman | 14:18 | |
*** permalac has joined #openstack-neutron | 14:21 | |
*** sridharg has quit IRC | 14:21 | |
*** garyk has joined #openstack-neutron | 14:21 | |
*** vishwanathj has quit IRC | 14:22 | |
garyk | ihrachys: i really do not understand the object to deleting code that is not used. seriously | 14:22 |
garyk | object => objection? | 14:22 |
openstackgerrit | Merged openstack/neutron: Cleanup Liberty to Mitaka upgrade corner cases not necessary anymore https://review.openstack.org/323268 | 14:23 |
*** yamamoto has quit IRC | 14:24 | |
ihrachys | garyk: it's a stretch of https://governance.openstack.org/reference/tags/assert_follows-standard-deprecation.html to python API | 14:24 |
*** ushkalim has quit IRC | 14:24 | |
*** yamamoto has joined #openstack-neutron | 14:25 | |
garyk | ihrachys: i think that this may be going to far. who is actually using this code? why are we testing it? whatever. just seems like a waiste of a few cycles for the gating … | 14:26 |
ihrachys | garyk: plugins were using it in the past. cisco. | 14:26 |
ihrachys | garyk: probably not anymore. but the fact that they did suggests that some other plugins may still do it | 14:27 |
garyk | ihrachys: i have not seen anyone using tins. then again i do not look at the cisco plugin | 14:27 |
*** kbringard has joined #openstack-neutron | 14:28 | |
garyk | funny thing is stuff like this is hard to convince and the fact that IP allocation is now random gets in :) | 14:28 |
ihrachys | see. the point is, you can't be sure no one uses it. | 14:28 |
*** yamamoto has quit IRC | 14:28 | |
garyk | see my point… | 14:28 |
ihrachys | well, I guess some cores were not attentive enough to let something breaking in | 14:28 |
ihrachys | now, let me check who's on the list... oh wait | 14:29 |
*** singhj has quit IRC | 14:30 | |
*** vishwanathj has joined #openstack-neutron | 14:30 | |
*** snizar_ has joined #openstack-neutron | 14:31 | |
*** snizar has joined #openstack-neutron | 14:31 | |
ihrachys | kevinbenton: ping | 14:31 |
*** jckasper has joined #openstack-neutron | 14:31 | |
garyk | ihrachys: i think that he is asleep… maybe in a couple of hours. | 14:31 |
ihrachys | so he sleeps??? those are news to me. ok. | 14:31 |
*** snizar has quit IRC | 14:32 | |
*** snizar_ has quit IRC | 14:32 | |
*** oshvartz has quit IRC | 14:32 | |
*** yamamoto has joined #openstack-neutron | 14:32 | |
*** sridhar_ram_ooo is now known as sridhar_ram | 14:34 | |
*** claudiub has joined #openstack-neutron | 14:35 | |
frickler | so I'm back with yet another MTU issue: https://bugs.launchpad.net/neutron/+bug/1592017 regarding the issues with MTU 1450 vs 1500 last week I tried to setup everything to run at 1500, but sadly that does not seem to be possible | 14:35 |
openstack | Launchpad bug 1592017 in neutron "ML2 uses global MTU for encapsulation calculation" [Undecided,New] | 14:35 |
*** yamamoto has quit IRC | 14:35 | |
openstackgerrit | tonytan4ever proposed openstack/neutron: Refactor NetworkDhcpAgentBinding https://review.openstack.org/328452 | 14:35 |
*** vishwanathj has quit IRC | 14:36 | |
*** itamarl has quit IRC | 14:37 | |
*** twm2016 has joined #openstack-neutron | 14:38 | |
*** EinstCrazy has joined #openstack-neutron | 14:39 | |
*** jschwarz has quit IRC | 14:39 | |
*** fnaval has quit IRC | 14:40 | |
openstackgerrit | Omer Anson proposed openstack/neutron: Add support to filter OVSDB columns https://review.openstack.org/329031 | 14:41 |
*** garyk has quit IRC | 14:41 | |
*** kobis has quit IRC | 14:43 | |
*** pai15 has joined #openstack-neutron | 14:45 | |
*** slunkad has joined #openstack-neutron | 14:45 | |
*** korzen has joined #openstack-neutron | 14:49 | |
*** yamamoto has joined #openstack-neutron | 14:49 | |
*** kriskend_ has joined #openstack-neutron | 14:50 | |
*** jlanoux has quit IRC | 14:50 | |
*** amotoki has joined #openstack-neutron | 14:51 | |
*** gvrangan has joined #openstack-neutron | 14:51 | |
*** yamamoto has quit IRC | 14:53 | |
*** fnaval has joined #openstack-neutron | 14:53 | |
*** oanson has quit IRC | 14:54 | |
*** ushkalim has joined #openstack-neutron | 14:54 | |
*** tmorin has quit IRC | 14:56 | |
*** yamamoto has joined #openstack-neutron | 14:56 | |
*** permalac has quit IRC | 14:58 | |
*** tmorin has joined #openstack-neutron | 14:58 | |
*** Alex_Stef has quit IRC | 14:58 | |
*** julim has quit IRC | 14:59 | |
*** jhershbe has quit IRC | 14:59 | |
*** emagana has joined #openstack-neutron | 14:59 | |
*** janzian has quit IRC | 14:59 | |
*** ushkalim has quit IRC | 15:00 | |
*** tonytan4ever has quit IRC | 15:00 | |
*** julim has joined #openstack-neutron | 15:00 | |
ihrachys | fyi upgrades meeting in #openstack-meeting-alt | 15:01 |
*** lindycoder has joined #openstack-neutron | 15:02 | |
openstackgerrit | Nate Johnston proposed openstack/neutron-specs: L3 Agent Extensions https://review.openstack.org/315745 | 15:02 |
*** lucas has joined #openstack-neutron | 15:02 | |
*** dsneddon has joined #openstack-neutron | 15:02 | |
*** gongysh has quit IRC | 15:03 | |
*** diga has quit IRC | 15:03 | |
*** emagana has quit IRC | 15:04 | |
*** emagana has joined #openstack-neutron | 15:04 | |
*** tbachman has quit IRC | 15:04 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] unify portbinding for normal and dvr ports https://review.openstack.org/326987 | 15:04 |
*** lucas___ has quit IRC | 15:04 | |
*** azbiswas has joined #openstack-neutron | 15:04 | |
*** csatari has quit IRC | 15:05 | |
*** yamamoto has quit IRC | 15:05 | |
*** gvrangan has quit IRC | 15:06 | |
*** yamamoto has joined #openstack-neutron | 15:07 | |
*** fzdarsky is now known as fzdarsky|afk | 15:07 | |
*** tbachman has joined #openstack-neutron | 15:07 | |
*** andreas_s has quit IRC | 15:07 | |
*** azbiswas has quit IRC | 15:09 | |
openstackgerrit | Jens Rosenboom proposed openstack/neutron: WIP: Only use path_mtu for determining Vxlan MTU https://review.openstack.org/329047 | 15:09 |
*** yamamoto has quit IRC | 15:10 | |
*** csatari has joined #openstack-neutron | 15:11 | |
*** ssalagame has joined #openstack-neutron | 15:11 | |
*** fragatina has joined #openstack-neutron | 15:11 | |
*** janzian has joined #openstack-neutron | 15:12 | |
*** singhj has joined #openstack-neutron | 15:12 | |
*** ankur-gupta-f has joined #openstack-neutron | 15:12 | |
*** yamamoto has joined #openstack-neutron | 15:12 | |
openstackgerrit | Jens Rosenboom proposed openstack/neutron: WIP: Only use path_mtu for determining Vxlan MTU https://review.openstack.org/329047 | 15:12 |
*** ushkalim has joined #openstack-neutron | 15:12 | |
*** sbalukoff_ has quit IRC | 15:12 | |
*** itzikb has quit IRC | 15:13 | |
*** permalac has joined #openstack-neutron | 15:13 | |
*** ajmiller_ has joined #openstack-neutron | 15:13 | |
*** david-lyle has joined #openstack-neutron | 15:15 | |
*** ajmiller has quit IRC | 15:16 | |
*** yamamoto has quit IRC | 15:17 | |
*** krtaylor has joined #openstack-neutron | 15:17 | |
*** vhosakot has joined #openstack-neutron | 15:17 | |
*** Swami has joined #openstack-neutron | 15:17 | |
*** Swami_ has joined #openstack-neutron | 15:18 | |
*** Swami_ has quit IRC | 15:18 | |
*** Swami has quit IRC | 15:18 | |
*** Swami has joined #openstack-neutron | 15:18 | |
*** JinLi has joined #openstack-neutron | 15:18 | |
openstackgerrit | Swaminathan Vasudevan proposed openstack/neutron: DVR: Clean stale snat-ns by checking its existence when agent restarts https://review.openstack.org/326729 | 15:19 |
Swami | carl_baldwin: haleyb: ^^ | 15:19 |
*** jlanoux has joined #openstack-neutron | 15:20 | |
*** devvesa has quit IRC | 15:20 | |
*** amuller is now known as amuller_afk | 15:21 | |
carl_baldwin | Swami: ack | 15:22 |
*** lennyb has quit IRC | 15:22 | |
Swami | carl_baldwin: thanks | 15:24 |
*** lennyb has joined #openstack-neutron | 15:25 | |
openstackgerrit | Jens Rosenboom proposed openstack/neutron: WIP: Only use path_mtu for determining Vxlan MTU https://review.openstack.org/329047 | 15:27 |
*** mhickey has quit IRC | 15:28 | |
*** edand has quit IRC | 15:29 | |
*** gangil has joined #openstack-neutron | 15:32 | |
*** al_loew has joined #openstack-neutron | 15:33 | |
*** ankur-gupta-f has quit IRC | 15:34 | |
*** moshele has quit IRC | 15:34 | |
*** tonytan4ever has joined #openstack-neutron | 15:34 | |
*** javeriak has joined #openstack-neutron | 15:35 | |
*** agireud has quit IRC | 15:36 | |
*** moshele has joined #openstack-neutron | 15:36 | |
*** prithiv has quit IRC | 15:36 | |
*** mikelk has quit IRC | 15:37 | |
*** moshele has quit IRC | 15:38 | |
*** agireud has joined #openstack-neutron | 15:38 | |
*** asingh has joined #openstack-neutron | 15:39 | |
*** tesseract has quit IRC | 15:39 | |
*** rtheis_ has joined #openstack-neutron | 15:40 | |
*** rtheis has quit IRC | 15:41 | |
*** azbiswas has joined #openstack-neutron | 15:43 | |
*** jhershbe has joined #openstack-neutron | 15:43 | |
*** javeriak_ has joined #openstack-neutron | 15:43 | |
*** leecalcote has joined #openstack-neutron | 15:44 | |
*** javeriak has quit IRC | 15:44 | |
*** ociuhandu has quit IRC | 15:45 | |
*** azbiswas_ has joined #openstack-neutron | 15:47 | |
*** manjeets has joined #openstack-neutron | 15:48 | |
openstackgerrit | Merged openstack/neutron: Use neutron-lib constants https://review.openstack.org/328864 | 15:48 |
*** leecalcote has quit IRC | 15:48 | |
*** slunkad has quit IRC | 15:49 | |
*** lucas has quit IRC | 15:49 | |
*** wasmum has quit IRC | 15:49 | |
*** vhosakot has quit IRC | 15:49 | |
*** vhosakot has joined #openstack-neutron | 15:49 | |
*** azbiswas has quit IRC | 15:50 | |
*** jhershbe has quit IRC | 15:51 | |
*** dmk0202 has quit IRC | 15:51 | |
*** tmorin has quit IRC | 15:52 | |
*** Sukhdev has joined #openstack-neutron | 15:54 | |
*** ivar-lazzaro has joined #openstack-neutron | 15:54 | |
*** Swami has quit IRC | 15:55 | |
*** gongysh has joined #openstack-neutron | 15:55 | |
*** Swami has joined #openstack-neutron | 15:56 | |
*** rcernin has quit IRC | 15:59 | |
*** wolverineav has joined #openstack-neutron | 16:01 | |
*** leecalcote has joined #openstack-neutron | 16:02 | |
*** rtheis has joined #openstack-neutron | 16:03 | |
*** pai15 has quit IRC | 16:03 | |
*** jhershbe has joined #openstack-neutron | 16:04 | |
*** lindycoder has quit IRC | 16:04 | |
*** rtheis_ has quit IRC | 16:04 | |
*** EinstCrazy has quit IRC | 16:04 | |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] Add ml2_port_binding_result table to to unify portbinding for dvr and normal ports https://review.openstack.org/326985 | 16:05 |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] unify portbinding for normal and dvr ports https://review.openstack.org/326987 | 16:05 |
openstackgerrit | Andreas Scheuring proposed openstack/neutron: [WIP] Remove vif_type & vif_details from ml2_portbinding table https://review.openstack.org/326986 | 16:05 |
tonytan4ever | kevinbenton: ping | 16:06 |
*** dxu has joined #openstack-neutron | 16:06 | |
*** pai15 has joined #openstack-neutron | 16:06 | |
tonytan4ever | Hi kevin, when you get a chance, can you review: https://review.openstack.org/#/c/319626/ again ? | 16:06 |
*** wolverineav has quit IRC | 16:07 | |
*** dxu has quit IRC | 16:07 | |
*** kawa2014 has quit IRC | 16:07 | |
*** dxu has joined #openstack-neutron | 16:07 | |
*** saggi1 has quit IRC | 16:07 | |
*** prateek has quit IRC | 16:08 | |
*** prithiv has joined #openstack-neutron | 16:08 | |
*** matrohon has quit IRC | 16:08 | |
*** gongysh has quit IRC | 16:09 | |
*** gongysh has joined #openstack-neutron | 16:10 | |
*** davidsha has quit IRC | 16:11 | |
*** jlibosva has quit IRC | 16:11 | |
*** mohankumar has quit IRC | 16:14 | |
tonytan4ever | Thanks | 16:14 |
*** jhershbe has quit IRC | 16:15 | |
*** gongysh has quit IRC | 16:16 | |
*** Swami has quit IRC | 16:17 | |
*** ssalagame has quit IRC | 16:17 | |
*** kawa2014 has joined #openstack-neutron | 16:19 | |
*** prithiv has quit IRC | 16:19 | |
openstackgerrit | tonytan4ever proposed openstack/neutron: Refactor NetworkDhcpAgentBinding https://review.openstack.org/328452 | 16:19 |
*** ygbo has quit IRC | 16:20 | |
*** fnaval_ has joined #openstack-neutron | 16:21 | |
*** matrohon has joined #openstack-neutron | 16:22 | |
openstackgerrit | Merged openstack/neutron-specs: Neutron Stadium Evolution https://review.openstack.org/312199 | 16:22 |
*** fnaval has quit IRC | 16:24 | |
*** salv-orl_ has quit IRC | 16:25 | |
*** salv-orlando has joined #openstack-neutron | 16:25 | |
*** moshele has joined #openstack-neutron | 16:30 | |
*** harshad has joined #openstack-neutron | 16:30 | |
*** rcernin has joined #openstack-neutron | 16:31 | |
*** fnaval_ has quit IRC | 16:31 | |
*** kevo has quit IRC | 16:32 | |
*** fnaval has joined #openstack-neutron | 16:32 | |
*** korzen has quit IRC | 16:32 | |
*** banix has quit IRC | 16:32 | |
*** Swami has joined #openstack-neutron | 16:34 | |
*** rcernin has quit IRC | 16:35 | |
*** wolverineav has joined #openstack-neutron | 16:35 | |
*** rcernin has joined #openstack-neutron | 16:36 | |
*** gongysh has joined #openstack-neutron | 16:36 | |
*** harshad has quit IRC | 16:37 | |
*** lindycoder has joined #openstack-neutron | 16:38 | |
*** sputnik13_ has joined #openstack-neutron | 16:38 | |
*** pcaruana has quit IRC | 16:38 | |
ihrachys | for those who wonder why the heck multinode grenade job fails hard in neutron gate, it's https://bugs.launchpad.net/os-brick/+bug/1592043 and it's not neutron related | 16:43 |
openstack | Launchpad bug 1592043 in os-brick "os-brick 1.4.0 increases volume setup failure rates" [Undecided,Confirmed] | 16:43 |
*** al_loew has quit IRC | 16:43 | |
*** gvrangan has joined #openstack-neutron | 16:44 | |
*** Alex_Stef has joined #openstack-neutron | 16:46 | |
*** ociuhandu has joined #openstack-neutron | 16:46 | |
*** csatari has quit IRC | 16:46 | |
*** M00nr41n has joined #openstack-neutron | 16:47 | |
*** kawa2014 has quit IRC | 16:48 | |
*** banix has joined #openstack-neutron | 16:51 | |
*** numans has joined #openstack-neutron | 16:53 | |
*** numans has quit IRC | 16:53 | |
*** numans has joined #openstack-neutron | 16:53 | |
*** inara has quit IRC | 16:55 | |
*** gongysh has quit IRC | 16:56 | |
*** azbiswas_ has quit IRC | 16:56 | |
*** azbiswas has joined #openstack-neutron | 16:57 | |
*** jckasper has quit IRC | 16:57 | |
*** jckasper has joined #openstack-neutron | 16:57 | |
*** iyamahat has joined #openstack-neutron | 16:57 | |
*** moshele has quit IRC | 16:59 | |
*** rossella_s has quit IRC | 17:01 | |
*** azbiswas has quit IRC | 17:01 | |
*** jckasper has quit IRC | 17:02 | |
*** kriskend has quit IRC | 17:02 | |
*** kriskend_ has quit IRC | 17:03 | |
*** jlanoux has quit IRC | 17:03 | |
*** ihrachys has quit IRC | 17:06 | |
*** fragatina has quit IRC | 17:06 | |
*** fragatina has joined #openstack-neutron | 17:06 | |
*** leecalcote has quit IRC | 17:08 | |
*** leecalcote has joined #openstack-neutron | 17:08 | |
*** john-davidge_ has quit IRC | 17:11 | |
*** bcafarel has quit IRC | 17:12 | |
*** leecalcote has quit IRC | 17:12 | |
*** zhhuabj has quit IRC | 17:13 | |
*** muneeb has joined #openstack-neutron | 17:13 | |
*** enikanorov has joined #openstack-neutron | 17:14 | |
*** yamahata has joined #openstack-neutron | 17:15 | |
*** jhershbe has joined #openstack-neutron | 17:16 | |
*** kevo has joined #openstack-neutron | 17:16 | |
*** saggi has joined #openstack-neutron | 17:19 | |
*** gsagie_ has joined #openstack-neutron | 17:19 | |
*** iyamahat has quit IRC | 17:19 | |
*** wolverineav has quit IRC | 17:20 | |
*** jckasper has joined #openstack-neutron | 17:20 | |
*** gangil has quit IRC | 17:21 | |
*** hdaniel has joined #openstack-neutron | 17:21 | |
*** gangil has joined #openstack-neutron | 17:22 | |
*** singhj has quit IRC | 17:25 | |
*** saggi has quit IRC | 17:26 | |
*** jamie_h has quit IRC | 17:27 | |
*** julim has quit IRC | 17:28 | |
*** yamahata has quit IRC | 17:28 | |
*** salv-orl_ has joined #openstack-neutron | 17:29 | |
*** HELLER[ca] has joined #openstack-neutron | 17:29 | |
*** oanson has joined #openstack-neutron | 17:29 | |
*** mickeys has joined #openstack-neutron | 17:30 | |
*** jhershbe has quit IRC | 17:31 | |
*** JinLi has quit IRC | 17:31 | |
*** hynekm has joined #openstack-neutron | 17:31 | |
*** salv-orl_ has quit IRC | 17:32 | |
*** salv-orlando has quit IRC | 17:32 | |
*** salv-orlando has joined #openstack-neutron | 17:32 | |
*** amuller_afk is now known as amuller | 17:33 | |
raildo | hey guys, any neutron core, can take a look on this patch? I'm creating a job to run neutron funcion | 17:33 |
raildo | that runs neutron functional tests in a | 17:33 |
raildo | identity v3-only devstack, and adds this job to the neutron | 17:33 |
raildo | pipeline. | 17:33 |
raildo | https://review.openstack.org/#/c/314604/ | 17:34 |
*** rustyeddy has joined #openstack-neutron | 17:34 | |
*** aranjan has joined #openstack-neutron | 17:35 | |
*** aranjan has quit IRC | 17:35 | |
*** vhosakot has quit IRC | 17:36 | |
*** jhershbe has joined #openstack-neutron | 17:36 | |
*** pcaruana has joined #openstack-neutron | 17:39 | |
*** abhiraut has joined #openstack-neutron | 17:40 | |
*** vhosakot has joined #openstack-neutron | 17:41 | |
*** sambetts is now known as sambetts|afk | 17:42 | |
*** abhiraut has quit IRC | 17:43 | |
*** puck has quit IRC | 17:43 | |
*** wolverineav has joined #openstack-neutron | 17:44 | |
*** fnaval has quit IRC | 17:45 | |
*** rusty has joined #openstack-neutron | 17:45 | |
openstackgerrit | Ilya Chukhnakov proposed openstack/neutron: Override 'create' for Trunk and SubPort https://review.openstack.org/323518 | 17:45 |
amuller | raildo: done | 17:45 |
raildo | amuller: looking, thanks :) | 17:45 |
*** rusty is now known as Guest59739 | 17:45 | |
*** fnaval has joined #openstack-neutron | 17:45 | |
*** abhiraut has joined #openstack-neutron | 17:46 | |
*** numans has quit IRC | 17:46 | |
*** iyamahat has joined #openstack-neutron | 17:46 | |
*** tongli has joined #openstack-neutron | 17:47 | |
*** puck has joined #openstack-neutron | 17:47 | |
*** korzen has joined #openstack-neutron | 17:48 | |
*** sudipto has quit IRC | 17:48 | |
*** rustyeddy has quit IRC | 17:48 | |
*** ivar-lazzaro has quit IRC | 17:51 | |
*** Sukhdev has quit IRC | 17:52 | |
*** Sukhdev has joined #openstack-neutron | 17:52 | |
*** Sukhdev has quit IRC | 17:52 | |
*** jpena is now known as jpena|off | 17:53 | |
*** fragatina has quit IRC | 17:53 | |
*** kriskend has joined #openstack-neutron | 17:54 | |
*** kriskend_ has joined #openstack-neutron | 17:54 | |
*** yamahata has joined #openstack-neutron | 17:55 | |
*** gsagie_ has quit IRC | 17:55 | |
*** wolverineav has quit IRC | 17:55 | |
*** ijw has joined #openstack-neutron | 17:56 | |
*** wolverineav has joined #openstack-neutron | 17:56 | |
*** ijw has quit IRC | 17:57 | |
*** ijw has joined #openstack-neutron | 17:57 | |
*** fragatina has joined #openstack-neutron | 18:00 | |
*** jhershbe has quit IRC | 18:01 | |
*** johnbelamaric has quit IRC | 18:02 | |
dasm | amuller: thanks for +2 on oslo "thing" :) | 18:02 |
*** johnbelamaric1 has joined #openstack-neutron | 18:02 | |
*** yfried has joined #openstack-neutron | 18:02 | |
*** gangil has quit IRC | 18:03 | |
*** inara has joined #openstack-neutron | 18:03 | |
amuller | dasm: :) | 18:03 |
*** hdaniel has quit IRC | 18:05 | |
*** michchap has quit IRC | 18:05 | |
*** ivar-lazzaro has joined #openstack-neutron | 18:05 | |
*** fragatina has quit IRC | 18:06 | |
*** singhj has joined #openstack-neutron | 18:06 | |
*** korzen has quit IRC | 18:07 | |
*** abhiraut has quit IRC | 18:07 | |
*** hdaniel has joined #openstack-neutron | 18:08 | |
*** sbalukoff_ has joined #openstack-neutron | 18:08 | |
*** abhiraut has joined #openstack-neutron | 18:09 | |
*** michchap has joined #openstack-neutron | 18:13 | |
*** hdaniel has quit IRC | 18:14 | |
*** brad_behle has quit IRC | 18:14 | |
*** brad_behle has joined #openstack-neutron | 18:15 | |
*** azbiswas has joined #openstack-neutron | 18:16 | |
*** johnbelamaric1 has quit IRC | 18:18 | |
*** ankur-gupta-f has joined #openstack-neutron | 18:19 | |
*** wolverin_ has joined #openstack-neutron | 18:19 | |
*** johnbelamaric has joined #openstack-neutron | 18:19 | |
*** wolverin_ has quit IRC | 18:19 | |
*** sbalukoff_ is now known as sbalukoff | 18:19 | |
*** wolverineav has quit IRC | 18:20 | |
*** wolverineav has joined #openstack-neutron | 18:20 | |
*** Guest59739 has quit IRC | 18:22 | |
sc68cal | guess nobody wants to bother with fwaas - so everyone goes back to mucking with the SG api eh? https://bugs.launchpad.net/bugs/1592005 and https://bugs.launchpad.net/bugs/1592028 | 18:24 |
openstack | Launchpad bug 1592005 in neutron "[RFE] Security-groups that blocks matched traffic" [Wishlist,Confirmed] | 18:24 |
openstack | Launchpad bug 1592028 in neutron "[RFE] Support security-group-rule creation with address-groups" [Wishlist,Confirmed] | 18:24 |
njohnston | I assume SG change requests are a constant stream | 18:24 |
sean-k-mooney | sc68cal: my understanding is that ere is alot of overlap between both apis. the key difference being that fwaas operates between networks and SG operates on ports correct? | 18:25 |
sc68cal | in the v1 api. but we spent a year developing a v2 api that was port based | 18:26 |
sc68cal | but screw that, let's just shove more shit into the security group API | 18:26 |
sc68cal | because why not | 18:26 |
*** ivar-lazzaro has quit IRC | 18:26 | |
*** lucas___ has joined #openstack-neutron | 18:27 | |
sean-k-mooney | sc68cal: ah ok so the v2 fwaas api added the ablity to do per neutron firewall rules also so its a superset of the security group api then? | 18:27 |
sc68cal | v1 api had an API extension that allowed you to set a per-router firewall policy instead of global, but yes it was supposed to be a superset | 18:28 |
sean-k-mooney | s/neutron/neutron port/ | 18:28 |
amuller | sc68cal: well, none of those RFEs have been discussed yet in the drivers meeting | 18:28 |
amuller | sc68cal: or anywhere | 18:28 |
*** pai15 has quit IRC | 18:28 | |
amuller | sc68cal: no need to be gloom just yet! | 18:28 |
njohnston | sean-k-mooney: https://specs.openstack.org/openstack/neutron-specs/specs/newton/fwaas-api-2.0.html for your reading pleasure. There is a team of 8 or 9 people working on implementing this currently. | 18:28 |
sc68cal | so I guess we're going to continually give a stay of execution to fwaas? | 18:29 |
sean-k-mooney | njohnston: thanks :) | 18:29 |
sc68cal | just keep pushing it off every 6 months? | 18:29 |
sc68cal | I think we should let them turn the SG API into an even bigger mess - and kill of fwaas. Just burn the whole thing down. | 18:30 |
amuller | I'm sending some pent up frustration :) | 18:31 |
njohnston | sc68cal: All I can do is try. :-) | 18:31 |
amuller | sensing* | 18:31 |
dasm | sc68cal: i think simpler thing is just to `rm -rf openstack/neutron` | 18:31 |
* njohnston figured it would be hard to get "Burn it all down" merged into neutron-specs. | 18:31 | |
sc68cal | dasm: heh. I'm not that far gone. close though, some days | 18:31 |
dasm | njohnston: idea for next April's Fool Day? | 18:32 |
dasm | sc68cal: sometimes it's worth to start over.. from scratch :) | 18:32 |
sc68cal | nah, Jogo already did that when he left openstack for pinterest | 18:32 |
dasm | :( | 18:33 |
* sean-k-mooney mentions gluon in neturon irc channel and ducks :) | 18:33 | |
*** korzen has joined #openstack-neutron | 18:34 | |
sc68cal | oh yeah let's throw out a project with thousands of contributors for like what, ten? tops? | 18:35 |
sc68cal | oh sorry, two | 18:36 |
sean-k-mooney | sc68cal: atully on a related topic to security groups and fwaas service. has there been any progress towords a common classifier? | 18:38 |
sc68cal | there's the POC library, but I don't think anyone cares | 18:39 |
*** fragatina has joined #openstack-neutron | 18:39 | |
sean-k-mooney | https://github.com/openstack/neutron-classifier | 18:40 |
sean-k-mooney | that one | 18:40 |
sc68cal | yep | 18:40 |
*** gangil has joined #openstack-neutron | 18:40 | |
njohnston | I thought davidsha and some of the SFC people were looking at that? | 18:41 |
sean-k-mooney | i work with igordcard and he is interested in it. i see value in it too | 18:41 |
sean-k-mooney | njohnston: the sfc approch is different | 18:41 |
*** pai15 has joined #openstack-neutron | 18:41 | |
sean-k-mooney | it is similar to security groups today where the classification is represented as a singel resource | 18:42 |
*** gvrangan has quit IRC | 18:42 | |
sean-k-mooney | if i remember correctly https://github.com/openstack/neutron-classifier has typed classifcations | 18:42 |
sean-k-mooney | sc68cal: is that correct? | 18:42 |
sc68cal | I don't know about the SFC approach | 18:43 |
*** JinLi has joined #openstack-neutron | 18:43 | |
sc68cal | all I know is I saw a dictionary called L7 attributes or something like that and i was like, nah. | 18:44 |
*** abregman has joined #openstack-neutron | 18:44 | |
sean-k-mooney | networking sfc classification https://github.com/openstack/networking-sfc/blob/master/networking_sfc/db/flowclassifier_db.py#L50-L74 | 18:45 |
sean-k-mooney | vs https://github.com/openstack/neutron-classifier/blob/master/neutron_classifier/db/models.py | 18:45 |
*** ivar-lazzaro has joined #openstack-neutron | 18:45 | |
sean-k-mooney | i prefer the | 18:46 |
sean-k-mooney | openstack/neutron-classifier | 18:46 |
sean-k-mooney | approch | 18:46 |
sc68cal | I need to find time to clean up the actual layer above the models, the API itself is clunky | 18:47 |
sc68cal | but the database piece is solid IMO | 18:47 |
sean-k-mooney | sc68cal: out of interest have you considered using oslo versioned objects? | 18:47 |
*** leecalcote has joined #openstack-neutron | 18:47 | |
sc68cal | sean-k-mooney: I don't know what it gets us at this point, when nobody is using it | 18:48 |
sc68cal | if someone wants to contribute it, sure! | 18:49 |
sean-k-mooney | that makes sense i guess just when i see validation of feild as in https://github.com/openstack/neutron-classifier/blob/master/neutron_classifier/db/models.py#L117-L124 | 18:50 |
sean-k-mooney | i think oslo versioned object would be a nice way to do it | 18:50 |
sean-k-mooney | well i guess thats more of the table definition but you get the general drift | 18:51 |
*** sputnik13 has joined #openstack-neutron | 18:51 | |
sc68cal | yup | 18:51 |
*** mvk has quit IRC | 18:51 | |
*** hynekm has quit IRC | 18:52 | |
*** leecalcote has left #openstack-neutron | 18:54 | |
*** sputnik13 has quit IRC | 18:55 | |
*** pai15 has quit IRC | 18:59 | |
*** abhiraut has quit IRC | 19:01 | |
*** gangil has quit IRC | 19:03 | |
*** ssalagame has joined #openstack-neutron | 19:03 | |
*** salv-orlando has quit IRC | 19:04 | |
*** pai15 has joined #openstack-neutron | 19:04 | |
*** salv-orlando has joined #openstack-neutron | 19:05 | |
*** ssalagame has quit IRC | 19:06 | |
*** ssalagame has joined #openstack-neutron | 19:08 | |
*** enikanorov has quit IRC | 19:08 | |
*** oanson has quit IRC | 19:10 | |
*** korzen has quit IRC | 19:10 | |
*** korzen_ has joined #openstack-neutron | 19:10 | |
*** HELLER[ca] has quit IRC | 19:11 | |
*** harshad has joined #openstack-neutron | 19:11 | |
*** hanzhang has joined #openstack-neutron | 19:12 | |
*** javeriak has joined #openstack-neutron | 19:12 | |
*** emagana has quit IRC | 19:12 | |
*** javeriak_ has quit IRC | 19:15 | |
*** shz has quit IRC | 19:15 | |
*** leecalcote has joined #openstack-neutron | 19:15 | |
*** emagana has joined #openstack-neutron | 19:16 | |
*** leecalcote has quit IRC | 19:17 | |
*** leecalcote has joined #openstack-neutron | 19:17 | |
*** emagana_ has joined #openstack-neutron | 19:19 | |
*** emagana__ has joined #openstack-neutron | 19:19 | |
*** emagana__ has quit IRC | 19:20 | |
*** emagana__ has joined #openstack-neutron | 19:20 | |
*** emagana has quit IRC | 19:20 | |
*** baoli_ has quit IRC | 19:22 | |
*** emagana_ has quit IRC | 19:23 | |
*** emagana__ has quit IRC | 19:25 | |
*** mhickey has joined #openstack-neutron | 19:26 | |
*** gvrangan has joined #openstack-neutron | 19:26 | |
*** HELLER[ca] has joined #openstack-neutron | 19:27 | |
*** HELLER[ca]_ has joined #openstack-neutron | 19:30 | |
*** salv-orlando has quit IRC | 19:31 | |
*** salv-orlando has joined #openstack-neutron | 19:31 | |
*** amuller has quit IRC | 19:32 | |
*** leecalcote has quit IRC | 19:32 | |
*** HELLER[ca] has quit IRC | 19:32 | |
*** leecalcote has joined #openstack-neutron | 19:32 | |
*** St3F_A13x has joined #openstack-neutron | 19:33 | |
*** leecalcote has quit IRC | 19:33 | |
*** Alex_Stef has quit IRC | 19:34 | |
*** ivar-lazzaro has quit IRC | 19:34 | |
*** ihrachys has joined #openstack-neutron | 19:35 | |
*** Sukhdev has joined #openstack-neutron | 19:36 | |
*** leecalcote has joined #openstack-neutron | 19:37 | |
*** rkukura has quit IRC | 19:38 | |
*** rkukura has joined #openstack-neutron | 19:39 | |
*** gvrangan has quit IRC | 19:42 | |
*** baoli has joined #openstack-neutron | 19:42 | |
*** s3wong has joined #openstack-neutron | 19:42 | |
*** korzen_ has quit IRC | 19:43 | |
*** baoli has quit IRC | 19:43 | |
*** baoli has joined #openstack-neutron | 19:43 | |
*** javeriak has quit IRC | 19:44 | |
HELLER[ca]_ | ihrachys: hi Ihar | 19:45 |
*** hoangcx has quit IRC | 19:46 | |
*** HELLER[ca]_ is now known as enikanorov | 19:46 | |
*** hoangcx has joined #openstack-neutron | 19:47 | |
ihrachys | HELLER[ca]_: hey | 19:47 |
enikanorov | ihrachys: can you explain what was the issue with mtus? I kind of understand it, but i was surprised to know ovs is the same as linux bridge with regard to mtu | 19:47 |
enikanorov | we've been using ovs 2.4.1 and never cared about mtu of internal ports | 19:47 |
*** hoangcx has quit IRC | 19:47 | |
ihrachys | enikanorov: well... I thought that the email is clear, but apparently not. | 19:48 |
ihrachys | enikanorov: lemme check my version of ovs | 19:48 |
ihrachys | -bash-4.2$ rpm -q openvswitch | 19:48 |
ihrachys | openvswitch-2.5.0-2.el7.x86_64 | 19:48 |
enikanorov | no, i understand the problem if ovs were linux bridge... | 19:48 |
*** hoangcx has joined #openstack-neutron | 19:49 | |
*** St3F_A13x has quit IRC | 19:49 | |
ihrachys | enikanorov: basically, once I start an instance on 1450 network, br-int gets 1450. then when I plug a qg port that belongs to 1500 network, it never gets 1500 but sticks to 1450 that it gets when initial plugging into the bridge occurs. | 19:49 |
ihrachys | enikanorov: now, if I set mtu AFTER I move the device into ns, then it works | 19:49 |
ihrachys | but not before. | 19:49 |
ihrachys | enikanorov: you can try to execute the functional test I have in that patch with your version of ovs | 19:49 |
*** hoangcx has quit IRC | 19:49 | |
enikanorov | yeah, i understand that part. I have a setup in front of me where qg interface in namespace got 9000, while br-int is 1500 | 19:50 |
enikanorov | and that qg is plugged in br-int | 19:50 |
enikanorov | the code doesn't have your patch, it does things the old way | 19:50 |
ihrachys | which is... interesting | 19:50 |
*** hoangcx has joined #openstack-neutron | 19:50 | |
ihrachys | enikanorov: just to make sure, I would still try the test | 19:51 |
ihrachys | enikanorov: because again, maybe the fact that an instance is actually plugged makes a difference | 19:51 |
*** harshad has quit IRC | 19:51 | |
ihrachys | enikanorov: do you have an instance with lower mtu plugged into br-int? | 19:51 |
ihrachys | if not, please start one, then clear/set the gateway | 19:51 |
enikanorov | ihrachys: ok, let me check | 19:51 |
ihrachys | and I assume you run mitaka+ | 19:51 |
enikanorov | right | 19:52 |
enikanorov | not the master though | 19:52 |
ihrachys | ok, please update me, I am eager to hear results | 19:52 |
ihrachys | maybe in the email since I may fall asleep or smth | 19:52 |
ihrachys | stable/mitaka should be ok. I think I reproduced it with master, but I don't think there were any huge differences in newton for mtu. | 19:53 |
*** ivar-lazzaro has joined #openstack-neutron | 19:53 | |
ihrachys | enikanorov: another thing I noted is that if I use veths to plug routers, then all worked fine for me without the patch. | 19:53 |
ihrachys | which makes sense | 19:53 |
enikanorov | yeah | 19:53 |
ihrachys | since then the bridge thinks it's all 9000 (the default for veth) | 19:54 |
ihrachys | or maybe it does not actually make a sense... whatever. | 19:54 |
enikanorov | but we dont use veths | 19:54 |
ihrachys | (it does not because the bridge is still 1450 due to the instance...) | 19:54 |
*** fzdarsky|afk has quit IRC | 19:55 | |
*** leecalcote has quit IRC | 19:56 | |
*** leecalcote has joined #openstack-neutron | 19:57 | |
*** hoangcx has quit IRC | 19:57 | |
*** leecalcote has quit IRC | 19:58 | |
* Sam-I-Am sees mtu talk | 19:58 | |
*** leecalcote has joined #openstack-neutron | 19:58 | |
*** hoangcx has joined #openstack-neutron | 19:59 | |
*** esmiurium has quit IRC | 19:59 | |
ihrachys | Sam-I-Am: http://lists.openstack.org/pipermail/openstack-dev/2016-June/097189.html | 19:59 |
*** Guest59739 has joined #openstack-neutron | 20:00 | |
enikanorov | hmm, everything is setup for jumbo frames here... anyway, ifconfig br-int still shows 1500 | 20:00 |
ihrachys | enikanorov: that's fine. the question is, once you plug in a 1450 instance, can you plug qg that is > 1450? | 20:01 |
*** St3F_A13x has joined #openstack-neutron | 20:02 | |
ihrachys | anyway, I prefer the test to be executed to see if we surfaced some difference in ovs/kernel that we should be aware | 20:02 |
Sam-I-Am | ihrachys: yeah, i'm reading it | 20:02 |
enikanorov | i can't set mtu for a new network, can i? i'll have to reconfigure... that will not be simple | 20:02 |
ihrachys | enikanorov: test is simple :) | 20:02 |
*** mvk has joined #openstack-neutron | 20:03 | |
ihrachys | enikanorov: mtu is read only, yes. | 20:03 |
*** johnsom has quit IRC | 20:03 | |
enikanorov | ok, i think if i set 1500 in nova.conf for compute, it should try to plug 1500 interface | 20:03 |
ihrachys | enikanorov: waaiit | 20:04 |
ihrachys | enikanorov: you use network_device_mtu? | 20:04 |
*** baoli has quit IRC | 20:04 | |
ihrachys | enikanorov: because if you do, you basically test something deprecated and not what we validate | 20:04 |
*** baoli has joined #openstack-neutron | 20:05 | |
*** ranjithd has quit IRC | 20:05 | |
ihrachys | in the new mitaka world, you don't configure mtu on nova side | 20:05 |
enikanorov | ihrachys: oh. i see | 20:05 |
enikanorov | then i'll have to hack db | 20:05 |
enikanorov | or what test do you suggest? | 20:05 |
ihrachys | enikanorov: the functional test in the patch | 20:05 |
*** baoli has quit IRC | 20:05 | |
enikanorov | ok, let me take a look | 20:05 |
ihrachys | https://review.openstack.org/#/c/327651/4/neutron/tests/functional/agent/linux/test_interface.py | 20:05 |
*** baoli has joined #openstack-neutron | 20:06 | |
ihrachys | if it passes for you without the production code change, then it's some version mismatch. otherwise you are affected too, you just may not catch it because of how you manage mtu right now. | 20:06 |
Sam-I-Am | its interesting that ovs bridge mtu only sort-of matters | 20:07 |
*** lucas___ has quit IRC | 20:07 | |
ihrachys | Sam-I-Am: it does matter if you really use it like a normal switch | 20:07 |
*** lucas___ has joined #openstack-neutron | 20:07 | |
ihrachys | Sam-I-Am: the way we do it... well, it's creative | 20:07 |
Sam-I-Am | yeah, it is creative | 20:07 |
enikanorov | ihrachys: yeah, that's the difference, we never plug physical interfaces into ovs directly | 20:08 |
*** lucas___ has quit IRC | 20:08 | |
*** ranjithd has joined #openstack-neutron | 20:08 | |
ihrachys | when I described our setup with multiple domains on the same switch to ovs folks, they were surprised and wondering why not mulitple bridges per network | 20:08 |
Sam-I-Am | well, we do... like your provider bridges | 20:08 |
Sam-I-Am | the linux bridge agent creates unique bridges for just about everything | 20:08 |
*** saisriki has quit IRC | 20:09 | |
*** saisrikiran is now known as saisriki | 20:09 | |
ihrachys | Sam-I-Am: with vmware-aware-vms, we will have a bridge per trunk port, if I get it right. | 20:09 |
Sam-I-Am | it probably never came up because no one thought about mtu. also weird that i cant reproduce the problem on a multi-node, but everything is impacted by the fact that we're sort of exploiting a bug | 20:09 |
ihrachys | so maybe it's not that bad idea after all. it's just that upgrade would be fun if we would remodel bridge setup. | 20:09 |
Sam-I-Am | theres probably some way to trigger this issue on a multi-node, i just havent found it yet | 20:10 |
Sam-I-Am | i'm also curious how many people have different kinds of self-service networks | 20:10 |
ihrachys | Sam-I-Am: actually, the thing I am not clear is: it probably works fine when you plug just router ports; it seems to stop working when tap/hybrid is involved. | 20:10 |
openstackgerrit | Ankur proposed openstack/neutron: Neutron Feature Matrix Implementation https://review.openstack.org/324048 | 20:11 |
ihrachys | as if hybrid actually enforces br-int mtu while router namespace does not | 20:11 |
ihrachys | oh | 20:11 |
ihrachys | I think I have an idea why | 20:11 |
Sam-I-Am | i guess the diff here is that my compute nodes dont have namespaces | 20:11 |
*** fzdarsky|afk has joined #openstack-neutron | 20:11 | |
ihrachys | because next time you plug another router port in the bridge, kernel does not see other devices plugged, because they are already in the namespaces. | 20:11 |
*** tonytan4ever has quit IRC | 20:12 | |
*** chlong has quit IRC | 20:12 | |
ihrachys | so as long as you don't have a time when parallel router plug requests occur, you are good to raise bridge MTU according to latest device plugged | 20:12 |
*** jprovazn has quit IRC | 20:12 | |
Sam-I-Am | humm... | 20:12 |
ihrachys | but since tap/hybrid never 'hides' from ovs/kernel in a namespace, it breaks everything | 20:13 |
ihrachys | well, it's not proved, just an idea | 20:13 |
ihrachys | will maybe play with it tomorrow | 20:13 |
Sam-I-Am | well, the multi-node seems to Just Work | 20:13 |
Sam-I-Am | i'm also curious if there's any impact of our ordering of things with linux bridge, but i suspect the multi-bridge nature prevents it... although its worth poking at | 20:14 |
ihrachys | well. I guess as long as you split compute and network services | 20:14 |
*** saisrikiran has joined #openstack-neutron | 20:14 | |
*** Alex_Stef has joined #openstack-neutron | 20:14 | |
enikanorov | ihrachys: so i 've just tested it, works fine | 20:15 |
ihrachys | enikanorov: the test? | 20:15 |
enikanorov | qrouter namespace got qg with 9000 and qr with 1450 | 20:15 |
enikanorov | both on br-int inside ovs | 20:15 |
ihrachys | enikanorov: even after clear/set? | 20:15 |
enikanorov | yes | 20:15 |
ihrachys | meh. ok it may be either good or bad news. | 20:16 |
*** tongli has quit IRC | 20:16 | |
*** St3F_A13x has quit IRC | 20:16 | |
ihrachys | enikanorov: functional test would be the next step. | 20:16 |
*** leecalcote has quit IRC | 20:17 | |
enikanorov | unfortunately the environment is not set up for func tests | 20:17 |
*** leecalcote has joined #openstack-neutron | 20:17 | |
ihrachys | enikanorov: the reporter of the bug was using latest ubuntu. maybe fresh ovs? | 20:18 |
ihrachys | it's 2.5.0 in xenial that he tested | 20:18 |
ihrachys | and same in my env | 20:18 |
*** baoli has quit IRC | 20:19 | |
enikanorov | we're on 14.04/ovs 2.4.1 | 20:19 |
openstackgerrit | James Anziano proposed openstack/neutron: Remove the plugin import from auto_alloc extension https://review.openstack.org/329173 | 20:20 |
*** gangil has joined #openstack-neutron | 20:20 | |
*** abhiraut has joined #openstack-neutron | 20:21 | |
*** pai15 has quit IRC | 20:21 | |
*** leecalcote has quit IRC | 20:22 | |
*** abhiraut has quit IRC | 20:24 | |
*** M00nr41n has quit IRC | 20:25 | |
ihrachys | enikanorov: can this be related? https://bugs.xenserver.org/browse/XSO-449 | 20:26 |
*** gvrangan has joined #openstack-neutron | 20:26 | |
*** pai15 has joined #openstack-neutron | 20:27 | |
*** singhj has quit IRC | 20:28 | |
*** abhiraut has joined #openstack-neutron | 20:28 | |
enikanorov | ihrachys: hard to say. i have no experience with xenserver/xapi. mtu propagation with linux bridges is a known thing, but i've never seen it with ovs bridges | 20:31 |
*** baoli has joined #openstack-neutron | 20:35 | |
*** singhj has joined #openstack-neutron | 20:35 | |
*** muneeb has quit IRC | 20:36 | |
*** muneeb has joined #openstack-neutron | 20:38 | |
*** janzian has quit IRC | 20:39 | |
*** singhj has quit IRC | 20:40 | |
*** tonytan4ever has joined #openstack-neutron | 20:42 | |
*** dxu has quit IRC | 20:43 | |
*** leecalcote has joined #openstack-neutron | 20:44 | |
*** ihrachys has quit IRC | 20:47 | |
*** matrohon has quit IRC | 20:48 | |
*** leecalcote has quit IRC | 20:49 | |
*** muneeb has quit IRC | 20:49 | |
*** julim has joined #openstack-neutron | 20:50 | |
*** ihrachys has joined #openstack-neutron | 20:50 | |
*** banix has quit IRC | 20:51 | |
*** muneeb has joined #openstack-neutron | 20:52 | |
*** crose has joined #openstack-neutron | 20:54 | |
openstackgerrit | John Perkins proposed openstack/neutron: WIP - Route, RoutePort and RouterRoute to OVO https://review.openstack.org/307964 | 20:54 |
*** janzian has joined #openstack-neutron | 20:55 | |
openstackgerrit | Slawek Kaplonski proposed openstack/neutron: Filter supported QoS rules with possible parameters https://review.openstack.org/319694 | 20:56 |
*** thorst has quit IRC | 20:56 | |
*** crose has quit IRC | 20:57 | |
*** gouthamr has quit IRC | 20:59 | |
*** Guest59739 is now known as rustyeddy | 20:59 | |
*** ivar-lazzaro has quit IRC | 21:00 | |
*** rusty has joined #openstack-neutron | 21:00 | |
*** hichihara has joined #openstack-neutron | 21:01 | |
*** rusty is now known as Guest60185 | 21:01 | |
*** raildo is now known as raildo-afk | 21:02 | |
*** thorst has joined #openstack-neutron | 21:03 | |
*** rustyeddy has quit IRC | 21:04 | |
*** fzdarsky|afk has quit IRC | 21:04 | |
*** muneeb has quit IRC | 21:04 | |
*** Guest60185 is now known as rustyeddy | 21:05 | |
*** banix has joined #openstack-neutron | 21:07 | |
*** thorst has quit IRC | 21:07 | |
*** rustyeddy has quit IRC | 21:08 | |
*** rustyeddy has joined #openstack-neutron | 21:08 | |
*** dane_leblanc has quit IRC | 21:09 | |
*** ivar-lazzaro has joined #openstack-neutron | 21:11 | |
*** dane_leblanc has joined #openstack-neutron | 21:11 | |
*** ihrachys has quit IRC | 21:14 | |
*** ihrachys has joined #openstack-neutron | 21:14 | |
*** ivar-lazzaro has quit IRC | 21:15 | |
*** ivar-laz_ has joined #openstack-neutron | 21:15 | |
*** muneeb has joined #openstack-neutron | 21:15 | |
*** tbachman_ has joined #openstack-neutron | 21:15 | |
*** sputnik13 has joined #openstack-neutron | 21:17 | |
*** tbachman has quit IRC | 21:18 | |
*** tbachman_ is now known as tbachman | 21:18 | |
*** muneeb has quit IRC | 21:19 | |
kevinbenton | zzzeek: yo | 21:19 |
*** ivar-laz_ has quit IRC | 21:19 | |
*** singhj has joined #openstack-neutron | 21:19 | |
zzzeek | kevinbenton: hi | 21:20 |
kevinbenton | zzzeek: trying to figure out what is the back-portable way to fix this https://review.openstack.org/#/c/326927/ | 21:20 |
*** vhoward has quit IRC | 21:20 | |
kevinbenton | zzzeek: i don't think i can depend on an oslo db feature | 21:20 |
kevinbenton | zzzeek: and the sqlalchemy looks really recent for mitaka/liberty back-ports | 21:21 |
kevinbenton | zzzeek: to capture the warning | 21:21 |
zzzeek | kevinbenton: so the context manager that you use in "with session.begin_nested()" is where the issue is | 21:21 |
zzzeek | kevinbenton: if you use a homegrown manager that works like the one i proposed for oslo.db then you can chain together the DBError instances as they occur | 21:21 |
zzzeek | kevinbenton: in this case, oslo.db catches both the inner, and the outer, exceptions before SQLAlchemy gets to them, so you have a DBError raised while we're raising a DBError | 21:22 |
kevinbenton | zzzeek: ack | 21:22 |
zzzeek | sqlalchemy itself doesn't try chaining the two exceptions together other than to use py3k's normal process. but in py2k we don't have that. so it just warns for the cause | 21:23 |
*** lindycoder has quit IRC | 21:23 | |
kevinbenton | right | 21:23 |
kevinbenton | and i was going to try to capture with a wanrings fitler | 21:24 |
kevinbenton | filter* | 21:24 |
kevinbenton | but then i saw that that warning was pretty recently added to mysql | 21:24 |
kevinbenton | i mean sqlalchemy | 21:24 |
kevinbenton | so it might not be present in stable requirements | 21:24 |
*** jamesdenton has quit IRC | 21:24 | |
zzzeek | kevinbenton: ermmmm how far back are you wanting to go | 21:25 |
*** pai15 has quit IRC | 21:27 | |
*** johnbelamaric has quit IRC | 21:27 | |
zzzeek | kevinbenton: I should check though that any of this works when the error is inside _flush()...erg | 21:27 |
*** sputnik13 has quit IRC | 21:27 | |
*** gouthamr has joined #openstack-neutron | 21:28 | |
*** abregman has quit IRC | 21:30 | |
*** julim has quit IRC | 21:33 | |
*** sputnik13 has joined #openstack-neutron | 21:33 | |
*** sputnik13 has quit IRC | 21:33 | |
*** dane_leblanc has quit IRC | 21:34 | |
*** thorst has joined #openstack-neutron | 21:35 | |
*** muneeb has joined #openstack-neutron | 21:37 | |
*** thorst_ has joined #openstack-neutron | 21:39 | |
*** thorst has quit IRC | 21:39 | |
*** tbachman has quit IRC | 21:41 | |
*** rustyeddy has quit IRC | 21:41 | |
*** rustyeddy has joined #openstack-neutron | 21:42 | |
*** sputnik13 has joined #openstack-neutron | 21:42 | |
*** thorst_ has quit IRC | 21:43 | |
kevinbenton | zzzeek: probably mitaka at least | 21:46 |
kevinbenton | zzzeek: i remember seeing one then | 21:47 |
*** dmk0202 has joined #openstack-neutron | 21:47 | |
*** rcernin has quit IRC | 21:48 | |
kevinbenton | zzzeek: one more completely unrelated question. If I use Query.delete with sychronize_session='evaluate' will the deleted objects be available in session.deleted, or is that strictly for removing objects already in the session | 21:49 |
zzzeek | kevinbenton: its only for objects already in the session | 21:49 |
*** sputnik13 has quit IRC | 21:49 | |
*** muneeb has quit IRC | 21:50 | |
kevinbenton | zzzeek: thx | 21:50 |
zzzeek | kevinbenton: this "cause" issue, I'm not coming up with something that works everywhere everytime. still thinking about it | 21:51 |
zzzeek | kevinbenton: the only thing that works perfectly is python 3 | 21:51 |
zzzeek | kevinbenton: or, make mysql rollback not fail | 21:51 |
*** fzdarsky|afk has joined #openstack-neutron | 21:52 | |
zzzeek | kevinbenton: but, you need it to, because otherwise you think your transaction is still usable which it's not | 21:52 |
openstackgerrit | OpenStack Proposal Bot proposed openstack/neutron: Updated from global requirements https://review.openstack.org/324838 | 21:52 |
*** mhickey has quit IRC | 21:52 | |
kevinbenton | zzzeek: is it technically a bug in mysql when it destroys the savepoint on deadlock? | 21:52 |
zzzeek | kevinbenton: it's a limitation | 21:52 |
zzzeek | kevinbenton: i have another idea. trying it | 21:53 |
*** janzian has quit IRC | 21:55 | |
*** njohnston is now known as njohnston|afk | 21:55 | |
*** rtheis has quit IRC | 21:56 | |
*** singhj has quit IRC | 21:56 | |
*** hichihara has quit IRC | 21:57 | |
*** jamesdenton has joined #openstack-neutron | 21:57 | |
*** twm2016 is now known as tmccasl | 22:00 | |
*** ihrachys has quit IRC | 22:00 | |
*** tmccasl has left #openstack-neutron | 22:00 | |
*** azbiswas has quit IRC | 22:02 | |
*** kbringard has quit IRC | 22:02 | |
*** ivar-lazzaro has joined #openstack-neutron | 22:03 | |
*** z_kassab has joined #openstack-neutron | 22:04 | |
*** banix has quit IRC | 22:04 | |
*** ihrachys has joined #openstack-neutron | 22:05 | |
*** hoonetorg has quit IRC | 22:05 | |
*** slaweq has quit IRC | 22:06 | |
*** tmccasl has joined #openstack-neutron | 22:06 | |
*** edmondsw has quit IRC | 22:07 | |
*** hoonetorg has joined #openstack-neutron | 22:08 | |
*** tbachman has joined #openstack-neutron | 22:09 | |
*** fzdarsky|afk has quit IRC | 22:13 | |
*** Alex_Stef has quit IRC | 22:14 | |
kevinbenton | carl_baldwin: https://review.openstack.org/#/c/328186/ | 22:14 |
kevinbenton | carl_baldwin: got confirmation from Mike that synchronize wouldn't be enough to add to session.deleted | 22:15 |
carl_baldwin | kevinbenton: Thanks for the reminder. I'd forgotten about that one since Friday. | 22:15 |
carl_baldwin | kevinbenton: That is good to know. | 22:15 |
*** amotoki has quit IRC | 22:17 | |
*** ihrachys_ has joined #openstack-neutron | 22:18 | |
*** sputnik13 has joined #openstack-neutron | 22:18 | |
*** muneeb has joined #openstack-neutron | 22:18 | |
*** ihrachys has quit IRC | 22:20 | |
*** chlong has joined #openstack-neutron | 22:21 | |
*** dxu has joined #openstack-neutron | 22:21 | |
*** tonytan4ever has quit IRC | 22:23 | |
*** ajmiller_ has quit IRC | 22:24 | |
*** ajmiller has joined #openstack-neutron | 22:24 | |
*** ihrachys_ has quit IRC | 22:25 | |
*** kevo has quit IRC | 22:25 | |
*** kevo has joined #openstack-neutron | 22:25 | |
*** ihrachys has joined #openstack-neutron | 22:27 | |
*** jckasper has quit IRC | 22:28 | |
*** jckasper has joined #openstack-neutron | 22:29 | |
*** jckasper has quit IRC | 22:31 | |
*** sputnik13 has quit IRC | 22:31 | |
*** jckasper has joined #openstack-neutron | 22:31 | |
*** ihrachys has quit IRC | 22:33 | |
*** akshai has joined #openstack-neutron | 22:36 | |
*** sputnik13 has joined #openstack-neutron | 22:36 | |
*** mlavalle has quit IRC | 22:36 | |
*** Jabadia has joined #openstack-neutron | 22:36 | |
*** muneeb has quit IRC | 22:37 | |
*** sputnik13 has quit IRC | 22:38 | |
*** ihrachys has joined #openstack-neutron | 22:39 | |
*** nplanel has joined #openstack-neutron | 22:40 | |
*** akshai has quit IRC | 22:45 | |
*** jamesdenton has quit IRC | 22:46 | |
*** tmccasl has quit IRC | 22:46 | |
*** dave-mccowan has quit IRC | 22:47 | |
*** ihrachys has quit IRC | 22:48 | |
*** jamesdenton has joined #openstack-neutron | 22:50 | |
*** salv-orlando has quit IRC | 22:51 | |
*** ihrachys has joined #openstack-neutron | 22:52 | |
*** dmk0202 has quit IRC | 22:52 | |
*** dave-mccowan has joined #openstack-neutron | 22:52 | |
*** salv-orlando has joined #openstack-neutron | 22:52 | |
zzzeek | kevinbenton: when you get SAVEPOINT does not exist, it's definitely a retry-everything situation | 22:54 |
*** jamesdenton has quit IRC | 22:54 | |
kevinbenton | zzzeek: right | 22:54 |
kevinbenton | zzzeek: in that patch that's the thing that determines if an API operation should be retried | 22:55 |
zzzeek | kevinbenton: the more I try to dig into this the more that MySQL tricks me | 22:55 |
kevinbenton | zzzeek: so it's retry-everything | 22:55 |
zzzeek | kevinbenton: it's defintiely that | 22:55 |
zzzeek | kevinbenton: i think what you have is best. would be *super* curious to see the deadlock message in a warning | 22:55 |
zzzeek | because it should be printing it in the logs | 22:56 |
kevinbenton | zzzeek: let me see if i can find it | 22:56 |
kevinbenton | zzzeek: i did see it for the bug report | 22:56 |
kevinbenton | zzzeek: ah, actually it's right in the bug report body | 22:57 |
kevinbenton | zzzeek: https://bugs.launchpad.net/neutron/+bug/1590298 | 22:57 |
openstack | Launchpad bug 1590298 in neutron "DB retry wrapper needs to look for savepoint errors" [High,In progress] - Assigned to Kevin Benton (kevinbenton) | 22:57 |
zzzeek | kevinbenton: oh yes, ok | 22:57 |
zzzeek | kevinbenton: this almost works too but I can't get a simple test for it https://review.openstack.org/#/c/329215/1 | 22:58 |
zzzeek | kevinbenton: and if i could get a test to work it would still be spooky | 22:58 |
*** ihrachys has quit IRC | 23:01 | |
*** johnbelamaric has joined #openstack-neutron | 23:01 | |
*** ihrachys has joined #openstack-neutron | 23:01 | |
kevinbenton | zzzeek: is it possible to get the session corresponding to a DB exception? | 23:02 |
zzzeek | kevinbenton: when you catch an error you should still have your session assuming you're talking ORM session | 23:03 |
kevinbenton | zzzeek: yeah, i was just thinking the DB retry decorator should probably expire everything in the session before each retry | 23:03 |
zzzeek | kevinbenton: much easier to do in enginefacade | 23:04 |
zzzeek | kevinbenton: oh but also the session does that anyway | 23:04 |
zzzeek | kevinbenton: on a rollback | 23:04 |
kevinbenton | zzzeek: oh okay. so on rollback everything is expired? | 23:04 |
zzzeek | kevinbenton: yes and the rollback is on a subtransction in the flush, so it's immediate | 23:04 |
zzzeek | kevinbenton: before you even get to do anything | 23:04 |
kevinbenton | zzzeek: perfect | 23:05 |
*** johnbelamaric has quit IRC | 23:05 | |
zzzeek | kevinbenton: in this patch i almost have something working for oslo.db but not sure if it's necessary | 23:05 |
*** rusty has joined #openstack-neutron | 23:05 | |
kevinbenton | zzzeek: i was just always worried that carrying the same session between retry attempts might bring along baggage | 23:05 |
zzzeek | kevinbenton: nah we fixed all that stuff years ago | 23:05 |
*** rusty is now known as Guest32727 | 23:06 | |
kevinbenton | zzzeek: in your patch it would help us actually determine the original was a deadlock right? | 23:06 |
*** asingh has quit IRC | 23:06 | |
zzzeek | kevinbenton: we're just trying to build a chain of causes that you can go upwards towards, yes | 23:06 |
kevinbenton | yeah, inspect caused_during_handling_by | 23:07 |
*** pradk has quit IRC | 23:07 | |
*** abhiraut has quit IRC | 23:07 | |
zzzeek | kevinbenton: i almost have the test for this working. just concerned avbout it leaving crap around in other cases | 23:08 |
*** rustyeddy has quit IRC | 23:08 | |
*** kriskend has quit IRC | 23:09 | |
*** abhiraut has joined #openstack-neutron | 23:10 | |
*** kriskend_ has quit IRC | 23:10 | |
kevinbenton | zzzeek: leaving unnecessary caused by stuff? | 23:10 |
zzzeek | kevinbenton: im taking the innermost exception and sticking it in connection.info | 23:11 |
zzzeek | kevinbenton: need to make sure it isn't there once the "thing that failed" is all done | 23:11 |
*** yamahata has quit IRC | 23:11 | |
*** abhiraut has quit IRC | 23:12 | |
kevinbenton | right | 23:13 |
*** akshai has joined #openstack-neutron | 23:13 | |
zzzeek | kevinbenton: OK this works https://review.openstack.org/#/c/329215/2 but not sure if it has side effects | 23:13 |
zzzeek | kevinbenton: OK gotta go watch my kid, more tomorrow | 23:14 |
kevinbenton | zzzeek: ack. thx for the help | 23:15 |
openstackgerrit | Carl Baldwin proposed openstack/neutron: Extension to tell when deferred binding is in effect https://review.openstack.org/329221 | 23:17 |
*** ihrachys has quit IRC | 23:17 | |
*** asingh has joined #openstack-neutron | 23:22 | |
*** ihrachys has joined #openstack-neutron | 23:22 | |
*** azbiswas has joined #openstack-neutron | 23:22 | |
*** Guest32727 has quit IRC | 23:22 | |
*** akshai_ has joined #openstack-neutron | 23:24 | |
*** Guest32727 has joined #openstack-neutron | 23:24 | |
*** akshai has quit IRC | 23:24 | |
*** lnicolas has joined #openstack-neutron | 23:26 | |
*** z_kassab has quit IRC | 23:26 | |
*** tpsilva has quit IRC | 23:27 | |
*** salv-orl_ has joined #openstack-neutron | 23:28 | |
*** abhiraut has joined #openstack-neutron | 23:29 | |
*** Swami has quit IRC | 23:31 | |
*** salv-orlando has quit IRC | 23:31 | |
*** ihrachys has quit IRC | 23:33 | |
*** r-daneel has quit IRC | 23:33 | |
*** azbiswas_ has joined #openstack-neutron | 23:33 | |
*** ihrachys has joined #openstack-neutron | 23:33 | |
*** azbiswas has quit IRC | 23:34 | |
*** azbiswas has joined #openstack-neutron | 23:35 | |
openstackgerrit | Manjeet Singh Bhatia proposed openstack/neutron: [WIP] Refactoring config options for agent https://review.openstack.org/324191 | 23:38 |
*** element52 has joined #openstack-neutron | 23:38 | |
*** muneeb has joined #openstack-neutron | 23:38 | |
*** gouthamr_ has joined #openstack-neutron | 23:38 | |
*** azbiswas_ has quit IRC | 23:38 | |
*** sdague has quit IRC | 23:38 | |
element52 | Hi everyone. I have a quick question. I rebooted my OpenStack Kilo environment about 25 minutes ago. My compute nodes are stuck on "Starting Neutron OVS Cleanup" and have been since the reboot. Is this normal? I have never had this happen before | 23:39 |
element52 | And I could not find much info online googling around | 23:39 |
*** Nepoc has quit IRC | 23:40 | |
Sam-I-Am | element52: hummm. is ovs started? anything in the logs? | 23:41 |
*** ivar-lazzaro has quit IRC | 23:41 | |
element52 | OVS running on the controller you mean?? | 23:41 |
*** gouthamr has quit IRC | 23:42 | |
element52 | Sam-I-Am: http://paste.openstack.org/show/515854/ | 23:42 |
*** muneeb has quit IRC | 23:42 | |
*** akshai_ has quit IRC | 23:42 | |
Sam-I-Am | ovs would be running on the compute nodes | 23:43 |
element52 | Compute nodes wont start | 23:43 |
*** lujinluo has joined #openstack-neutron | 23:43 | |
element52 | They're hung during boot at "Starting Neutron OVS Cleanup" | 23:44 |
*** tbachman_ has joined #openstack-neutron | 23:44 | |
Sam-I-Am | looks like all the ovs agents are dead | 23:44 |
element52 | I have a neutron OVS log paste | 23:44 |
element52 | http://paste.openstack.org/show/515855/ | 23:44 |
element52 | That is on my controller node. | 23:44 |
*** tbachman has quit IRC | 23:44 | |
*** tbachman_ is now known as tbachman | 23:44 | |
Sam-I-Am | looks like ovs isnt started when it tries to run | 23:45 |
Sam-I-Am | so it keeps trying to run | 23:45 |
Sam-I-Am | is this ubuntu? | 23:45 |
*** djan has joined #openstack-neutron | 23:45 | |
element52 | Yes sir | 23:45 |
*** banix has joined #openstack-neutron | 23:45 | |
element52 | Ubuntu 14.04 | 23:45 |
element52 | I know, old | 23:45 |
Sam-I-Am | yeah, those init scripts are incessant until the process terminates properly | 23:45 |
Sam-I-Am | its annoying | 23:45 |
element52 | Hard reboot? | 23:45 |
Sam-I-Am | can you get into the box? | 23:46 |
element52 | Like at the console level?? | 23:46 |
element52 | Yeah, on 3 of the 5 | 23:46 |
Sam-I-Am | yeah, ssh, whatever | 23:46 |
element52 | fml on the other two | 23:46 |
*** amotoki has joined #openstack-neutron | 23:46 | |
Sam-I-Am | see if openvswitch-switch is running. if not, start it | 23:46 |
element52 | I can't get to a terminal | 23:46 |
element52 | It never boots | 23:46 |
element52 | Im at a console on the back-end. But the boot process isn't finished on it | 23:46 |
element52 | I.E. - I have a back-end DRAC/LILO access | 23:47 |
*** ihrachys has quit IRC | 23:47 | |
*** ihrachys has joined #openstack-neutron | 23:47 | |
element52 | But the boot process has not finished. It's just STUCK on "Starting Neutron OVS cleanup" | 23:48 |
Sam-I-Am | might be able to ctrl-c the boot process. sometimes it works. i'm gathering it hasnt started ssh yet? | 23:48 |
Sam-I-Am | i hate upstart :) | 23:48 |
Sam-I-Am | things just fire off in whatever order they want | 23:48 |
element52 | Ctrl+c isn't working. | 23:49 |
element52 | I can do a reboot | 23:49 |
Sam-I-Am | if that doesn't work, you can reboot into single user mode and drop an override into /etc/init for the cleanup script | 23:50 |
*** amotoki has quit IRC | 23:50 | |
element52 | It's gunna be one of those nights lol | 23:50 |
*** yamahata has joined #openstack-neutron | 23:51 | |
Sam-I-Am | heh | 23:54 |
Sam-I-Am | cant win them all | 23:54 |
Sam-I-Am | the other thing to do is make sure the ovs cleanup script depends on openvswitch-switch | 23:54 |
Sam-I-Am | not sure those scripts are 100% correct | 23:54 |
Sam-I-Am | and/or might be using legacy (sysv) scripts | 23:54 |
*** ihrachys has quit IRC | 23:55 | |
*** numans has joined #openstack-neutron | 23:56 | |
*** Leom has quit IRC | 23:56 | |
*** HELLER[ca] has joined #openstack-neutron | 23:59 | |
*** enikanorov has quit IRC | 23:59 | |
*** singhj has joined #openstack-neutron | 23:59 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!