Earlier  
Posted Nick Remark
#openstack-nova - 2022-06-03
09:02:17 bauzas not the mdevs
09:02:32 songwenping when manage vgpus by cyborg, we precreate the mdevs when discover
09:02:33 sean-k-mooney pre creat the pci device and list the vfs instead of the pf
09:02:45 bauzas songwenping: sean-k-mooney: anyway, I'm not against fixing this old bug
09:03:03 bauzas songwenping: if you have time for fixing it, would be appreciated
09:03:11 bauzas none of this requires a spec
09:06:54 songwenping bauzas:i'll try.
09:29:28 kashyap dansmith: To answer to your question in the scrollback: yeah, I'm guessing it's different - based on the trigger here (backup) vs. the older one (disk-detach)
09:32:08 frickler gibi: hacking-integration-nova has been busted for ages
09:32:58 frickler likely before we moved to zull v3 even https://zuul.opendev.org/t/openstack/builds?job_name=hacking-integration-nova&project=openstack%2Fhacking&result=SUCCESS&skip=0
09:33:05 frickler *zuul
09:34:08 opendevreview Balazs Gibizer proposed openstack/nova master: Fix PciAddressSpec descendants to call super.__init__ https://review.opendev.org/c/openstack/nova/+/844565
09:34:37 gibi frickler: I think it shows that nova is not compatible with latest hacking
09:34:43 gibi frickler: am I mistaken?
09:35:47 frickler gibi: this is true. afaict nova also hasn't been compatible with at least 3 years of previous releases of hacking, so not much change
09:36:09 gibi ahh OK
09:36:43 gibi frickler: so you think we can land the flake version bump after I drop py35 testing or we need to fix nova first?
09:37:57 sean-k-mooney frickler: gibi if we use black hacking become less importnat. still nice for extra non style related checks like dont improt prev sep stuff with from
09:38:13 sean-k-mooney or any other rules we want to enforece but the systle related ones are less requried
09:38:21 gibi sean-k-mooney: the current failures are thinks that are not covered by black / flake
09:38:43 frickler gibi: nova caps to 3.1.0, there are 3.2.0, 4.0.0 and 4.1.0 already. so adapting nova to recent hacking should not block updating hacking IMO
09:38:49 sean-k-mooney ack i was just hoping it would reduce the number of things we have to port
09:38:59 gibi frickler: thanks
09:39:08 gibi I will update the hacking patch to drop py35 then
09:39:16 sean-k-mooney frickler: yep it should not
09:40:45 frickler also I must reduce my "3 years" claim to 2 years, 3.1.0 was released in May 2020. no idea how far back our history of zuul builds actually goes
09:54:49 sean-k-mooney frickler: i think there was a change in hackign that broke some fo our checks which is why we pinned
09:55:10 sean-k-mooney frickler: but then stephenfin who was lookign at fixing it moved to not work on nova as part of there day job
09:55:17 sean-k-mooney and we had others move too
09:55:28 sean-k-mooney so we just never got aroudn to adressint the issues
09:55:46 sean-k-mooney we might still have patches form stephenfin for some of the issues
09:57:31 sean-k-mooney not that i can see on this topic
09:58:31 sean-k-mooney frickler: we did recently move to 3.1
09:58:34 sean-k-mooney https://review.opendev.org/c/openstack/nova/+/836639/1/.pre-commit-config.yaml
10:03:05 sean-k-mooney actully i guess the bump was done in victoria https://github.com/openstack/nova/commit/61b99a1295c5208deef806b69ba74a7d031ad851
10:04:41 frickler sean-k-mooney: yes, that was right after the release of 3.1.0, but it seems after that, nova lost track
10:05:03 sean-k-mooney yep it was not broken so i guess we just never updated it
10:05:34 sean-k-mooney proably also just resouce constrianed/pandmic related
12:18:45 sean-k-mooney :)
12:19:27 sean-k-mooney dont you love how we only support bash globs if the adress is a sting and only support regexs if its a dictionary
12:20:35 gibi nah, the self.is_physical_function handling is worst in my eyes
12:21:04 gibi we write that flag twice based on two different utility function reading the same sysfs location
12:21:28 sean-k-mooney heh of course we do
12:21:30 gibi but yes, that string / dict duality is close second
12:22:03 sean-k-mooney we did it because of the conflict between * in glob and regex meendnin ins * is .* in regex land
12:22:16 sean-k-mooney i just wish we used regex form from the start
12:22:33 gibi yepp I figured that regex was added later and blow up the picture
12:22:54 gibi and of course the whole devname special case is a pain
12:23:08 sean-k-mooney i would not mind devname if it worked for all devices
12:23:17 sean-k-mooney but the fact that its unreliable and only works for nic
12:23:20 sean-k-mooney sometimes
12:23:25 sean-k-mooney is why i hate it
12:24:29 sean-k-mooney once you are done with the placment work i do still think its worth revisigint our config format in a differnt discussion
12:25:17 gibi I agree
12:25:36 gibi I will try to untangle as much of the current parsing code as possible before I add the new things to it
12:25:37 sean-k-mooney like in general can oslo config supprot yaml or can we add a resouces.yaml for all the complext host level resouces
12:26:15 sean-k-mooney ok cool
12:26:36 sean-k-mooney the other thing to be aware of is how we parse physical_network
12:26:58 gibi I'm not there yet :)
12:27:00 sean-k-mooney speicifcliy we are relying on physical_network=null being converted to python None
12:28:10 sean-k-mooney so we are using the json parsing to differnceat between not set, physical_network=null and pyhsical_network="null" or physical_network="None"
12:28:19 gibi nice
12:28:22 sean-k-mooney all 4 of those have differnt meanings
12:28:39 sean-k-mooney the last 2 are just strings that are the name of a phsyical network in neutron
12:29:24 sean-k-mooney pyhical_network=null without quotes is converted to python None and that is used for hardware offloaded ovs with tunneld networks
12:29:30 sean-k-mooney and unset means this is not a nic
12:29:58 gibi I would like to give prizes to deployments naming there physnets None and null :D
12:30:17 sean-k-mooney hehe ya
12:30:37 sean-k-mooney but since the null vaule was not planned to be supported
12:30:48 sean-k-mooney and was a bug that was abused for hardware offloed ovs
12:30:56 sean-k-mooney its posible
12:32:56 sean-k-mooney https://bugs.launchpad.net/nova/+bug/1915282
13:35:21 dansmith kashyap: so it seems like this heisenbug has receded into the background, even though only one package has changed in fedora since last week (that we install)
13:35:42 dansmith kashyap: so I'm going to formalize my devstack patch so we'll just always capture qemu coredmps so we're ready for next time
13:36:02 kashyap dansmith: Huh, the bugs from hell. Same story w/ that other detach thing. Although we sussed out a latent libvirt bug from it
13:36:26 kashyap dansmith: Yeah, thank you; I also saw that the same path works for Ubuntu as well - I checked, and by extension, Debian too
13:36:28 dansmith scary if that means users can hit them, but yeah :/
13:36:41 dansmith kashyap: ah cool
13:36:57 kashyap dansmith: I commented w/ a link to evidence your DNM patch
13:37:06 dansmith cool thanks
14:03:33 opendevreview Artom Lifshitz proposed openstack/nova stable/wallaby: fake: Ensure need_legacy_block_device_info returns False https://review.opendev.org/c/openstack/nova/+/843678
14:03:34 opendevreview Artom Lifshitz proposed openstack/nova stable/wallaby: Add a regression test for bug 1939545 https://review.opendev.org/c/openstack/nova/+/843702
14:03:35 opendevreview Artom Lifshitz proposed openstack/nova stable/wallaby: compute: Ensure updates to bdms during pre_live_migration are saved https://review.opendev.org/c/openstack/nova/+/843680
14:03:36 opendevreview Artom Lifshitz proposed openstack/nova stable/wallaby: fup: Make connection_info returned by CinderFixture unique per attachment https://review.opendev.org/c/openstack/nova/+/844594
14:03:38 opendevreview Artom Lifshitz proposed openstack/nova stable/wallaby: fup: Assert state of connection_info during LM rollback in func tests https://review.opendev.org/c/openstack/nova/+/844595
14:15:03 opendevreview Artom Lifshitz proposed openstack/nova stable/victoria: compute: Ensure updates to bdms during pre_live_migration are saved https://review.opendev.org/c/openstack/nova/+/843949
14:15:04 opendevreview Artom Lifshitz proposed openstack/nova stable/victoria: fup: Make connection_info returned by CinderFixture unique per attachment https://review.opendev.org/c/openstack/nova/+/844598
14:15:05 opendevreview Artom Lifshitz proposed openstack/nova stable/victoria: fup: Assert state of connection_info during LM rollback in func tests https://review.opendev.org/c/openstack/nova/+/844599
15:19:09 opendevreview Artom Lifshitz proposed openstack/nova stable/ussuri: fake: Ensure need_legacy_block_device_info returns False https://review.opendev.org/c/openstack/nova/+/843950
15:19:10 opendevreview Artom Lifshitz proposed openstack/nova stable/ussuri: Add a regression test for bug 1939545 https://review.opendev.org/c/openstack/nova/+/843951
15:19:11 opendevreview Artom Lifshitz proposed openstack/nova stable/ussuri: compute: Ensure updates to bdms during pre_live_migration are saved https://review.opendev.org/c/openstack/nova/+/843952
15:19:12 opendevreview Artom Lifshitz proposed openstack/nova stable/ussuri: fup: Make connection_info returned by CinderFixture unique per attachment https://review.opendev.org/c/openstack/nova/+/844606
15:19:14 opendevreview Artom Lifshitz proposed openstack/nova stable/ussuri: fup: Assert state of connection_info during LM rollback in func tests https://review.opendev.org/c/openstack/nova/+/844607
15:53:20 gibi sean-k-mooney: I just realized that there is antoher edge case in the PCI parsing, the remove managed feature allows PF address and VF product ID in the same device spec test_remote_managed_pf_raises
15:53:25 gibi https://github.com/openstack/nova/blob/ffb810e2ba2fdec9b2a881a88fa6d65cd32f8fa3/nova/tests/unit/pci/test_devspec.py#L501-L513
15:57:15 sean-k-mooney gibi: that was a prexisting feature
15:57:21 sean-k-mooney they did not add it
15:57:44 sean-k-mooney that is how you whitelisted the VFs of a pf before we added teh glob and regex support
15:57:58 sean-k-mooney so thats been there since like icehouse
15:58:07 gibi it is pretty remote managed specific https://github.com/openstack/nova/blob/d86916360858daa06164ebc0d012b78d19ae6497/nova/pci/devspec.py#L315-L334

Earlier   Later