*** sambetts_ has quit IRC | 00:00 | |
melwitt | yeah so, just wonder if there's some bizarre way a delete could miss the build request, similar to what mriedem was saying earlier for the bug we discussed earlier | 00:00 |
---|---|---|
mnaser | i might be like 5 steps behind your discussion so i might just be echoing stuff y'all already discusssed :p | 00:00 |
melwitt | nah | 00:00 |
melwitt | it's more likely that somehow a delete was partial | 00:01 |
*** shaohe_feng has joined #openstack-nova | 00:01 | |
melwitt | but I didn't find how last time I went spelunking in the code | 00:01 |
melwitt | (the nah was, no, you're not echoing) | 00:02 |
mnaser | :p | 00:02 |
*** sambetts_ has joined #openstack-nova | 00:02 | |
mnaser | im looking in nova/conductor/manager.py on how ending up with a build request but without instance_mapping | 00:02 |
*** gyee has quit IRC | 00:05 | |
melwitt | build request is deleted once scheduled, so that means it had to be during the create process somewhere. ignore what I was saying about delete (unless it's a delete while booting? but I didn't see a way there either) | 00:08 |
*** shaohe_feng has quit IRC | 00:10 | |
*** shaohe_feng has joined #openstack-nova | 00:11 | |
mnaser | melwitt: does instance.delete() get rid of the mapping? | 00:12 |
mnaser | or does the mapping stay forever | 00:12 |
melwitt | mapping stays until you 'nova-manage db archive_deleted_rows' | 00:13 |
mnaser | and we dont do that | 00:13 |
mnaser | hmm | 00:13 |
melwitt | as of rocky, I believe | 00:13 |
mnaser | cause i went through the code and i couldn't find any instances where the instance mapping doesnt get deleted *after* the build request | 00:13 |
mnaser | in nova/compute/api.py and nova/conductor/manager.py | 00:13 |
mnaser | not sure if there is any other places to look | 00:13 |
melwitt | yeah, same | 00:13 |
mnaser | it would be good to know if the InstanceMapping was created and deleted or just never created in the first place | 00:17 |
mnaser | dont think there is an easy way to know that | 00:17 |
mnaser | let me try to look at logs | 00:17 |
*** artom has joined #openstack-nova | 00:18 | |
*** shaohe_feng has quit IRC | 00:20 | |
*** shaohe_feng has joined #openstack-nova | 00:21 | |
*** artom has quit IRC | 00:24 | |
mnaser | melwitt: looks like a db server issue just a few seconds after the build request was created | 00:25 |
melwitt | interesting. so possible that the instance mapping INSERT failed? | 00:26 |
mnaser | let me look at the stack traces of the failures | 00:26 |
melwitt | I mean, if it's really a few seconds, that would be too long after | 00:26 |
mnaser | hopefully it shows where | 00:26 |
*** mlavalle has quit IRC | 00:27 | |
mnaser | melwitt: AHA | 00:27 |
mnaser | stacktrace in db fail | 00:28 |
mnaser | inst_mapping.create() | 00:28 |
melwitt | holy crap | 00:28 |
mnaser | and looks like in the exception handling | 00:28 |
mnaser | it does self._cleanup_build_artifacts(None, instances_to_build) | 00:28 |
mnaser | so if a create failed, we do _cleanup_build_artifacts but maybe we need to make sure that we assume things don't exist in _cleanup_build_artifacts | 00:28 |
melwitt | and that *didn't* delete the build request? another db trace? | 00:29 |
melwitt | we do | 00:29 |
mnaser | well i assume the exception handling failed too | 00:29 |
mnaser | because the db was out | 00:29 |
melwitt | oh, yeah ok | 00:29 |
mnaser | let me share the stack trace | 00:29 |
mnaser | http://paste.openstack.org/show/726772/ | 00:30 |
melwitt | this is wild. I really didn't think it was going to be that the create() failed due to db issues | 00:30 |
mnaser | is there a transactional system in nova.objects? | 00:30 |
*** shaohe_feng has quit IRC | 00:30 | |
mnaser | like maybe we can actually make the create build request and instance mapping a single transaction with commit | 00:30 |
melwitt | I've had it on my todo list to write a functional test that raises during the instance_mapping.create() to repro the bug, and to show how the orphan build request can't be deleted | 00:31 |
*** med_ has quit IRC | 00:31 | |
*** shaohe_feng has joined #openstack-nova | 00:31 | |
mnaser | it would still fail but at least the build request wouldn't be there anymore | 00:31 |
melwitt | hm ... we could if we create a new method that does them both under the same oslo.db session decorator thing, I believe | 00:31 |
mnaser | i guess this http request should have returned 500 | 00:32 |
melwitt | to make it be one transaction | 00:32 |
mnaser | so its not like the instance disappears under the user too | 00:32 |
mnaser | "HTTP exception thrown: Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible." yup | 00:32 |
melwitt | very interesting. this data is gold | 00:32 |
*** itlinux has joined #openstack-nova | 00:32 | |
mnaser | melwitt: is there any example of somewhere where this happens? i can write a test with failure of instance_mapping.create() and then make it in a single transaction | 00:32 |
mnaser | this == single transaction | 00:33 |
melwitt | oh, lemme see | 00:33 |
mnaser | i should find other places where the db writes had failed and find their stack traces | 00:33 |
mnaser | ill do that too | 00:34 |
melwitt | there are some things in here https://github.com/openstack/nova/blob/master/nova/api/openstack/placement/objects/resource_provider.py | 00:37 |
melwitt | specifically this one https://github.com/openstack/nova/blob/master/nova/api/openstack/placement/objects/resource_provider.py#L4039 | 00:37 |
melwitt | the note there explains it well | 00:38 |
*** med_ has joined #openstack-nova | 00:38 | |
*** med_ has quit IRC | 00:38 | |
*** med_ has joined #openstack-nova | 00:38 | |
melwitt | awesome mnaser, thanks | 00:40 |
*** shaohe_feng has quit IRC | 00:40 | |
*** shaohe_feng has joined #openstack-nova | 00:41 | |
mnaser | ok i got a gold mine | 00:47 |
mnaser | i retrieved a list of all the .save or .create that failed because of db errors | 00:48 |
mnaser | which should be useful to group up together into a single transaction | 00:48 |
mnaser | im just deduping the list | 00:48 |
mnaser | fwiw -- grep _handle_dbapi_exception /var/log/nova/nova-api-wsgi.log -B70 | egrep 'nova.api.openstack.wsgi .*\.(save|create)' -B1 | 00:49 |
melwitt | sweet | 00:50 |
*** shaohe_feng has quit IRC | 00:51 | |
*** shaohe_feng has joined #openstack-nova | 00:52 | |
*** vladikr has quit IRC | 00:53 | |
melwitt | mnaser: do you want to write up a bug for this and include the trace paste and all? else I can do it later, I have to run soon | 00:54 |
*** itlinux_ has joined #openstack-nova | 00:54 | |
*** linkmark has quit IRC | 00:54 | |
*** itlinux_ has quit IRC | 00:55 | |
mnaser | melwitt: https://bugs.launchpad.net/nova/+bug/1784074 i added them all here | 00:55 |
openstack | Launchpad bug 1784074 in OpenStack Compute (nova) "Instances end up with no cell assigned in instance_mappings" [Medium,In progress] - Assigned to Matt Riedemann (mriedem) | 00:55 |
melwitt | okay | 00:56 |
*** itlinux__ has joined #openstack-nova | 00:56 | |
melwitt | think I'm going to create a new bug since the db fail thing is a bit different | 00:57 |
mnaser | melwitt: it's up to you to how you see fit :) | 00:58 |
melwitt | :) | 00:58 |
mnaser | https://github.com/openstack/nova/blob/ff5cded9afa65cd4317ba0e3401692ed92c1d150/nova/api/openstack/placement/objects/project.py#L83-L92 | 00:59 |
mnaser | i think this is an easier pattern especially for create this stuff | 00:59 |
mnaser | rather than a top level function (i think) | 00:59 |
melwitt | yeah | 01:00 |
mnaser | https://github.com/openstack/nova/blob/16a2db6f23d150330dc82a56d0cf10366b004210/nova/objects/aggregate.py#L67-L78 | 01:01 |
mnaser | this seems like an interesting pattern too | 01:01 |
mnaser | im digging around code | 01:01 |
*** shaohe_feng has quit IRC | 01:01 | |
mnaser | im just curious/worry that wrapping things in the writer twice might break things | 01:02 |
mnaser | i.e.: https://github.com/openstack/nova/blob/16a2db6f23d150330dc82a56d0cf10366b004210/nova/objects/instance_mapping.py#L75-L86 | 01:02 |
*** shaohe_feng has joined #openstack-nova | 01:02 | |
melwitt | it will, don't nest it | 01:02 |
melwitt | well, | 01:03 |
melwitt | you can't nest a write under a read | 01:03 |
mnaser | can you nest two writes? or should i drop it from _create_in_db | 01:03 |
melwitt | so otherwise nesting is probably ok | 01:03 |
mnaser | ok cool | 01:03 |
melwitt | but I don't know if I've tried it, intentionally anyway | 01:03 |
mnaser | ill make sure i have a failing test first to make sure it actually gets fixed | 01:04 |
*** vladikr has joined #openstack-nova | 01:05 | |
melwitt | awesome, sounds great | 01:05 |
*** mrsoul` has joined #openstack-nova | 01:11 | |
*** shaohe_feng has quit IRC | 01:11 | |
*** shaohe_feng has joined #openstack-nova | 01:11 | |
*** Guest23581 is now known as lamt | 01:13 | |
*** mrsoul has quit IRC | 01:14 | |
melwitt | mnaser: https://bugs.launchpad.net/nova/+bug/1784093 fyi, I assigned it to you | 01:17 |
openstack | Launchpad bug 1784093 in OpenStack Compute (nova) "Build requests can be orphaned without instance mappings" [Medium,Confirmed] - Assigned to Mohammed Naser (mnaser) | 01:17 |
mnaser | melwitt: cool, i'm building up a test right now, i should probably have a patch later today if this doesnt end up much more complicated :> | 01:18 |
melwitt | okay, good luck. we'll take a look at it next week | 01:19 |
mnaser | thanks, have a good weekend! | 01:19 |
melwitt | thanks and likewise! | 01:19 |
*** shaohe_feng has quit IRC | 01:21 | |
*** Guest87808 has quit IRC | 01:24 | |
*** shaohe_feng has joined #openstack-nova | 01:25 | |
*** ABIX_Adamj has joined #openstack-nova | 01:27 | |
*** shaohe_feng has quit IRC | 01:32 | |
*** shaohe_feng has joined #openstack-nova | 01:32 | |
*** shaohe_feng has quit IRC | 01:42 | |
*** shaohe_feng has joined #openstack-nova | 01:43 | |
*** openstackstatus has quit IRC | 01:46 | |
*** openstackstatus has joined #openstack-nova | 01:48 | |
*** ChanServ sets mode: +v openstackstatus | 01:48 | |
*** hoonetorg has quit IRC | 01:49 | |
*** gongysh has quit IRC | 01:49 | |
*** med_ has quit IRC | 01:50 | |
*** shaohe_feng has quit IRC | 01:52 | |
*** antosh has joined #openstack-nova | 01:54 | |
*** shaohe_feng has joined #openstack-nova | 01:54 | |
*** shaohe_feng has quit IRC | 02:02 | |
*** shaohe_feng has joined #openstack-nova | 02:05 | |
*** hoonetorg has joined #openstack-nova | 02:06 | |
*** tbachman has quit IRC | 02:09 | |
*** yamahata has quit IRC | 02:09 | |
*** tinwood has quit IRC | 02:10 | |
*** tinwood has joined #openstack-nova | 02:11 | |
*** shaohe_feng has quit IRC | 02:13 | |
*** shaohe_feng has joined #openstack-nova | 02:14 | |
*** gongysh has joined #openstack-nova | 02:17 | |
*** hoonetorg has quit IRC | 02:19 | |
*** shaohe_feng has quit IRC | 02:23 | |
*** shaohe_feng has joined #openstack-nova | 02:28 | |
*** shaohe_feng has quit IRC | 02:33 | |
*** shaohe_feng has joined #openstack-nova | 02:34 | |
openstackgerrit | Merged openstack/nova master: Add nova-status upgrade check for request spec migrations https://review.openstack.org/581813 | 02:39 |
*** pooja_jadhav has quit IRC | 02:40 | |
*** shaohe_feng has quit IRC | 02:43 | |
*** shaohe_feng has joined #openstack-nova | 02:44 | |
*** antosh has quit IRC | 02:45 | |
*** tbachman has joined #openstack-nova | 02:48 | |
*** tbachman has quit IRC | 02:53 | |
*** shaohe_feng has quit IRC | 02:54 | |
*** shaohe_feng has joined #openstack-nova | 02:55 | |
*** wolverineav has joined #openstack-nova | 02:55 | |
*** mriedem has quit IRC | 02:58 | |
*** wolverineav has quit IRC | 03:04 | |
*** shaohe_feng has quit IRC | 03:04 | |
*** shaohe_feng has joined #openstack-nova | 03:06 | |
*** gooduone has joined #openstack-nova | 03:07 | |
*** s10 has quit IRC | 03:07 | |
*** s10 has joined #openstack-nova | 03:07 | |
*** s10 has quit IRC | 03:08 | |
*** s10 has joined #openstack-nova | 03:08 | |
*** s10 has quit IRC | 03:08 | |
*** s10 has joined #openstack-nova | 03:09 | |
*** s10 has quit IRC | 03:09 | |
*** tbachman has joined #openstack-nova | 03:09 | |
*** s10 has joined #openstack-nova | 03:09 | |
*** s10 has quit IRC | 03:10 | |
*** s10 has joined #openstack-nova | 03:10 | |
*** s10 has quit IRC | 03:11 | |
*** wolverineav has joined #openstack-nova | 03:12 | |
zzzeek | does the nova placement database get built as part of nova-manage db sync or nova-manage api_db sync ? | 03:13 |
*** shaohe_feng has quit IRC | 03:14 | |
zzzeek | api_db....damn | 03:14 |
*** shaohe_feng has joined #openstack-nova | 03:17 | |
*** wolverineav has quit IRC | 03:17 | |
*** shaohe_feng has quit IRC | 03:24 | |
*** shaohe_feng has joined #openstack-nova | 03:27 | |
*** shaohe_feng has quit IRC | 03:35 | |
*** shaohe_feng has joined #openstack-nova | 03:36 | |
*** wolverineav has joined #openstack-nova | 03:43 | |
*** wolverineav has quit IRC | 03:44 | |
*** shaohe_feng has quit IRC | 03:45 | |
*** wolverineav has joined #openstack-nova | 03:46 | |
*** shaohe_feng has joined #openstack-nova | 03:46 | |
*** wolverineav has quit IRC | 03:50 | |
openstackgerrit | Merged openstack/nova master: Fix create_all() to replace_all() in comments https://review.openstack.org/586396 | 03:54 |
*** shaohe_feng has quit IRC | 03:55 | |
*** shaohe_feng has joined #openstack-nova | 03:56 | |
openstackgerrit | Mohammed Naser proposed openstack/nova master: Create request spec, build request and mappings in one transaction https://review.openstack.org/586742 | 04:04 |
mnaser | ^ tests failing but i dont know if i'm on the right track, i dont wanna dig in too deep and be in the wrong | 04:05 |
*** mschuppert has joined #openstack-nova | 04:05 | |
*** shaohe_feng has quit IRC | 04:05 | |
*** shaohe_feng has joined #openstack-nova | 04:06 | |
*** tbachman has quit IRC | 04:09 | |
*** shaohe_feng has quit IRC | 04:16 | |
*** shaohe_feng has joined #openstack-nova | 04:19 | |
*** shaohe_feng has quit IRC | 04:26 | |
*** shaohe_feng has joined #openstack-nova | 04:26 | |
*** shaohe_feng has quit IRC | 04:36 | |
*** shaohe_feng has joined #openstack-nova | 04:37 | |
openstackgerrit | Merged openstack/nova master: libvirt: Revert non-reporting DISK_GB if sharing https://review.openstack.org/586614 | 04:41 |
*** shaohe_feng has quit IRC | 04:46 | |
*** shaohe_feng has joined #openstack-nova | 04:49 | |
*** r-daneel has joined #openstack-nova | 04:50 | |
*** shaohe_feng has quit IRC | 04:57 | |
*** shaohe_feng has joined #openstack-nova | 04:57 | |
*** links has joined #openstack-nova | 05:02 | |
*** shaohe_feng has quit IRC | 05:07 | |
*** shaohe_feng has joined #openstack-nova | 05:08 | |
*** shaohe_feng has quit IRC | 05:17 | |
*** shaohe_feng has joined #openstack-nova | 05:19 | |
*** shaohe_feng has quit IRC | 05:27 | |
*** shaohe_feng has joined #openstack-nova | 05:28 | |
*** r-daneel has quit IRC | 05:31 | |
*** shaohe_feng has quit IRC | 05:38 | |
*** shaohe_feng has joined #openstack-nova | 05:38 | |
*** shaohe_feng has quit IRC | 05:48 | |
*** shaohe_feng has joined #openstack-nova | 05:49 | |
*** shaohe_feng has quit IRC | 05:58 | |
*** shaohe_feng has joined #openstack-nova | 05:59 | |
*** itlinu___ has joined #openstack-nova | 06:08 | |
*** shaohe_feng has quit IRC | 06:08 | |
*** shaohe_feng has joined #openstack-nova | 06:10 | |
*** itlinu___ has quit IRC | 06:13 | |
*** shaohe_feng has quit IRC | 06:19 | |
*** shaohe_feng has joined #openstack-nova | 06:21 | |
*** brault has joined #openstack-nova | 06:28 | |
*** shaohe_feng has quit IRC | 06:29 | |
*** shaohe_feng has joined #openstack-nova | 06:31 | |
*** brault has quit IRC | 06:33 | |
*** ccamacho1 has quit IRC | 06:35 | |
*** shaohe_feng has quit IRC | 06:39 | |
*** shaohe_feng has joined #openstack-nova | 06:40 | |
*** lbragstad has quit IRC | 06:48 | |
*** brault has joined #openstack-nova | 06:49 | |
*** shaohe_feng has quit IRC | 06:49 | |
*** brault has quit IRC | 06:53 | |
*** shaohe_feng has joined #openstack-nova | 06:54 | |
*** shaohe_feng has quit IRC | 07:00 | |
*** shaohe_feng has joined #openstack-nova | 07:04 | |
*** shaohe_feng has quit IRC | 07:10 | |
*** shaohe_feng has joined #openstack-nova | 07:12 | |
*** gooduone has quit IRC | 07:18 | |
*** shaohe_feng has quit IRC | 07:20 | |
*** shaohe_feng has joined #openstack-nova | 07:21 | |
*** mgoddard has joined #openstack-nova | 07:30 | |
*** shaohe_feng has quit IRC | 07:30 | |
*** shaohe_feng has joined #openstack-nova | 07:32 | |
*** shaohe_feng has quit IRC | 07:41 | |
*** shaohe_feng has joined #openstack-nova | 07:42 | |
*** shaohe_feng has quit IRC | 07:51 | |
*** shaohe_feng has joined #openstack-nova | 07:52 | |
*** liuyulong_ has joined #openstack-nova | 07:53 | |
*** liuyulong__ has quit IRC | 07:53 | |
*** r-daneel has joined #openstack-nova | 07:53 | |
*** r-daneel has quit IRC | 07:57 | |
*** r-daneel has joined #openstack-nova | 07:59 | |
*** shaohe_feng has quit IRC | 08:01 | |
*** shaohe_feng has joined #openstack-nova | 08:02 | |
*** wolverineav has joined #openstack-nova | 08:02 | |
*** liuyulong_ has quit IRC | 08:04 | |
*** wolverineav has quit IRC | 08:04 | |
*** liuyulong_ has joined #openstack-nova | 08:04 | |
*** wolverineav has joined #openstack-nova | 08:05 | |
*** wolverineav has quit IRC | 08:05 | |
*** shaohe_feng has quit IRC | 08:11 | |
*** shaohe_feng has joined #openstack-nova | 08:12 | |
*** s10 has joined #openstack-nova | 08:15 | |
*** shaohe_feng has quit IRC | 08:22 | |
*** shaohe_feng has joined #openstack-nova | 08:22 | |
*** shaohe_feng has quit IRC | 08:32 | |
*** shaohe_feng has joined #openstack-nova | 08:33 | |
*** shaohe_feng has quit IRC | 08:42 | |
*** shaohe_feng has joined #openstack-nova | 08:43 | |
*** hoonetorg has joined #openstack-nova | 08:47 | |
*** shaohe_feng has quit IRC | 08:52 | |
*** shaohe_feng has joined #openstack-nova | 08:53 | |
*** shaohe_feng has quit IRC | 09:03 | |
*** shaohe_feng has joined #openstack-nova | 09:03 | |
*** shaohe_feng has quit IRC | 09:13 | |
*** shaohe_feng has joined #openstack-nova | 09:14 | |
*** wolverineav has joined #openstack-nova | 09:14 | |
*** wolverineav has quit IRC | 09:16 | |
*** sapd has quit IRC | 09:17 | |
*** sapd has joined #openstack-nova | 09:19 | |
*** s10 has quit IRC | 09:22 | |
*** shaohe_feng has quit IRC | 09:23 | |
*** mgoddard has quit IRC | 09:25 | |
*** shaohe_feng has joined #openstack-nova | 09:25 | |
*** shaohe_feng has quit IRC | 09:33 | |
*** shaohe_feng has joined #openstack-nova | 09:35 | |
*** takedakn has joined #openstack-nova | 09:43 | |
*** shaohe_feng has quit IRC | 09:44 | |
*** shaohe_feng has joined #openstack-nova | 09:44 | |
*** r-daneel has quit IRC | 09:46 | |
*** gongysh has quit IRC | 09:46 | |
*** liuyulong__ has joined #openstack-nova | 09:48 | |
*** liuyulong_ has quit IRC | 09:48 | |
*** shaohe_feng has quit IRC | 09:54 | |
*** shaohe_feng has joined #openstack-nova | 09:55 | |
*** avolkov has joined #openstack-nova | 09:57 | |
*** sambetts_ has quit IRC | 09:59 | |
*** sambetts_ has joined #openstack-nova | 10:00 | |
*** shaohe_feng has quit IRC | 10:04 | |
*** shaohe_feng has joined #openstack-nova | 10:08 | |
*** shaohe_feng has quit IRC | 10:14 | |
*** shaohe_feng has joined #openstack-nova | 10:18 | |
*** shaohe_feng has quit IRC | 10:25 | |
*** shaohe_feng has joined #openstack-nova | 10:28 | |
*** tbachman has joined #openstack-nova | 10:31 | |
*** gongysh has joined #openstack-nova | 10:33 | |
*** shaohe_feng has quit IRC | 10:35 | |
*** shaohe_feng has joined #openstack-nova | 10:36 | |
*** gongysh has quit IRC | 10:38 | |
openstackgerrit | Chris Dent proposed openstack/nova master: [placement] Retry allocation writes server side https://review.openstack.org/586048 | 10:39 |
*** shaohe_feng has quit IRC | 10:45 | |
*** shaohe_feng has joined #openstack-nova | 10:46 | |
*** shaohe_feng has quit IRC | 10:55 | |
*** shaohe_feng has joined #openstack-nova | 10:56 | |
*** tbachman has quit IRC | 11:01 | |
*** tbachman has joined #openstack-nova | 11:03 | |
*** shaohe_feng has quit IRC | 11:06 | |
*** shaohe_feng has joined #openstack-nova | 11:07 | |
*** takedakn has quit IRC | 11:14 | |
*** shaohe_feng has quit IRC | 11:16 | |
*** tbachman has quit IRC | 11:16 | |
*** s10 has joined #openstack-nova | 11:16 | |
*** shaohe_feng has joined #openstack-nova | 11:20 | |
*** shaohe_feng has quit IRC | 11:26 | |
*** brault has joined #openstack-nova | 11:29 | |
*** shaohe_feng has joined #openstack-nova | 11:29 | |
*** brault has quit IRC | 11:33 | |
*** shaohe_feng has quit IRC | 11:36 | |
*** shaohe_feng has joined #openstack-nova | 11:37 | |
*** linkmark has joined #openstack-nova | 11:42 | |
*** shaohe_feng has quit IRC | 11:47 | |
*** hoonetorg has quit IRC | 11:49 | |
*** hoonetorg has joined #openstack-nova | 11:54 | |
*** shaohe_feng has joined #openstack-nova | 11:56 | |
*** shaohe_feng has quit IRC | 11:57 | |
*** shaohe_feng has joined #openstack-nova | 11:58 | |
openstackgerrit | Thomas Goirand proposed openstack/nova master: Remove "async" as variable name https://review.openstack.org/586782 | 11:59 |
*** david-lyle has quit IRC | 11:59 | |
*** antosh has joined #openstack-nova | 12:04 | |
*** shaohe_feng has quit IRC | 12:07 | |
*** shaohe_feng has joined #openstack-nova | 12:08 | |
openstackgerrit | Thomas Goirand proposed openstack/nova master: Remove "async" as variable name https://review.openstack.org/586782 | 12:10 |
*** med_ has joined #openstack-nova | 12:10 | |
*** med_ has quit IRC | 12:10 | |
*** med_ has joined #openstack-nova | 12:10 | |
*** shaohe_feng has quit IRC | 12:17 | |
*** shaohe_feng has joined #openstack-nova | 12:18 | |
*** hoonetorg has quit IRC | 12:22 | |
*** liuyulong__ has quit IRC | 12:24 | |
*** liuyulong__ has joined #openstack-nova | 12:24 | |
*** shaohe_feng has quit IRC | 12:28 | |
*** shaohe_feng has joined #openstack-nova | 12:29 | |
*** liuyulong__ has quit IRC | 12:32 | |
*** hoonetorg has joined #openstack-nova | 12:33 | |
*** shaohe_feng has quit IRC | 12:38 | |
*** shaohe_feng has joined #openstack-nova | 12:39 | |
*** shaohe_feng has quit IRC | 12:48 | |
openstackgerrit | Merged openstack/nova master: libvirt: Start populating NUMACell.network_metadata field https://review.openstack.org/564441 | 12:50 |
openstackgerrit | Merged openstack/nova master: Add functional tests for numa-aware-vswitches https://review.openstack.org/583288 | 12:50 |
openstackgerrit | Merged openstack/nova master: Consider network NUMA affinity for move operations https://review.openstack.org/585339 | 12:50 |
*** shaohe_feng has joined #openstack-nova | 12:51 | |
*** shaohe_feng has quit IRC | 12:58 | |
*** shaohe_feng has joined #openstack-nova | 13:01 | |
*** shaohe_feng has quit IRC | 13:09 | |
*** shaohe_feng has joined #openstack-nova | 13:10 | |
*** vladikr has quit IRC | 13:13 | |
*** lyan has joined #openstack-nova | 13:17 | |
*** lyan is now known as Guest2267 | 13:18 | |
*** shaohe_feng has quit IRC | 13:19 | |
*** shaohe_feng has joined #openstack-nova | 13:20 | |
*** vladikr has joined #openstack-nova | 13:26 | |
*** shaohe_feng has quit IRC | 13:29 | |
*** shaohe_feng has joined #openstack-nova | 13:30 | |
*** shaohe_feng has quit IRC | 13:39 | |
*** shaohe_feng has joined #openstack-nova | 13:40 | |
*** vladikr has quit IRC | 13:41 | |
*** shaohe_feng has quit IRC | 13:50 | |
*** shaohe_feng has joined #openstack-nova | 13:50 | |
*** antosh has quit IRC | 13:50 | |
*** vladikr has joined #openstack-nova | 13:54 | |
*** shaohe_feng has quit IRC | 14:00 | |
*** shaohe_feng has joined #openstack-nova | 14:01 | |
*** mvenesio has joined #openstack-nova | 14:10 | |
*** shaohe_feng has quit IRC | 14:10 | |
*** shaohe_feng has joined #openstack-nova | 14:11 | |
*** shaohe_feng has quit IRC | 14:21 | |
*** shaohe_feng has joined #openstack-nova | 14:22 | |
*** shaohe_feng has quit IRC | 14:31 | |
*** shaohe_feng has joined #openstack-nova | 14:33 | |
*** shaohe_feng has quit IRC | 14:41 | |
*** shaohe_feng has joined #openstack-nova | 14:44 | |
*** links has quit IRC | 14:49 | |
*** shaohe_feng has quit IRC | 14:51 | |
*** imacdonn has quit IRC | 14:52 | |
*** imacdonn has joined #openstack-nova | 14:52 | |
*** shaohe_feng has joined #openstack-nova | 14:53 | |
openstackgerrit | xulei proposed openstack/nova stable/queens: Disable limits if force_hosts or force_nodes is set https://review.openstack.org/584616 | 14:55 |
*** shaohe_feng has quit IRC | 15:02 | |
*** shaohe_feng has joined #openstack-nova | 15:02 | |
*** shaohe_feng has quit IRC | 15:12 | |
*** shaohe_feng has joined #openstack-nova | 15:13 | |
openstackgerrit | Merged openstack/nova stable/queens: Make host_aggregate_map dictionary case-insensitive https://review.openstack.org/585334 | 15:18 |
*** shaohe_feng has quit IRC | 15:22 | |
*** shaohe_feng has joined #openstack-nova | 15:26 | |
*** itlinux has quit IRC | 15:29 | |
*** shaohe_feng has quit IRC | 15:32 | |
*** shaohe_feng has joined #openstack-nova | 15:34 | |
*** Guest74389 has joined #openstack-nova | 15:35 | |
Guest74389 | Hey, I thought you guys might be interested in this blog by freenode staff member Bryan 'kloeri' Ostergaard https://bryanostergaard.com/ | 15:35 |
*** Guest74389 has quit IRC | 15:35 | |
*** shaohe_feng has quit IRC | 15:43 | |
*** shaohe_feng has joined #openstack-nova | 15:46 | |
*** shaohe_feng has quit IRC | 15:53 | |
*** shaohe_feng has joined #openstack-nova | 15:53 | |
openstackgerrit | Mohammed Naser proposed openstack/nova master: Create request spec, build request and mappings in one transaction https://review.openstack.org/586742 | 15:54 |
openstackgerrit | Mohammed Naser proposed openstack/nova master: Check for build request even if instance mapping doesn't exist https://review.openstack.org/586824 | 15:54 |
*** shaohe_feng has quit IRC | 16:03 | |
*** fried_rice has quit IRC | 16:08 | |
*** fried_rice has joined #openstack-nova | 16:08 | |
*** shaohe_feng has joined #openstack-nova | 16:08 | |
*** shaohe_feng has quit IRC | 16:13 | |
*** shaohe_feng has joined #openstack-nova | 16:14 | |
*** shaohe_feng has quit IRC | 16:23 | |
*** shaohe_feng has joined #openstack-nova | 16:27 | |
*** shaohe_feng has quit IRC | 16:33 | |
*** shaohe_feng has joined #openstack-nova | 16:35 | |
*** shaohe_feng has quit IRC | 16:43 | |
*** shaohe_feng has joined #openstack-nova | 16:44 | |
openstackgerrit | Merged openstack/nova master: Fix accumulated nits from port binding for live migration series https://review.openstack.org/583994 | 16:51 |
*** shaohe_feng has quit IRC | 16:53 | |
*** shaohe_feng has joined #openstack-nova | 16:54 | |
*** s10 has quit IRC | 17:01 | |
*** s10 has joined #openstack-nova | 17:02 | |
*** shaohe_feng has quit IRC | 17:03 | |
*** shaohe_feng has joined #openstack-nova | 17:04 | |
*** shaohe_feng has quit IRC | 17:13 | |
*** shaohe_feng has joined #openstack-nova | 17:14 | |
*** shaohe_feng has quit IRC | 17:23 | |
*** shaohe_feng has joined #openstack-nova | 17:29 | |
*** med_ has quit IRC | 17:32 | |
*** shaohe_feng has quit IRC | 17:33 | |
*** shaohe_feng has joined #openstack-nova | 17:34 | |
*** shaohe_feng has quit IRC | 17:43 | |
*** shaohe_feng has joined #openstack-nova | 17:46 | |
*** medberry has joined #openstack-nova | 17:49 | |
*** shaohe_feng has quit IRC | 17:53 | |
*** brault has joined #openstack-nova | 17:56 | |
*** shaohe_feng has joined #openstack-nova | 17:57 | |
*** brault has quit IRC | 18:00 | |
*** shaohe_feng has quit IRC | 18:03 | |
*** zzzeek has quit IRC | 18:04 | |
*** shaohe_feng has joined #openstack-nova | 18:05 | |
*** shaohe_feng has quit IRC | 18:13 | |
*** shaohe_feng has joined #openstack-nova | 18:14 | |
*** medberry has quit IRC | 18:19 | |
*** shaohe_feng has quit IRC | 18:23 | |
*** zzzeek has joined #openstack-nova | 18:25 | |
*** shaohe_feng has joined #openstack-nova | 18:25 | |
*** hoonetorg has quit IRC | 18:27 | |
*** mvenesio has quit IRC | 18:30 | |
*** shaohe_feng has quit IRC | 18:33 | |
*** shaohe_feng has joined #openstack-nova | 18:35 | |
*** yamahata has joined #openstack-nova | 18:38 | |
*** mvenesio has joined #openstack-nova | 18:41 | |
*** shaohe_feng has quit IRC | 18:43 | |
*** shaohe_feng has joined #openstack-nova | 18:44 | |
*** Guest2267 has quit IRC | 18:45 | |
*** vladikr has quit IRC | 18:52 | |
*** shaohe_feng has quit IRC | 18:53 | |
*** shaohe_feng has joined #openstack-nova | 18:55 | |
*** shaohe_feng has quit IRC | 19:03 | |
*** shaohe_feng has joined #openstack-nova | 19:06 | |
*** medberry has joined #openstack-nova | 19:07 | |
*** mvenesio has quit IRC | 19:12 | |
*** shaohe_feng has quit IRC | 19:13 | |
*** medberry has quit IRC | 19:13 | |
*** shaohe_feng has joined #openstack-nova | 19:14 | |
*** itlinux has joined #openstack-nova | 19:16 | |
*** armaan has joined #openstack-nova | 19:20 | |
*** shaohe_feng has quit IRC | 19:23 | |
*** shaohe_feng has joined #openstack-nova | 19:26 | |
*** shaohe_feng has quit IRC | 19:33 | |
*** shaohe_feng has joined #openstack-nova | 19:36 | |
*** shaohe_feng has quit IRC | 19:43 | |
*** shaohe_feng has joined #openstack-nova | 19:44 | |
openstackgerrit | Vieri proposed openstack/osc-placement master: Add image link in README.rst https://review.openstack.org/586839 | 19:46 |
*** shaohe_feng has quit IRC | 19:53 | |
*** shaohe_feng has joined #openstack-nova | 19:54 | |
*** shaohe_feng has quit IRC | 20:03 | |
*** shaohe_feng has joined #openstack-nova | 20:06 | |
*** itlinux has quit IRC | 20:07 | |
*** brault has joined #openstack-nova | 20:08 | |
*** itlinux has joined #openstack-nova | 20:09 | |
*** brault has quit IRC | 20:12 | |
*** shaohe_feng has quit IRC | 20:13 | |
*** shaohe_feng has joined #openstack-nova | 20:14 | |
*** shaohe_feng has quit IRC | 20:23 | |
*** shaohe_feng has joined #openstack-nova | 20:24 | |
*** avolkov has quit IRC | 20:26 | |
*** shaohe_feng has quit IRC | 20:33 | |
*** shaohe_feng has joined #openstack-nova | 20:35 | |
*** shaohe_feng has quit IRC | 20:43 | |
*** shaohe_feng has joined #openstack-nova | 20:44 | |
*** shaohe_feng has quit IRC | 20:53 | |
*** shaohe_feng has joined #openstack-nova | 20:54 | |
*** sean-k-mooney has quit IRC | 20:58 | |
*** jamesdenton has quit IRC | 21:02 | |
*** shaohe_feng has quit IRC | 21:03 | |
*** shaohe_feng has joined #openstack-nova | 21:04 | |
*** shaohe_feng has quit IRC | 21:13 | |
*** shaohe_feng has joined #openstack-nova | 21:14 | |
*** shaohe_feng has quit IRC | 21:23 | |
*** shaohe_feng has joined #openstack-nova | 21:24 | |
*** s10 has quit IRC | 21:28 | |
*** armaan has quit IRC | 21:32 | |
*** armaan has joined #openstack-nova | 21:32 | |
*** shaohe_feng has quit IRC | 21:33 | |
*** shaohe_feng has joined #openstack-nova | 21:34 | |
*** ejat has quit IRC | 21:36 | |
*** armaan has quit IRC | 21:37 | |
*** itlinux__ has quit IRC | 21:37 | |
*** shaohe_feng has quit IRC | 21:43 | |
*** shaohe_feng has joined #openstack-nova | 21:44 | |
*** shaohe_feng has quit IRC | 21:53 | |
*** shaohe_feng has joined #openstack-nova | 21:54 | |
*** rtjure has quit IRC | 21:56 | |
*** shaohe_feng has quit IRC | 22:03 | |
*** shaohe_feng has joined #openstack-nova | 22:05 | |
*** shaohe_feng has quit IRC | 22:13 | |
*** shaohe_feng has joined #openstack-nova | 22:15 | |
*** shaohe_feng has quit IRC | 22:23 | |
*** shaohe_feng has joined #openstack-nova | 22:23 | |
*** tbachman has joined #openstack-nova | 22:32 | |
*** shaohe_feng has quit IRC | 22:33 | |
*** shaohe_feng has joined #openstack-nova | 22:33 | |
*** shaohe_feng has quit IRC | 22:43 | |
*** shaohe_feng has joined #openstack-nova | 22:46 | |
*** tbachman has quit IRC | 22:52 | |
*** shaohe_feng has quit IRC | 22:54 | |
*** shaohe_feng has joined #openstack-nova | 22:54 | |
*** shaohe_feng has quit IRC | 23:04 | |
*** mschuppert has quit IRC | 23:04 | |
*** shaohe_feng has joined #openstack-nova | 23:06 | |
*** shaohe_feng has quit IRC | 23:14 | |
*** shaohe_feng has joined #openstack-nova | 23:15 | |
*** shaohe_feng has quit IRC | 23:24 | |
*** shaohe_feng has joined #openstack-nova | 23:26 | |
*** shaohe_feng has quit IRC | 23:35 | |
*** shaohe_feng has joined #openstack-nova | 23:35 | |
*** shaohe_feng has quit IRC | 23:45 | |
*** shaohe_feng has joined #openstack-nova | 23:46 | |
*** brault has joined #openstack-nova | 23:49 | |
*** brault has quit IRC | 23:53 | |
*** shaohe_feng has quit IRC | 23:55 | |
*** shaohe_feng has joined #openstack-nova | 23:56 |
Generated by irclog2html.py 2.15.3 by Marius Gedminas - find it at mg.pov.lt!