Earlier  
Posted Nick Remark
#openstack-nova - 2019-07-29
15:42:42 eandersson https://review.opendev.org/#/c/672855/
15:42:52 eandersson but I think I'll have to leave that for someone else
15:42:59 eandersson So many changes between Stein and Rocky on that front
15:56:20 sean-k-mooney eandersson: sure once its merged on master then people on teh stable/core teams will be able to backport it if needed or i can try to take a look
16:10:15 aspiers kashyap: does this look capable? http://paste.openstack.org/show/755079/
16:10:18 aspiers I don't see any shims
16:21:20 aspiers kashyap: so grub actually shows secure boot enabled!
16:21:22 efried phew, glad alex_xu and stephenfin were able to approve that get_domain_capabilities() patch. I was having nightmares.
16:21:32 aspiers hehe
16:21:47 eandersson Sounds good sean-k-mooney
16:22:00 sean-k-mooney i commented on the review by the way
16:22:02 aspiers efried: if that gave you nightmares, I dread to think what https://review.opendev.org/#/c/673151/ will do
16:22:22 sean-k-mooney just pointing out that it may change the message if we dont actully through the exception
16:22:23 efried ahcrap, is that *also* blocking the SEV work?
16:22:30 sean-k-mooney but i have not confimed that
16:22:39 aspiers efried: it's the first in the series
16:22:47 aspiers so, yeah :)
16:23:18 eandersson Yea - I wasn't sure if that was the case.
16:24:06 sean-k-mooney eandersson: worst case it just wont have a stack trace pointing to where it was thrown
16:24:06 efried okay, so look, I'm probably not going to be able to +2 the super-libvirty things in that series, but as long as you've got folks like alex_xu and stephenfin to look, I guess you should be okay.
16:24:16 sean-k-mooney because it was not raised
16:24:35 sean-k-mooney best case it will have a stack trace that point to where it was constucted
16:24:49 sean-k-mooney which is basically where we would have raised it before
16:25:08 openstackgerrit Vladyslav Drok proposed openstack/nova master: [libvirt] Check if domain is persistent on cleanup https://review.opendev.org/673332
16:25:43 aspiers efried: I've added them. Next one is https://review.opendev.org/#/c/638680/ which you were previously +2 on. I think pretty much only changes since then have been to fix your nits and rebase
16:26:21 aspiers PS27 was +2 W+1
16:27:16 efried ack. I've been procrastinating due to the prereqs. Was hoping to dive in again this week.
16:27:28 aspiers efried: oh, and also fixing tests which never got run before: https://review.opendev.org/#/c/638680/30..31/nova/tests/functional/libvirt/test_report_cpu_traits.py
16:28:05 aspiers so if you're happy with that ^^ and trust my rebasing skills then I guess it should be easy to recycle your previous +2 W+1
16:29:42 sean-k-mooney eandersson: efried based on a simple test in the repel it will have no traceback
16:29:45 sean-k-mooney >>> val_error = ValueError()
16:29:46 sean-k-mooney >>> val_error.__traceback__
16:29:48 sean-k-mooney >>>
16:30:13 sean-k-mooney >>> raise val_error
16:30:15 sean-k-mooney Traceback (most recent call last):
16:30:17 sean-k-mooney File "<stdin>", line 1, in <module>
16:30:19 sean-k-mooney ValueError
16:30:39 sean-k-mooney >>> val_error.__traceback__
16:30:41 sean-k-mooney <traceback object at 0x7fc44ac5db48>
16:30:46 efried aspiers: yup. But urgency again reduced by the fact that there's a big not-reviewable-by-me thingy in front of it again/still.
16:30:51 sean-k-mooney so it looks like the tracback is only compute when its raised
16:30:57 efried sean-k-mooney: ack, but that only matters if the traceback is being used somewhere up the chain
16:31:00 efried which afaict it isn't.
16:31:06 efried all we're doing is printing the exception
16:31:11 efried which is the same whether it's raised or not.
16:31:14 sean-k-mooney its not its just being logged
16:31:19 efried right
16:31:26 sean-k-mooney so i dont know if we care
16:31:29 efried I didn't -1 before
16:31:32 efried right, I don't know either.
16:31:37 sean-k-mooney i think we dont
16:31:42 efried I would have accepted either explanation, really.
16:31:55 sean-k-mooney just you were asking if they were the same and they technically arnt
16:32:01 efried Even if we want to say "this is future proofing in case someone wants to print this stack trace somewhere"
16:32:03 sean-k-mooney but not in a way that matters for our usecase
16:32:12 efried ++ thanks for the clarification.
16:32:53 sean-k-mooney ill copy that example into a comment and change my +0 to a +1
16:53:38 mriedem eandersson: re https://review.opendev.org/#/c/672855/ i might write a functional regression test for the issue (separate patch) and stack your change on top
16:53:48 mriedem that code is too shitty for just unit tests
16:54:00 eandersson Yea that would be great
16:54:14 eandersson It's a pretty big problem for services like Senlin if this happens
16:54:32 eandersson It exposed a bug in Senlin as well of course
16:55:47 mriedem i worry about a refactor of that code in the future to remove the non-reschedule logic to drop the error handling
16:56:22 sean-k-mooney it is certenly not the most intuitive code i have seen
16:56:42 mriedem years and years of piling more stuff into it
16:58:33 sean-k-mooney eandersson: well its a problem in general. senlin is proably more sensitive but haveing a server always in build and nerver erroring out becasue we miseed that exception being raised is going to break alot of workflows
16:59:30 sean-k-mooney eandersson: if you use something like heat that had a timeout onf the whole heat stack create process it would clean it up but only after doing a lot of work that got thrown away and after waiting for the timeout to fire
16:59:40 mriedem ok i'm going to get lunch and then i'll write a functional regression test and rebase the fix on top
17:07:14 openstackgerrit sean mooney proposed openstack/nova master: Libvirt: add support for vPMU configuration. https://review.opendev.org/671338
17:08:52 sean-k-mooney stephenfin: by the way when your back from PTO tommorow can you take a look at this os-vif change i wrote https://review.opendev.org/#/c/672834/
17:12:20 openstackgerrit Dustin Cowles proposed openstack/nova master: WIP: Provider config file https://review.opendev.org/673341
17:17:14 efried sean-k-mooney: https://review.opendev.org/#/c/666604/ I think I may have said the same thing as you, in different words...
17:18:48 sean-k-mooney more or less yes
17:19:17 efried okay, cool
17:20:37 sean-k-mooney im not sure if we store teh compute capablities in the nova db or if they only live in memory in the compute agent
17:20:56 sean-k-mooney that said i think they must be in the db for the compute capbalites fiter to work
17:21:54 openstackgerrit Merged openstack/nova master: libvirt: harden Host.get_domain_capabilities() https://review.opendev.org/670189
17:22:24 sean-k-mooney so its not really clear to me if 1 the info is avialble outside the compute node and 2 if retriving the info from placmenet would be cheaper then an rpc or db call. (ignoring if the traits is a thing we want for the sake of argument)
17:23:42 sean-k-mooney you could proably retrive it form placement in 1 call by looking the RP up by name which should match the instance.host
17:24:12 sean-k-mooney and if you pull back the full RP i assume that would contian the traits too
17:26:24 sean-k-mooney actully your right it would need 2 quires
17:27:15 sean-k-mooney since we just have the link to the traits endpoint and not the tratis in the responce from /resource_providers?name={instance.host}
17:34:52 openstackgerrit Eric Fried proposed openstack/nova master: Move adding vlans to interfaces to privsep. https://review.opendev.org/635436
17:54:31 mriedem sean-k-mooney: it's not available outside the compute node
17:54:35 mriedem and not stored *in* the compute node object
17:55:10 mriedem as i said in my reply to chris, a pre-filter might not make sense
17:55:15 mriedem it would likely be logic in the api itself
17:55:31 mriedem to either ignore or not the current instance.host
17:56:07 mriedem this is also a super latent issue and at the bottom of my priority list
18:09:51 sean-k-mooney ok i was guessing it was someing like that. e.g. not available out side of the compute
18:10:32 sean-k-mooney a trait on the RP would be less expensive to check then intoducing a new rpc call
18:14:20 mriedem and consistent with all of the compute capabilities as traits stuff we've been doing since rocky
18:23:56 sean-k-mooney ya im aware of the other traits but i was not sure if we did it that way only because they are only available on the compute node or because they are usefult to schdule on
18:24:16 sean-k-mooney e.g. the multi attach trait is useful to shcduler on if you are booting with a multi attach volume
18:25:03 sean-k-mooney but im not sure i see a usecase for passing this new trait as a requried trait on boot but i understand how it coudl be used on migrate/resize
18:25:57 sean-k-mooney maybe there is a usecase where you would want to require it on spawn but it just felt a little different then the other capablity traits we have
18:27:31 aspiers big achievement just unlocked: booting a fully functional SEV guest via nova
18:27:48 aspiers that only took what - 9 months?
18:28:26 sean-k-mooney :)
18:28:52 sean-k-mooney you mean you didnt hardcode it quickly to test it works 9 months ago

Earlier   Later