| *** tjones1 has joined #openstack-nova | 00:01 | |
| *** dboik has joined #openstack-nova | 00:04 | |
| *** dims has quit IRC | 00:04 | |
| *** annashen has quit IRC | 00:05 | |
| *** dboik_ has joined #openstack-nova | 00:05 | |
| *** ferest has joined #openstack-nova | 00:06 | |
| *** tjones1 has quit IRC | 00:08 | |
| *** dboik has quit IRC | 00:09 | |
| *** achanda has joined #openstack-nova | 00:09 | |
| *** annashen has joined #openstack-nova | 00:12 | |
| *** FatBack has quit IRC | 00:13 | |
| *** promulo has joined #openstack-nova | 00:14 | |
| *** promulo__ has quit IRC | 00:18 | |
| openstackgerrit | Joe Gordon proposed openstack/nova: Log ebtables output on failure https://review.openstack.org/170307 | 00:21 |
|---|---|---|
| openstackgerrit | Joe Gordon proposed openstack/nova: Allow _exec_ebtables to ignore exit codes https://review.openstack.org/170322 | 00:21 |
| *** dims has joined #openstack-nova | 00:22 | |
| jogo | cburgess: ping | 00:22 |
| jogo | ^ | 00:22 |
| cburgess | *pong* | 00:22 |
| jogo | your ebtables stuff is breaking I think | 00:22 |
| cburgess | Oh thats not good. | 00:22 |
| cburgess | Let me go read those reviews right now. | 00:22 |
| jogo | cburgess: see http://logs.openstack.org/07/170307/1/check/check-tempest-dsvm-aiopcpu-full/ea25407//logs/10.176.201.114-subnode/screen-n-net.txt.gz?#_2015-04-02_23_14_39_304 | 00:23 |
| jogo | the context is getting multi node testing (aiopcpu) working | 00:23 |
| jogo | and we are seeing a bunch of networking issues periodically | 00:23 |
| cburgess | Hmm... I wonder why these rules aren't getting created... | 00:24 |
| jogo | cburgess: so ensure_ebtables_rules deletes the rule and recreates it | 00:24 |
| jogo | every time | 00:24 |
| cburgess | Yeah... | 00:24 |
| jogo | so the first time ensure is called for that rule it may not exist right? | 00:24 |
| cburgess | So vishy added that as I recall to work around a sometime bug with the rule not getting added. | 00:24 |
| *** annegentle has joined #openstack-nova | 00:24 | |
| cburgess | Yeah... I think so. | 00:25 |
| jogo | anyway you were always retrying | 00:25 |
| jogo | and eventually the retry works and you can delete the rule | 00:25 |
| jogo | not sure how that happens though | 00:25 |
| jogo | so this may not be the actual issue we are seeing but either way this looks bad | 00:26 |
| *** shaohe_feng has quit IRC | 00:26 | |
| jogo | the issue we are seeing in the end is instances not getting DHCP leases | 00:26 |
| jogo | WARN: /etc/rc3.d/S40-network failed | 00:27 |
| jogo | http://logs.openstack.org/27/169827/1/check/check-tempest-dsvm-aiopcpu-full/e4312c3/logs/testr_results.html.gz | 00:27 |
| *** annashen has quit IRC | 00:28 | |
| *** kiwik-chenrui has joined #openstack-nova | 00:29 | |
| *** RuiChen has quit IRC | 00:33 | |
| *** annashen has joined #openstack-nova | 00:34 | |
| cburgess | jogo: So does this change cause the instance to get an IP? I don't know that this would prevent it. | 00:36 |
| cburgess | let me read these logs and refresh my memory of the code, its been a while | 00:36 |
| jogo | cburgess: thanks | 00:38 |
| jogo | cburgess: the more I look at this bug, the more I think its unrelated | 00:38 |
| jogo | we try deleting 3 times | 00:38 |
| jogo | and move on | 00:38 |
| cburgess | Yeah...I think thats what happens. | 00:38 |
| jogo | the raise logic doesn't get triggered because check_exit_code=False | 00:39 |
| cburgess | At least as I recall from the code. | 00:39 |
| cburgess | Right | 00:39 |
| cburgess | We aren't getting an exception so it feels like this probably isn't the problem. | 00:39 |
| jogo | so fixing this will just speed things up | 00:39 |
| jogo | but not fix it | 00:39 |
| cburgess | Right. | 00:39 |
| *** eliqiao has joined #openstack-nova | 00:39 | |
| cburgess | There is some latent timiing thing where sometimes this loop runs multiple times. | 00:39 |
| cburgess | I've never figured out why that happens. | 00:39 |
| cburgess | That could just be a timing thing though in that libvirt is also running at the same time and blocking us. | 00:40 |
| cburgess | At least that was the theory. | 00:40 |
| *** gibi has quit IRC | 00:40 | |
| *** ildikov_ has quit IRC | 00:40 | |
| jogo | have to head out, I will cleanup my patch later and get it in | 00:41 |
| jogo | then keep hunting for why multi node testing sometimes fails | 00:41 |
| jogo | failure rate is pretty high right now http://jogo.github.io/gate/aiopcpu.html | 00:42 |
| cburgess | I need to think about your change though. | 00:42 |
| cburgess | I'm not sure we want that. | 00:42 |
| jogo | cburgess: why not? | 00:42 |
| *** annegentle has quit IRC | 00:42 | |
| cburgess | I don't think you will retry on a locking error with libvirt. | 00:42 |
| cburgess | I need to think about this though. | 00:42 |
| cburgess | I'll post a comment to the review if I think its a problem. | 00:43 |
| cburgess | Yeah you won't retry. I'll explain in a comment on the review so you can take off. | 00:43 |
| jogo | cburgess: kk, we won't retry on a failed delete operation right | 00:44 |
| cburgess | Right | 00:44 |
| jogo | so maybe we need to introspect the error message | 00:44 |
| cburgess | So if we failed because we raced with libvirt and libvirt won then boom. | 00:44 |
| cburgess | Yeah.. so we can do that. We were hoping to avoid it but maybe we need to. | 00:44 |
| jogo | maybe ebtables has a flag to not fail if row is not there? | 00:45 |
| cburgess | Maybe.. | 00:45 |
| cburgess | reading man | 00:45 |
| cburgess | Nothing hops out. | 00:46 |
| cburgess | The real solution for this is to manage ebtables rules like we do iptables rules but thats a bit more work. | 00:46 |
| cburgess | As in reload them each time. | 00:46 |
| jogo | so that any latent issues go away over time yeah | 00:47 |
| cburgess | But yeah maybe we can just introspect the error. | 00:47 |
| cburgess | We do it in other places. | 00:47 |
| jogo | for now I vote just introspect the error message | 00:48 |
| jogo | yeah | 00:48 |
| cburgess | Its :( but doable. | 00:48 |
| jogo | want to amend my patch? | 00:48 |
| openstackgerrit | Kun Huang proposed openstack/nova: improve api_version.matches https://review.openstack.org/170325 | 00:48 |
| cburgess | Yeah I need to find the error message... | 00:48 |
| jogo | I can write the unit tests for it after if you want | 00:48 |
| cburgess | Do you have a copy some place? | 00:48 |
| *** ujjain has quit IRC | 00:48 | |
| cburgess | Of the error? | 00:48 |
| cburgess | if not I think I still have the test case some place I used to reproduce it. | 00:48 |
| jogo | check the original bug report maybe? | 00:49 |
| jogo | anyway time to go AFK for a bit o/ thanks | 00:49 |
| cburgess | OK cool. | 00:49 |
| *** annashen has quit IRC | 00:50 | |
| cburgess | jogo: Found it.. stderr: u"Unable to update the kernel. Two possible causes:\n1. Multiple ebtables programs were executing simultaneously. The ebtables\n userspace tool doesn't by default support multiple ebtables programs running\n concurrently. The ebtables option --concurrent or a tool like flock can be\n used to support concurrent scripts that update the ebtables kernel tables.\n2. The kernel doesn't support a certain ebtables | 00:51 |
| cburgess | extension, consider\n recompiling your kernel or insmod the extension.\n.\n" execute /usr/local/lib/python2.7/dist-packages/oslo_concurrency/processutils.py:249 | 00:51 |
| *** sdake_ has joined #openstack-nova | 00:54 | |
| eliqiao | hi alex_xu: | 00:57 |
| alex_xu | eliqiao: hi | 00:57 |
| eliqiao | it's re https://review.openstack.org/#/c/165671/3 | 00:57 |
| *** sdake has quit IRC | 00:57 | |
| alex_xu | eliqiao: yea, I saw that. | 00:58 |
| eliqiao | I see you give -1 , is that due to the refer message ? | 00:58 |
| alex_xu | eliqiao: but I really think the exception process code should be in exception catch block | 00:58 |
| eliqiao | alex_xu: hmm. I am okay that make it in exception.. | 00:59 |
| eliqiao | alex_xu: and how about the refer message? | 00:59 |
| alex_xu | eliqiao: yea, thanks. It is more readable, and that is what try..catch useful | 00:59 |
| *** joshw42 has quit IRC | 00:59 | |
| *** sdake has joined #openstack-nova | 01:00 | |
| *** tteggel_ has quit IRC | 01:00 | |
| alex_xu | eliqiao: what your mean about refer message? | 01:00 |
| *** mariusv has quit IRC | 01:00 | |
| eliqiao | alex_xu: that is what the code be, sahid give the propose to me . | 01:00 |
| eliqiao | r = {-1: 'VIR_CPU_COMPARE_ERROR', .., and your comments that , use human understanding message. | 01:01 |
| alex_xu | form the comment sound like sahid agree with me? | 01:01 |
| *** shadyabhi has quit IRC | 01:01 | |
| *** mordred has quit IRC | 01:01 | |
| *** tellesnobrega has quit IRC | 01:01 | |
| *** jgrimm has quit IRC | 01:01 | |
| eliqiao | alex_xu: but these message is from http://libvirt.org/html/libvirt-libvirt-host.html#virCPUCompareResult | 01:01 |
| *** tteggel has joined #openstack-nova | 01:01 | |
| alex_xu | eliqiao: yea, I'm not very strong at that comment. just suggestion | 01:02 |
| *** gilliard has quit IRC | 01:02 | |
| eliqiao | alex_xu: hmm.. but sahid give +1 on that. | 01:02 |
| *** jgrimm has joined #openstack-nova | 01:02 | |
| *** JoshNang has quit IRC | 01:02 | |
| *** mariusv has joined #openstack-nova | 01:02 | |
| *** shadyabhi has joined #openstack-nova | 01:02 | |
| *** mariusv has quit IRC | 01:02 | |
| *** mariusv has joined #openstack-nova | 01:02 | |
| alex_xu | eliqiao: if we use VIR_CPU_COMPARE_IDENTICAL, sound like somebody ready the debug message need know a little about libvirt | 01:02 |
| eliqiao | alex_xu: okay , I got you, I will change the exception handle back to normal. | 01:02 |
| alex_xu | eliqiao: yea, I'm a little confuse also | 01:02 |
| alex_xu | eliqiao: thanks | 01:03 |
| eliqiao | alex_xu: yeah, I think that message is okay , it is close to human.. | 01:03 |
| eliqiao | alex_xu: thanks for clarify , good day. | 01:03 |
| *** ildikov_ has joined #openstack-nova | 01:03 | |
| *** sdake_ has quit IRC | 01:03 | |
| alex_xu | eliqiao: or we can wait sahid wakeup, then try to get agreement with him | 01:03 |
| alex_xu | eliqiao: np | 01:04 |
| eliqiao | alex_xu: that would be nice... besides, I need to fix a typo .. :(, so it's require to update a new version. | 01:04 |
| alex_xu | eliqiao: ok | 01:04 |
| *** pixelb has quit IRC | 01:05 | |
| eliqiao | alex_xu: do you know what is the time zone of sahid? | 01:05 |
| alex_xu | eliqiao: sorry, i don't know | 01:05 |
| alex_xu | eliqiao: the default is everybody wakeup at our night.... | 01:05 |
| eliqiao | alex_xu: okay , cool, that is not a hurry fix. | 01:05 |
| *** JoshNang has joined #openstack-nova | 01:06 | |
| *** mordred has joined #openstack-nova | 01:06 | |
| *** gilliard has joined #openstack-nova | 01:07 | |
| *** otter768 has joined #openstack-nova | 01:11 | |
| *** claudiub has quit IRC | 01:13 | |
| *** tellesnobrega has joined #openstack-nova | 01:15 | |
| *** otter768 has quit IRC | 01:16 | |
| *** shaohe_feng has joined #openstack-nova | 01:18 | |
| *** annashen has joined #openstack-nova | 01:18 | |
| *** vilobhmm1 has quit IRC | 01:20 | |
| *** Nic has quit IRC | 01:22 | |
| *** unicell has quit IRC | 01:25 | |
| openstackgerrit | Chet Burgess proposed openstack/nova: Allow _exec_ebtables to parse stderr https://review.openstack.org/170322 | 01:25 |
| *** ferest has quit IRC | 01:27 | |
| cburgess | Future jogo: patch set updated to parse error string, -1 left on review for unit tests and because we need to do some functional tests (I didn't). | 01:28 |
| jogo | cburgess: thanks | 01:31 |
| cburgess | jogo: Oh that was quick | 01:31 |
| *** vmtrooper has joined #openstack-nova | 01:32 | |
| *** park_heijlong has joined #openstack-nova | 01:32 | |
| *** annashen has quit IRC | 01:34 | |
| *** devlaps1 has quit IRC | 01:35 | |
| *** vmtrooper has quit IRC | 01:36 | |
| *** popw has joined #openstack-nova | 01:37 | |
| *** takedakn has joined #openstack-nova | 01:38 | |
| *** sdake_ has joined #openstack-nova | 01:39 | |
| *** haomaiwang has quit IRC | 01:41 | |
| *** sdake has quit IRC | 01:43 | |
| *** annegentle has joined #openstack-nova | 01:43 | |
| *** popw has quit IRC | 01:44 | |
| *** erkules_ has joined #openstack-nova | 01:45 | |
| *** erkules has quit IRC | 01:47 | |
| *** annegentle has quit IRC | 01:48 | |
| *** annegentle has joined #openstack-nova | 01:50 | |
| *** harlowja is now known as harlowja_away | 01:52 | |
| jogo | only around for a moment | 01:52 |
| *** amrith is now known as _amrith_ | 01:54 | |
| *** popw has joined #openstack-nova | 01:55 | |
| *** haomaiwang has joined #openstack-nova | 01:55 | |
| *** adrian_otto has joined #openstack-nova | 01:58 | |
| *** yamahata has quit IRC | 01:59 | |
| *** marun has quit IRC | 02:00 | |
| *** annegentle has quit IRC | 02:00 | |
| *** artom has quit IRC | 02:01 | |
| *** dsanders has quit IRC | 02:01 | |
| *** markvoelker has quit IRC | 02:01 | |
| *** zhangtralon has joined #openstack-nova | 02:02 | |
| *** nelsnelson has joined #openstack-nova | 02:02 | |
| openstackgerrit | zhangtralon proposed openstack/nova: creating ordinary numa vm fails with large_page_vm https://review.openstack.org/167917 | 02:02 |
| *** markvoelker has joined #openstack-nova | 02:03 | |
| *** takedakn has quit IRC | 02:06 | |
| openstackgerrit | Yongli He proposed openstack/nova: resource tracker style pci resource management https://review.openstack.org/131321 | 02:12 |
| *** baoli has joined #openstack-nova | 02:13 | |
| *** whenry has joined #openstack-nova | 02:19 | |
| *** vilobhmm1 has joined #openstack-nova | 02:20 | |
| *** ijw_ has quit IRC | 02:27 | |
| *** Marga_ has quit IRC | 02:28 | |
| *** yingjun has joined #openstack-nova | 02:31 | |
| openstackgerrit | zhangtralon proposed openstack/nova: DB:support for migration objects multi-statues https://review.openstack.org/169604 | 02:34 |
| *** adrian_otto has quit IRC | 02:34 | |
| *** annashen has joined #openstack-nova | 02:34 | |
| *** dboik_ has quit IRC | 02:35 | |
| *** dboik has joined #openstack-nova | 02:36 | |
| *** otter768 has joined #openstack-nova | 02:37 | |
| *** jcoufal has joined #openstack-nova | 02:39 | |
| *** annashen has quit IRC | 02:39 | |
| *** vilobhmm1 has quit IRC | 02:43 | |
| openstackgerrit | Eli Qiao proposed openstack/nova: Libvirt: Show real vCpuCompareResult instead of a url link https://review.openstack.org/165671 | 02:44 |
| *** takedakn has joined #openstack-nova | 02:46 | |
| *** mwagner_lap has quit IRC | 02:46 | |
| eliqiao | hello, any one know how to single tempes case ? fox example , I 'd like to test this case tempest.scenario.test_network_basic_ops.TestNetworkBasicOps.test_preserve_preexisting_port | 02:47 |
| *** takedakn has quit IRC | 02:49 | |
| openstackgerrit | zhangtralon proposed openstack/nova: DB:support for migration objects multi-statues https://review.openstack.org/169604 | 02:52 |
| *** baoli has quit IRC | 02:52 | |
| *** dsanders has joined #openstack-nova | 02:56 | |
| *** vmtrooper has joined #openstack-nova | 02:56 | |
| *** suresh12 has quit IRC | 02:58 | |
| *** mwagner_lap has joined #openstack-nova | 02:59 | |
| *** max_lobur has quit IRC | 02:59 | |
| *** vilobhmm1 has joined #openstack-nova | 02:59 | |
| eliqiao | hi park_heijlong: | 02:59 |
| park_heijlong | hi eliqiao | 03:00 |
| eliqiao | park_heijlong: do you know how to run a sigle tempest case? | 03:02 |
| *** achanda has quit IRC | 03:03 | |
| *** unicell has joined #openstack-nova | 03:03 | |
| park_heijlong | eliqiao, let me re-call | 03:04 |
| eliqiao | park_heijlong: cool thx. | 03:04 |
| *** yingjun_ has joined #openstack-nova | 03:12 | |
| *** jcoufal has quit IRC | 03:12 | |
| *** yingjun has quit IRC | 03:12 | |
| *** vmtrooper has quit IRC | 03:16 | |
| *** achanda has joined #openstack-nova | 03:16 | |
| *** dsanders has quit IRC | 03:27 | |
| *** sbfox has joined #openstack-nova | 03:31 | |
| liusheng | anyone can help to take a look at https://review.openstack.org/#/c/142033/ ? thanks | 03:33 |
| *** Longgeek has joined #openstack-nova | 03:34 | |
| *** achanda has quit IRC | 03:36 | |
| *** vmtrooper has joined #openstack-nova | 03:41 | |
| *** links has joined #openstack-nova | 03:45 | |
| *** achanda has joined #openstack-nova | 03:45 | |
| *** zzzeek has joined #openstack-nova | 03:46 | |
| *** yingjun_ has quit IRC | 03:50 | |
| *** sdake has joined #openstack-nova | 03:51 | |
| *** otter768 has quit IRC | 03:53 | |
| openstackgerrit | zhangtralon proposed openstack/nova: add support for muti_statuses_query from migration https://review.openstack.org/169631 | 03:54 |
| *** sdake_ has quit IRC | 03:55 | |
| *** adrian_otto has joined #openstack-nova | 03:56 | |
| *** shaohe_feng has quit IRC | 03:58 | |
| *** rushiagr_away is now known as rushiagr | 03:58 | |
| *** Longgeek has quit IRC | 03:59 | |
| *** Longgeek has joined #openstack-nova | 03:59 | |
| *** achanda has quit IRC | 04:02 | |
| *** dsanders has joined #openstack-nova | 04:02 | |
| *** popw has quit IRC | 04:06 | |
| *** subscope has quit IRC | 04:07 | |
| openstackgerrit | zhangtralon proposed openstack/nova: DB:support for migration objects multi-statues https://review.openstack.org/169604 | 04:07 |
| *** annashen has joined #openstack-nova | 04:10 | |
| *** Marga_ has joined #openstack-nova | 04:15 | |
| *** vmtrooper has quit IRC | 04:16 | |
| *** nelsnelson has quit IRC | 04:17 | |
| *** adrian_otto has quit IRC | 04:20 | |
| *** wanghong has joined #openstack-nova | 04:20 | |
| *** ferest has joined #openstack-nova | 04:21 | |
| *** jlvillal has quit IRC | 04:25 | |
| *** jlvillal has joined #openstack-nova | 04:28 | |
| *** wanghong has quit IRC | 04:29 | |
| *** annashen has quit IRC | 04:31 | |
| *** sbfox has quit IRC | 04:32 | |
| *** annashen has joined #openstack-nova | 04:34 | |
| *** Nikolay_St has quit IRC | 04:35 | |
| *** changbl_ has quit IRC | 04:40 | |
| *** penick has joined #openstack-nova | 04:41 | |
| *** penick has quit IRC | 04:42 | |
| *** devlaps has joined #openstack-nova | 04:42 | |
| *** achanda has joined #openstack-nova | 04:45 | |
| *** penick has joined #openstack-nova | 04:46 | |
| *** briancurtin has quit IRC | 04:46 | |
| *** kun_huang has quit IRC | 04:46 | |
| *** dougwig has quit IRC | 04:46 | |
| *** ameade has quit IRC | 04:46 | |
| *** zhiyan has quit IRC | 04:46 | |
| *** penick has quit IRC | 04:46 | |
| *** s0mik_ has quit IRC | 04:47 | |
| *** aweeks has quit IRC | 04:47 | |
| *** briancurtin has joined #openstack-nova | 04:47 | |
| *** zhiyan has joined #openstack-nova | 04:47 | |
| *** ameade has joined #openstack-nova | 04:47 | |
| *** annashen has quit IRC | 04:47 | |
| *** kun_huang has joined #openstack-nova | 04:47 | |
| *** kun_huang has quit IRC | 04:48 | |
| *** dougwig has joined #openstack-nova | 04:48 | |
| *** s0mik_ has joined #openstack-nova | 04:49 | |
| *** kun_huang has joined #openstack-nova | 04:49 | |
| *** aweeks has joined #openstack-nova | 04:50 | |
| *** zhangtralon has quit IRC | 04:51 | |
| *** popw has joined #openstack-nova | 04:53 | |
| *** zhangtralon has joined #openstack-nova | 04:55 | |
| *** hdd has joined #openstack-nova | 04:55 | |
| openstackgerrit | zhangtralon proposed openstack/nova: add support for muti_statuses_query from migration https://review.openstack.org/169631 | 05:03 |
| openstackgerrit | zhangtralon proposed openstack/nova: DB:support for migration objects multi-statues https://review.openstack.org/169604 | 05:03 |
| *** unicell1 has joined #openstack-nova | 05:05 | |
| *** Administrator has joined #openstack-nova | 05:07 | |
| *** unicell has quit IRC | 05:07 | |
| *** Administrator is now known as Guest89150 | 05:07 | |
| *** Guest89150 is now known as wanghong | 05:07 | |
| *** yingjun has joined #openstack-nova | 05:09 | |
| *** zzzeek has quit IRC | 05:11 | |
| *** hdd has quit IRC | 05:14 | |
| *** penick has joined #openstack-nova | 05:15 | |
| openstackgerrit | zhangtralon proposed openstack/nova: add support for muti_statuses_query from migration https://review.openstack.org/169631 | 05:15 |
| *** penick has quit IRC | 05:15 | |
| *** setuid has quit IRC | 05:17 | |
| *** annashen has joined #openstack-nova | 05:20 | |
| *** lpetrut has joined #openstack-nova | 05:20 | |
| *** rushiagr is now known as rushiagr_away | 05:20 | |
| *** yingjun has quit IRC | 05:23 | |
| *** Marga_ has quit IRC | 05:28 | |
| *** vilobhmm1 has quit IRC | 05:29 | |
| *** annashen has quit IRC | 05:31 | |
| *** mdbooth has quit IRC | 05:32 | |
| *** penick has joined #openstack-nova | 05:33 | |
| *** tojuvone has joined #openstack-nova | 05:33 | |
| *** dave-mccowan has quit IRC | 05:34 | |
| *** arnaud___ has joined #openstack-nova | 05:37 | |
| *** mdbooth has joined #openstack-nova | 05:38 | |
| openstackgerrit | Ghanshyam Mann proposed openstack/nova: Merge server tests between v2 and v2.1 https://review.openstack.org/170350 | 05:39 |
| *** mpaolino has joined #openstack-nova | 05:39 | |
| *** ildikov_ has quit IRC | 05:40 | |
| eliqiao | hi, it is worthy to do a backport on H release ? | 05:41 |
| *** wverdugo5001 has quit IRC | 05:44 | |
| kashyap | eliqiao: Havana is End-Of-Life -- https://wiki.openstack.org/wiki/Releases | 05:45 |
| kashyap | So, I'd say it's a waste of time. | 05:45 |
| eliqiao | ah.. thanks kashyap: | 05:46 |
| eliqiao | I found this bug https://bugs.launchpad.net/nova/+bug/1296967 , they are testing havana. | 05:47 |
| openstack | Launchpad bug 1296967 in OpenStack Compute (nova) "instances stuck with task_state of REBOOTING after controller switchover" [High,Incomplete] - Assigned to Eli Qiao (taget-9) | 05:47 |
| eliqiao | kashya: so, we can closed it , right ? | 05:48 |
| *** ferest has quit IRC | 05:49 | |
| *** zhangtralon has quit IRC | 05:50 | |
| kashyap | eliqiao: Since the report looks reasonably investigated, you might want to note the commits that fixed the bug in IceHouse/Juno/Kilo. | 05:50 |
| kashyap | And, ask the reporter if it can be closed. | 05:50 |
| eliqiao | kashyap: thanks, actually , I have a patch get merged in Kilo. not sure if that works for him, I'v ask him to verify. thanks kashyap. | 05:51 |
| *** shaohe_feng has joined #openstack-nova | 05:51 | |
| kashyap | Yep, if you wrote the patch, and got it merged, it's very reasonable to ask them to test if it works for them. | 05:52 |
| *** otter768 has joined #openstack-nova | 05:54 | |
| *** yingjun has joined #openstack-nova | 05:56 | |
| *** penick has quit IRC | 05:56 | |
| *** achanda has quit IRC | 05:57 | |
| *** otter768 has quit IRC | 05:58 | |
| *** oro has joined #openstack-nova | 05:58 | |
| *** wverdugo5001 has joined #openstack-nova | 05:59 | |
| *** vmtrooper has joined #openstack-nova | 06:05 | |
| *** armax has quit IRC | 06:07 | |
| *** yingjun has quit IRC | 06:08 | |
| *** vmtrooper has quit IRC | 06:10 | |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/nova: Imported Translations from Transifex https://review.openstack.org/169637 | 06:18 |
| *** dsanders has quit IRC | 06:19 | |
| *** ildikov_ has joined #openstack-nova | 06:23 | |
| *** romainh has joined #openstack-nova | 06:25 | |
| *** achanda has joined #openstack-nova | 06:26 | |
| *** shaohe_feng has quit IRC | 06:29 | |
| *** markvoelker has quit IRC | 06:29 | |
| *** rushiagr_away is now known as rushiagr | 06:29 | |
| *** vmtrooper has joined #openstack-nova | 06:29 | |
| *** annashen has joined #openstack-nova | 06:31 | |
| *** aswadr has joined #openstack-nova | 06:32 | |
| *** shaohe_feng has joined #openstack-nova | 06:34 | |
| *** vmtrooper has quit IRC | 06:36 | |
| *** royce has joined #openstack-nova | 06:36 | |
| *** annashen has quit IRC | 06:37 | |
| *** doude has joined #openstack-nova | 06:39 | |
| *** sahid has joined #openstack-nova | 06:40 | |
| *** cfriesen has quit IRC | 06:40 | |
| *** ttx has quit IRC | 06:44 | |
| *** ttx has joined #openstack-nova | 06:44 | |
| *** arnaud___ has quit IRC | 06:51 | |
| kun_huang | oomichi_: ping | 06:58 |
| *** markvoelker has joined #openstack-nova | 06:59 | |
| *** otter768 has joined #openstack-nova | 07:00 | |
| openstackgerrit | Eli Qiao proposed openstack/nova-specs: Validate the service state before deleting it https://review.openstack.org/163274 | 07:01 |
| *** mmedvede has joined #openstack-nova | 07:02 | |
| *** markvoelker has quit IRC | 07:04 | |
| *** otter768 has quit IRC | 07:05 | |
| *** gibi has joined #openstack-nova | 07:10 | |
| *** ajayaa has joined #openstack-nova | 07:10 | |
| *** matrohon has joined #openstack-nova | 07:12 | |
| *** rajesht has joined #openstack-nova | 07:23 | |
| *** royce has quit IRC | 07:25 | |
| *** jistr has joined #openstack-nova | 07:29 | |
| *** jcoufal has joined #openstack-nova | 07:32 | |
| *** penick has joined #openstack-nova | 07:32 | |
| *** achanda has quit IRC | 07:33 | |
| *** achanda has joined #openstack-nova | 07:33 | |
| *** penick has quit IRC | 07:40 | |
| openstackgerrit | Eli Qiao proposed openstack/nova-specs: Improve return code of lock_server api https://review.openstack.org/163275 | 07:44 |
| *** oomichi- has joined #openstack-nova | 07:44 | |
| openstackgerrit | Eli Qiao proposed openstack/nova-specs: Improve lock_server api return code https://review.openstack.org/163275 | 07:45 |
| *** oomichi- has quit IRC | 07:50 | |
| *** arnaud___ has joined #openstack-nova | 07:51 | |
| *** fawadkhaliq has joined #openstack-nova | 07:52 | |
| kun_huang | oomichi_: ping | 07:52 |
| *** arnaud___ has quit IRC | 07:56 | |
| openstackgerrit | Ankit Agrawal proposed openstack/nova: Detach volume after deleting the instance https://review.openstack.org/145738 | 07:56 |
| *** dulek has joined #openstack-nova | 07:57 | |
| *** ajayaa has quit IRC | 07:59 | |
| *** markvoelker has joined #openstack-nova | 08:00 | |
| *** penick has joined #openstack-nova | 08:02 | |
| *** dims has quit IRC | 08:03 | |
| *** rushiagr is now known as rushiagr_away | 08:04 | |
| *** markvoelker has quit IRC | 08:05 | |
| *** shaohe_feng has quit IRC | 08:07 | |
| *** fawadk has joined #openstack-nova | 08:08 | |
| *** derekh has joined #openstack-nova | 08:11 | |
| *** ajayaa has joined #openstack-nova | 08:11 | |
| *** Bsony has joined #openstack-nova | 08:12 | |
| *** fawadkhaliq has quit IRC | 08:12 | |
| *** fawadk has quit IRC | 08:13 | |
| *** mpaolino has quit IRC | 08:15 | |
| *** shaohe_feng has joined #openstack-nova | 08:16 | |
| *** penick has quit IRC | 08:19 | |
| *** lucasagomes has joined #openstack-nova | 08:20 | |
| *** marun has joined #openstack-nova | 08:23 | |
| *** tojuvone has quit IRC | 08:23 | |
| *** lpetrut has quit IRC | 08:24 | |
| *** marun has quit IRC | 08:27 | |
| oomichi_ | kun_huang: hi | 08:31 |
| kun_huang | oomichi_: welcome back, I have questions on small api changes/spec/bp | 08:32 |
| kun_huang | oomichi_: this one https://bugs.launchpad.net/nova/+bug/1182965 | 08:32 |
| openstack | Launchpad bug 1182965 in OpenStack Compute (nova) "keypair-list should allow you to specify a user or all-users" [Wishlist,Confirmed] - Assigned to Kun Huang (academicgareth) | 08:32 |
| oomichi_ | ok | 08:32 |
| kun_huang | oomichi_: this change is not complicated and seems don't need too much discussion on it | 08:33 |
| kun_huang | oomichi_: but it's an API change | 08:33 |
| oomichi_ | kun_huang: yeah | 08:33 |
| kun_huang | oomichi_: I have to write a spec and BP for it? | 08:33 |
| oomichi_ | kun_huang: we are requiring both now. | 08:34 |
| *** Nikolay_St has joined #openstack-nova | 08:34 | |
| oomichi_ | kun_huang: for example, https://review.openstack.org/#/c/168996/ is also small change, but he are writing both | 08:34 |
| oomichi_ | s/are/is/ | 08:35 |
| kun_huang | oomichi_: hah, okay, one more question on microversion | 08:35 |
| oomichi_ | kun_huang: ok | 08:35 |
| kun_huang | oomichi_: according to the rule: any API change increase microversions | 08:36 |
| *** Longgeek has quit IRC | 08:36 | |
| oomichi_ | kun_huang: yes, you are right | 08:36 |
| *** eglynn has joined #openstack-nova | 08:36 | |
| kun_huang | oomichi_: would that be a problem, many some changes on API make microversion increase too much | 08:37 |
| kun_huang | maybe, after L release, v2.1 becomes v2.101? | 08:37 |
| *** Longgeek has joined #openstack-nova | 08:37 | |
| oomichi_ | kun_huang: yeah, that would be expected situation. I feel 101 seems too many anyway ;) | 08:38 |
| oomichi_ | kun_huang: 101 means current API contains many problems | 08:38 |
| *** mpaolino has joined #openstack-nova | 08:39 | |
| oomichi_ | anyway, the rule requires each microversion for all api changes. | 08:39 |
| *** salv-orlando has quit IRC | 08:40 | |
| kun_huang | oomichi_: got it | 08:40 |
| kun_huang | oomichi_: no more questions :) thanks | 08:41 |
| oomichi_ | np :) | 08:41 |
| *** atuvenie has joined #openstack-nova | 08:42 | |
| *** ndipanov has joined #openstack-nova | 08:46 | |
| *** lpetrut has joined #openstack-nova | 08:49 | |
| *** ferest has joined #openstack-nova | 08:50 | |
| *** andreykurilin_ has joined #openstack-nova | 08:50 | |
| *** arnaud___ has joined #openstack-nova | 08:52 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 08:53 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 08:53 |
| *** fawadkhaliq has joined #openstack-nova | 08:54 | |
| *** achanda has quit IRC | 08:55 | |
| *** achanda has joined #openstack-nova | 08:55 | |
| *** oomichi_ has quit IRC | 08:56 | |
| *** arnaud___ has quit IRC | 08:57 | |
| *** salv-orlando has joined #openstack-nova | 08:57 | |
| *** oomichi has joined #openstack-nova | 08:58 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 08:58 |
| *** bkopilov has quit IRC | 09:01 | |
| *** oomichi has quit IRC | 09:01 | |
| *** markvoelker has joined #openstack-nova | 09:01 | |
| *** otter768 has joined #openstack-nova | 09:01 | |
| *** subscope has joined #openstack-nova | 09:02 | |
| openstackgerrit | melanie witt proposed openstack/python-novaclient: Handle binary userdata files such as gzip https://review.openstack.org/170399 | 09:03 |
| *** otter768 has quit IRC | 09:05 | |
| *** markvoelker has quit IRC | 09:05 | |
| openstackgerrit | heijlong proposed openstack/nova: Merge flavor_manage functional tests of v2 and v2.1 https://review.openstack.org/170400 | 09:06 |
| *** ankit_ag has joined #openstack-nova | 09:09 | |
| *** rushiagr_away is now known as rushiagr | 09:09 | |
| *** park_heijlong has quit IRC | 09:11 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 09:11 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 09:11 |
| *** devlaps has quit IRC | 09:19 | |
| openstackgerrit | melanie witt proposed openstack/python-novaclient: Handle binary userdata files such as gzip https://review.openstack.org/170399 | 09:19 |
| *** achanda has quit IRC | 09:25 | |
| *** achanda has joined #openstack-nova | 09:28 | |
| *** sdake has quit IRC | 09:28 | |
| *** achanda has quit IRC | 09:28 | |
| *** popw has quit IRC | 09:29 | |
| *** achanda has joined #openstack-nova | 09:30 | |
| *** wanghong has quit IRC | 09:32 | |
| *** bnemec has quit IRC | 09:33 | |
| *** rushiagr is now known as rushiagr_away | 09:43 | |
| openstackgerrit | wanghao proposed openstack/nova: fix 'Ignoring EndpointNotFound' error in init host https://review.openstack.org/147042 | 09:50 |
| *** andreykurilin_ has quit IRC | 09:50 | |
| openstackgerrit | afazekas proposed openstack/nova-specs: Rethinking scheduling https://review.openstack.org/170186 | 09:51 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 09:56 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 09:56 |
| *** zhangtralon has joined #openstack-nova | 09:57 | |
| *** rushiagr_away is now known as rushiagr | 09:58 | |
| bauzas | sdague: I'm surprised to see that you agree on modifying a former DB migration https://review.openstack.org/#/c/160195/3 | 10:01 |
| bauzas | sdague: this is a really old migration, we can't just modify it like if it was merged yesterday IMHO | 10:02 |
| *** markvoelker has joined #openstack-nova | 10:02 | |
| *** achanda has quit IRC | 10:02 | |
| *** markvoelker has quit IRC | 10:06 | |
| *** dims has joined #openstack-nova | 10:12 | |
| salv-orlando | sdague: good morning! Can I ask you a quick thing about your devstack patch https://review.openstack.org/#/c/169709/ ? | 10:12 |
| *** aswadr has quit IRC | 10:13 | |
| *** dims has quit IRC | 10:13 | |
| *** eliqiao has quit IRC | 10:16 | |
| openstackgerrit | Sylvain Bauza proposed openstack/nova: Add INFO logging to successful schedules https://review.openstack.org/170421 | 10:17 |
| *** shaohe_feng has quit IRC | 10:18 | |
| *** bnemec has joined #openstack-nova | 10:19 | |
| *** dims has joined #openstack-nova | 10:20 | |
| *** IanGovett has joined #openstack-nova | 10:24 | |
| *** tvb has joined #openstack-nova | 10:32 | |
| *** tvb has left #openstack-nova | 10:32 | |
| *** oro_ has joined #openstack-nova | 10:33 | |
| openstackgerrit | zhangtralon proposed openstack/nova: DB:support for migration objects multi-statues https://review.openstack.org/169604 | 10:34 |
| *** annashen has joined #openstack-nova | 10:35 | |
| *** claudiub has joined #openstack-nova | 10:36 | |
| *** annashen has quit IRC | 10:40 | |
| *** pixelb has joined #openstack-nova | 10:42 | |
| *** haomaiwang has quit IRC | 10:43 | |
| openstackgerrit | Petrut Lucian proposed openstack/nova: Add 'suspended' lifecycle event https://review.openstack.org/170433 | 10:43 |
| openstackgerrit | Petrut Lucian proposed openstack/nova: Hyper-V: restart serial console workers after instance power change https://review.openstack.org/163080 | 10:45 |
| *** Marga_ has joined #openstack-nova | 10:52 | |
| *** mpaolino has quit IRC | 10:53 | |
| *** dulek_ has joined #openstack-nova | 10:55 | |
| *** jcoufal_ has joined #openstack-nova | 10:55 | |
| *** jcoufal has quit IRC | 10:58 | |
| *** dulek has quit IRC | 10:59 | |
| sdague | bauzas: did you even read that patch? | 11:00 |
| sdague | salv-orlando: sure, fire away | 11:00 |
| *** otter768 has joined #openstack-nova | 11:02 | |
| *** markvoelker has joined #openstack-nova | 11:02 | |
| *** otter768 has quit IRC | 11:07 | |
| *** markvoelker has quit IRC | 11:07 | |
| *** oro_ has quit IRC | 11:07 | |
| salv-orlando | sdague: no biggies, it seems keystone and nova are always being disabled. somebody pushed a quick fix https://review.openstack.org/#/c/170405/ | 11:10 |
| sdague | bauzas: I'm really surprised by your comments about https://review.openstack.org/#/c/160195 - because I'm not sure how you could have that comment if you actually read that code. There is no change in the through path, and the only change is adding a "don't face plant" conditional so that the index add can be backported and not break people moving from juno forward. | 11:10 |
| sdague | salv-orlando: oops... thanks | 11:10 |
| sdague | salv-orlando: gah, I guess that's the issue with us not testing the default anywhere | 11:11 |
| bauzas | sdague: I understood the code | 11:12 |
| bauzas | sdague: my main problem is that some people already called this migration | 11:12 |
| bauzas | sdague: the ones using trunk | 11:13 |
| sdague | bauzas: uh huh... | 11:13 |
| bauzas | sdague: so it would create a discrepancy | 11:13 |
| sdague | really wouldn't | 11:13 |
| sdague | they'd end up at the same place, this is just the idempotent version of the migration | 11:13 |
| sdague | demonstrate to me how the schema of people running the 2 versions of this would be different | 11:14 |
| bauzas | sdague: it's not a code problem | 11:15 |
| bauzas | sdague: it's a process problem | 11:15 |
| sdague | bauzas: I don't understand what you are saying? | 11:16 |
| bauzas | sdague: so it's adding an idempotent check | 11:18 |
| bauzas | sdague: but the migration was actually fine when migrating from 273 to 274 | 11:19 |
| bauzas | sdague: anyway, I really to go out - lunch time | 11:20 |
| bauzas | *need | 11:20 |
| sdague | ok, that's fine, you still aren't making any sense here though | 11:20 |
| *** aix has joined #openstack-nova | 11:20 | |
| openstackgerrit | Rajesh Tailor proposed openstack/nova: Fix quota-update when nova-compute startup finish https://review.openstack.org/122347 | 11:22 |
| openstackgerrit | Rajesh Tailor proposed openstack/nova: Fix quota-update when nova-compute startup finish https://review.openstack.org/170118 | 11:22 |
| *** fawadkhaliq has quit IRC | 11:22 | |
| *** zhangtralon has quit IRC | 11:25 | |
| *** zhangtralon has joined #openstack-nova | 11:25 | |
| openstackgerrit | zhangtralon proposed openstack/nova: add support for muti_statuses_query from migration https://review.openstack.org/169631 | 11:28 |
| kashyap | sdague: When you get a | 11:30 |
| kashyap | moment, | 11:30 |
| kashyap | Do you have any further comments on this? -- https://review.openstack.org/#/c/169679/ "functions-libvirt: Enable DEBUG_LIBVIRT config attribute by default" | 11:31 |
| *** kiwik-chenrui has quit IRC | 11:35 | |
| *** kiwik-chenrui has joined #openstack-nova | 11:35 | |
| ndipanov | hey sdague https://review.openstack.org/#/c/159106/ this now made the -1ers happy, and I think it's an RC1 bug | 11:37 |
| ndipanov | not sure I should be +2ing it since I reposted it last night | 11:38 |
| ndipanov | (it might be a public holiday in the US in which case sorry) | 11:38 |
| sdague | kashyap: approved | 11:39 |
| sdague | ndipanov: no holiday here, let me take a look | 11:39 |
| kashyap | sdague: Thanks. I hope at a future time Elastic Recheck can index them too. | 11:39 |
| *** alexpilotti has joined #openstack-nova | 11:39 | |
| ndipanov | sdague, thanks | 11:39 |
| *** Marga_ has quit IRC | 11:40 | |
| sdague | ndipanov: ok, given my understanding level of the numa code, I'm good with moving that forward. Probably get zz_johnthetubagu to look as well | 11:43 |
| ndipanov | sdague, cool - it's basically about getting a nice error message when running a lower than required version of libvirt | 11:44 |
| ndipanov | but also will not schedule to those hosts if you have a filter turned on | 11:44 |
| ndipanov | the NUMA filter I mean | 11:44 |
| sdague | yeh, that's one of the rc bugs as well right? | 11:46 |
| *** shaohe_feng has joined #openstack-nova | 11:46 | |
| ndipanov | sdague, yeah at least one of the bugs it references is | 11:50 |
| ndipanov | I'm not sure it qualifies as a blocker... | 11:50 |
| *** Marga_ has joined #openstack-nova | 11:50 | |
| ndipanov | per se | 11:50 |
| *** shaohe_feng has quit IRC | 11:51 | |
| *** lucasagomes is now known as lucas-hungry | 11:51 | |
| sdague | seems good to get in regardless | 11:51 |
| ndipanov | yeah | 11:51 |
| ndipanov | I see that we now have a numa tag for bugs | 11:51 |
| ndipanov | that's how buggy it is lol :( | 11:51 |
| ndipanov | :D | 11:51 |
| sdague | yeh, I don't remember if I added it to the official list yet | 11:51 |
| bauzas | sdague: okay, I thought about it | 11:51 |
| *** ndipanov is now known as ndipanoff | 11:51 | |
| sdague | but when I was triaging there are quite a few, so it seemed good to group them | 11:51 |
| bauzas | sdague: thanks for having given your opinion, I was thinking that we weren't accepting to merge patches for old migrations | 11:52 |
| ndipanoff | sdague, yes it makes sense | 11:52 |
| bauzas | sdague: so, okay, I understand that it's possible, I'll change my view | 11:52 |
| sdague | bauzas: the point is understanding why we say "don't change old migrations" | 11:52 |
| sdague | because it's not just a blind policy for not changing things | 11:53 |
| kashyap | ndipanoff: FWIW, I look at it this way: NUMA/Huge Pages are a bit more specialized, having a tag merely doesn't mean it's "buggy". | 11:53 |
| bauzas | sdague: yeah, by looking on my phrase, it sounds like you misunderstood "surprised" | 11:53 |
| sdague | it's just a first order guideline to make everyone stop and think hard that they haven't created a diverged data model | 11:53 |
| bauzas | sdague: I was actually wondering (hence the word 'surprised') to see you giving a +2 for something I was thinking it was not acceptable | 11:54 |
| sdague | the important thing is the data model is idempotent, everyone at 274, no matter how they go there, has exactly the same schema | 11:54 |
| bauzas | so my bad | 11:54 |
| bauzas | I can understand that you maybe thought I was thinking you were fool, but that's not | 11:54 |
| sdague | bauzas: yeh, sorry. That was the first thing I read after logging into my computer this morning, so was set aback. | 11:55 |
| bauzas | sdague: I actually pinged you because I try to understand all of your patches (ie. learning how cores have views) | 11:56 |
| sdague | bauzas: ok, well, better now after a cup of coffee :) | 11:57 |
| bauzas | sdague: agreed, same after recoffeeing | 11:57 |
| luv | russellb: Hi. Just a quick one. I see you are the maintainer for openstack nova. I have noticed live migrations dont work for lvm-backed disks. I have wrote a simple patch which works for us ( https://gist.github.com/luv/2336b8852c023e62f6af ). I am thinking getting this merged could help few people. Should I just file a bug in launchpad and attach the patch? | 11:58 |
| sdague | luv: please submit via gerrit | 11:58 |
| ndipanoff | luv, https://wiki.openstack.org/wiki/How_To_Contribute | 11:59 |
| luv | cheers, will do | 11:59 |
| ndipanoff | lot's of text sorry | 11:59 |
| sdague | luv: https://wiki.openstack.org/wiki/How_To_Contribute#If_you.27re_a_developer | 11:59 |
| sdague | yeh it is a bunch of text | 11:59 |
| *** haomaiwang has joined #openstack-nova | 11:59 | |
| kashyap | luv: IIRC, you were about live migration the other day on #virt, OFTC? | 12:01 |
| ndipanoff | as for your patch - I am looking at it now, and I think that we should use the code in imagebackend.py instead of that bare image_create | 12:01 |
| kashyap | luv: If so, were you able to do p2p migration w/ no-shared storage with QEMU+SSH? | 12:02 |
| ndipanoff | luv, ^ something to think about while reading our contributing guidelines to not get bored :D | 12:02 |
| ndipanoff | luv, and tests of course | 12:02 |
| *** markvoelker has joined #openstack-nova | 12:03 | |
| *** Marga_ has quit IRC | 12:05 | |
| luv | kashyap: yup. libvirt tunnelled migration is buggy for me (ubuntu 14.04) so | 12:06 |
| kashyap | luv: Speaking of tunnelled, I've been digging on it for the past day or two - | 12:07 |
| kashyap | luv: It doesn't work at all in libvirt as of today, because -- | 12:07 |
| luv | kashyap: I set nova flags to tell libvirt to use direct qemu to qemu migration, and that works for me block_migration_flag = VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_NON_SHARED_INC | 12:07 |
| kashyap | luv: Tunnelled migration requires support for NBD in libvirt, which libvirt upstream dev confirmed it's not there yet. | 12:07 |
| luv | ndipanoff: uh ok | 12:08 |
| kashyap | luv: Yep, the above flags will work for live block migration. | 12:08 |
| *** markvoelker has quit IRC | 12:08 | |
| ndipanoff | luv, but since your patch fixes a bug - we can merge it as is and refactor later | 12:09 |
| ndipanoff | tests are a must though | 12:09 |
| luv | i am happy to dig deeper into the code myself. yup, I will have to have a look at the tests soon. | 12:10 |
| kashyap | luv: As we speak, I'm trying to test from git non-shared live migration w/ plain libvirt, but somehow, doPeer2PeerMigrate method on the source libvirt daemon fails to connect to dest libvirtd. | 12:10 |
| luv | would it make sense to start the review in gerrit with the current code and add the tests/refactor in the process ? | 12:11 |
| kashyap | luv: Yes, that'll allow other devs to review existing parts, while you iterate. | 12:12 |
| luv | kashyap: didnt run into that issue myself | 12:13 |
| ndipanoff | luv, sure | 12:13 |
| sdague | bauzas: so I'm confused that we're at 18 fails at the end of your patch series here - https://review.openstack.org/#/c/157185/ ? | 12:13 |
| sdague | because I thought that was going to take us down to 3 | 12:13 |
| kashyap | luv: I found the root cause (the src daemon cannot connect to the URI qemu+ssh), trying to play w/ some contribute attributes that can fix this. | 12:14 |
| kashyap | (s/contribute attributes/config attributes) | 12:16 |
| bauzas | sdague: we discussed that yesterday evening in the chan | 12:18 |
| bauzas | sdague: with mtreinish | 12:18 |
| bauzas | sdague: that's a new regression | 12:18 |
| openstackgerrit | Sylvain Bauza proposed openstack/nova: WIP: Add logging for unsuccessful schedules https://review.openstack.org/170472 | 12:18 |
| *** _amrith_ is now known as amrith | 12:18 | |
| sdague | bauzas: ok | 12:19 |
| *** erkules_ is now known as erkules | 12:19 | |
| *** erkules has joined #openstack-nova | 12:19 | |
| bauzas | sdague: Tempest is now checking the list of networks, but it fails because of a discrepancy between child and parent cell | 12:19 |
| sdague | ah, gotcha | 12:19 |
| openstackgerrit | Stephen Finucane proposed openstack/nova: libvirt: Add version check when pinning guest CPUs https://review.openstack.org/170190 | 12:20 |
| *** adam_g is now known as adam_g_out | 12:20 | |
| bauzas | sdague: I'll be off (Easter) until Tuesday, so melwitt proposed to help | 12:20 |
| sdague | ok | 12:20 |
| *** markvoelker has joined #openstack-nova | 12:21 | |
| *** fawadkhaliq has joined #openstack-nova | 12:23 | |
| *** sdake has joined #openstack-nova | 12:24 | |
| *** jistr_ has joined #openstack-nova | 12:27 | |
| *** lsmola_ has joined #openstack-nova | 12:27 | |
| *** jcoufal has joined #openstack-nova | 12:27 | |
| *** fawadkhaliq has quit IRC | 12:28 | |
| *** jcoufal_ has quit IRC | 12:28 | |
| *** amrith has left #openstack-nova | 12:28 | |
| *** jcoufal_ has joined #openstack-nova | 12:28 | |
| *** smccully has joined #openstack-nova | 12:30 | |
| *** jistr has quit IRC | 12:30 | |
| *** lsmola has quit IRC | 12:31 | |
| *** jistr has joined #openstack-nova | 12:31 | |
| *** jcoufal has quit IRC | 12:32 | |
| *** lsmola_ has quit IRC | 12:32 | |
| *** jistr_ has quit IRC | 12:32 | |
| *** signed8bit has joined #openstack-nova | 12:35 | |
| *** dave-mccowan has joined #openstack-nova | 12:36 | |
| *** lpetrut has quit IRC | 12:37 | |
| *** dkliban_afk is now known as dkliban | 12:38 | |
| *** mpaolino has joined #openstack-nova | 12:39 | |
| *** lsmola_ has joined #openstack-nova | 12:44 | |
| *** lpetrut has joined #openstack-nova | 12:45 | |
| *** signed8bit has quit IRC | 12:45 | |
| *** fawadkhaliq has joined #openstack-nova | 12:46 | |
| *** VW_ has joined #openstack-nova | 12:48 | |
| *** baoli has joined #openstack-nova | 12:49 | |
| *** oro has quit IRC | 12:49 | |
| *** signed8bit has joined #openstack-nova | 12:49 | |
| *** baoli has quit IRC | 12:53 | |
| *** baoli has joined #openstack-nova | 12:53 | |
| *** oro has joined #openstack-nova | 12:55 | |
| *** oro_ has joined #openstack-nova | 12:55 | |
| *** joefides has joined #openstack-nova | 12:56 | |
| *** dulek_ has quit IRC | 13:00 | |
| *** joefides has left #openstack-nova | 13:01 | |
| *** dims has quit IRC | 13:01 | |
| *** dims has joined #openstack-nova | 13:02 | |
| *** derekh has quit IRC | 13:06 | |
| *** alaski is now known as lascii | 13:07 | |
| *** rajesht has quit IRC | 13:09 | |
| *** ankit_ag has quit IRC | 13:14 | |
| *** suresh12 has joined #openstack-nova | 13:14 | |
| *** eliqiao has joined #openstack-nova | 13:17 | |
| *** annegentle has joined #openstack-nova | 13:18 | |
| *** eliqiao has quit IRC | 13:18 | |
| *** sdake_ has joined #openstack-nova | 13:19 | |
| *** sdake has quit IRC | 13:22 | |
| *** kaufer has joined #openstack-nova | 13:23 | |
| *** setuid has joined #openstack-nova | 13:23 | |
| *** zhangtralon has quit IRC | 13:24 | |
| luv | So i got stuck while following the code contribution docs/process. Gotta wait for my employer to sign Corporate Contributor License Agreement ... oh well, 5 lines of code. But, yeah, I understand it's needed. | 13:25 |
| *** mriedem_away is now known as mriedem | 13:26 | |
| *** sdake has joined #openstack-nova | 13:29 | |
| *** vladikr has joined #openstack-nova | 13:30 | |
| *** dboik has quit IRC | 13:32 | |
| *** sdake_ has quit IRC | 13:33 | |
| *** IanGovett has quit IRC | 13:35 | |
| *** openstackgerrit has quit IRC | 13:36 | |
| *** openstackgerrit has joined #openstack-nova | 13:36 | |
| *** nihilifer has quit IRC | 13:37 | |
| *** nihilifer has joined #openstack-nova | 13:38 | |
| *** annashen has joined #openstack-nova | 13:38 | |
| *** edleafe is now known as figleaf | 13:39 | |
| sdague | luv: yeh, the CLA is a giant pain. :( | 13:39 |
| *** jecarey has joined #openstack-nova | 13:39 | |
| *** IanGovett has joined #openstack-nova | 13:40 | |
| *** rushiagr is now known as rushiagr_away | 13:41 | |
| *** ivasev has joined #openstack-nova | 13:41 | |
| *** garyk has joined #openstack-nova | 13:42 | |
| *** IanGovett has quit IRC | 13:43 | |
| *** annashen has quit IRC | 13:43 | |
| *** apuimedo has joined #openstack-nova | 13:46 | |
| *** lucas-hungry is now known as lucasagomes | 13:53 | |
| *** mpaolino has quit IRC | 13:54 | |
| mriedem | dansmith: question came up about the need for this on stable/juno https://review.openstack.org/#/c/151775/ | 13:55 |
| mriedem | dansmith: they are prepping for the final juno release before stable/kilo so were asking about a few of these upgrade related patches | 13:55 |
| *** dboik has joined #openstack-nova | 13:58 | |
| *** ildikov_ has quit IRC | 14:00 | |
| *** adrian_otto has joined #openstack-nova | 14:01 | |
| *** ajayaa has quit IRC | 14:03 | |
| *** apuimedo has quit IRC | 14:05 | |
| *** irenab has quit IRC | 14:07 | |
| figleaf | sdague: I had a code-related question about https://review.openstack.org/#/c/160195 | 14:07 |
| figleaf | sdague: not a procedural one :) | 14:07 |
| sdague | figleaf: sequence is important | 14:08 |
| figleaf | sdague: so it will always return the same order in the list comp? | 14:09 |
| sdague | index order determines how the btrees are built, do putting them in a set would actually compare 2 things that are not actually equivalent | 14:09 |
| sdague | afaik it's iterating the first list so it should be stable order | 14:09 |
| *** exploreshaifali has joined #openstack-nova | 14:09 | |
| figleaf | sdague: ok, thanks | 14:10 |
| sdague | otherwise I think a bunch of things would break down | 14:10 |
| figleaf | sdague: that's what looked fragile to me, without knowing the internals of sqla | 14:10 |
| sdague | if it was a dict comprehension, order is all over the board | 14:10 |
| figleaf | well, yeah :) | 14:10 |
| sdague | figleaf: yeh, it's not even sqla here really, that's just the fact that at a db level the index column order is really really important | 14:11 |
| figleaf | sdague: ok, understood. Thanks | 14:11 |
| figleaf | sdague: I was thinking it might be like table.indexes, where the order isn't so important | 14:12 |
| *** kaufer has quit IRC | 14:13 | |
| *** zul has quit IRC | 14:13 | |
| sdague | figleaf: ah, yeh, right. in those cases, the set would be more appropriate. Though we're just walking all the indexes here in this case looking for the one we're about to add. | 14:13 |
| *** zul has joined #openstack-nova | 14:14 | |
| *** apuimedo has joined #openstack-nova | 14:14 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 14:17 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 14:17 |
| dansmith | mriedem: I'm supposed to be out today | 14:18 |
| dansmith | mriedem: but I left some words in the review for you/adam_g/ttx | 14:18 |
| *** rushil has joined #openstack-nova | 14:19 | |
| mriedem | dansmith: ok | 14:19 |
| mriedem | danka | 14:19 |
| sdague | http://www.quickmeme.com/img/13/13aef6638f92131cd092ac85d2260c0439447e7e9674ca3b4a286e5a4b36fd17.jpg <= dansmith | 14:23 |
| sdague | mriedem / dansmith - so https://review.openstack.org/#/c/160195/3 - is prep to backport that change to juno | 14:23 |
| dansmith | sdague: heh | 14:23 |
| sdague | it does massively impact the delete server path due to quota calculation | 14:24 |
| sdague | if we are going to land it, we should do so before the rc | 14:24 |
| sdague | so we're not trying to doubly backport things | 14:24 |
| *** annegentle has quit IRC | 14:25 | |
| *** armax has joined #openstack-nova | 14:25 | |
| sdague | I actually believe this is one of the bugs that was causing gate sadness with hpcloud the other day | 14:25 |
| mriedem | well let me try to grok the change here | 14:26 |
| mriedem | before you go all dante on me with roof hockey | 14:26 |
| mriedem | and bj's in the parking lot | 14:26 |
| dansmith | sdague: you're proposing that we merge that into master now? | 14:28 |
| mriedem | sdague: there should be a new bug for that | 14:28 |
| mriedem | sdague: so hp public cloud already had this index and when they upgraded they blew up for having an out of tree index? | 14:28 |
| *** rushiagr_away is now known as rushiagr | 14:28 | |
| *** adrian_otto has quit IRC | 14:30 | |
| *** adrian_otto has joined #openstack-nova | 14:30 | |
| *** ildikov_ has joined #openstack-nova | 14:32 | |
| openstackgerrit | Jim Rollenhagen proposed openstack/nova: Respect CONF.scheduler_use_baremetal_filters https://review.openstack.org/170299 | 14:32 |
| *** links has quit IRC | 14:33 | |
| *** suresh12 has quit IRC | 14:33 | |
| sdague | mriedem: no, they don't have that index | 14:33 |
| *** iamjarvo has joined #openstack-nova | 14:33 | |
| sdague | hence performance face plant on delete | 14:33 |
| openstackgerrit | Vincent Untz proposed openstack/nova: Add 'docker' to the list of known hypervisor types https://review.openstack.org/170517 | 14:33 |
| sdague | dansmith: I am | 14:33 |
| *** iamjarvo has quit IRC | 14:33 | |
| mriedem | sdague: oh hp public cloud just wasn't at that migration yet | 14:34 |
| sdague | it's actually pretty old | 14:34 |
| sdague | so yeh | 14:34 |
| mriedem | it being hp public cloud | 14:34 |
| *** iamjarvo has joined #openstack-nova | 14:34 | |
| *** adrian_otto has quit IRC | 14:34 | |
| *** pkarikh has joined #openstack-nova | 14:34 | |
| sdague | but given that, it probably will help a bunch of folks to get that in a future juno stable | 14:34 |
| *** subscope has quit IRC | 14:35 | |
| mriedem | oh i see, so we have to add this to master so that if someone gets the backport in stable/juno release, when they upgrade to 274 they don't blow up | 14:36 |
| sdague | mriedem: yes | 14:36 |
| sdague | also, sorting the column names is wrong | 14:36 |
| *** chachajee has quit IRC | 14:36 | |
| sdague | index(deleted, project_id) != index(project_id, deleted) | 14:37 |
| sdague | they will impact the query performance in very different ways | 14:37 |
| dansmith | I think we need a lot more in the commit message here | 14:37 |
| dansmith | I'm still not sure I get it | 14:37 |
| mriedem | dansmith: they just want to backport this fix to stable | 14:37 |
| sdague | dansmith: it's the idempotent version of the existing migration | 14:37 |
| mriedem | well, they want to backport the index change migration to juno | 14:38 |
| dansmith | so there is something >274 that does this? | 14:38 |
| sdague | no, the opposite | 14:38 |
| sdague | there is a desire to add this index in juno | 14:39 |
| *** openstackgerrit has quit IRC | 14:39 | |
| *** vokhrimenko has joined #openstack-nova | 14:39 | |
| dansmith | to backport 274 to juno? | 14:39 |
| sdague | because it has a 2 order of magnitude speed up | 14:39 |
| sdague | yes | 14:39 |
| *** openstackgerrit has joined #openstack-nova | 14:39 | |
| dansmith | what I'm asking is, | 14:39 |
| sdague | it wouldn't be 274, it would be one of the blank spots | 14:39 |
| mriedem | 255 | 14:40 |
| dansmith | people who already have rolled past 274, when do they get it? | 14:40 |
| mriedem | they don't | 14:40 |
| mriedem | they are already good | 14:40 |
| mriedem | this is for people on 254 | 14:40 |
| dansmith | oh, sorry, I see | 14:40 |
| dansmith | this isn't fixing 274 for perf, it's making it idempotent? | 14:40 |
| mriedem | this gets backported to 255 in stable/juno | 14:40 |
| mriedem | i get juno release and upgrade | 14:40 |
| mriedem | yes | 14:40 |
| mriedem | so when i upgrade to kilo and hit 274 i don't splode my load | 14:40 |
| dansmith | ffs, THAT is what we need to say in the commit message | 14:40 |
| sdague | dansmith: yes, exactly | 14:40 |
| mriedem | yes | 14:40 |
| mriedem | -1 on the commit message | 14:41 |
| mriedem | sdague: wanna update the commit message and then i'm +2 | 14:41 |
| sdague | dansmith: sure, let me fix the commit message | 14:41 |
| dansmith | after that, I have to get busy on my day of holy rest | 14:42 |
| *** jaypipes has joined #openstack-nova | 14:42 | |
| mriedem | sdague: and i can push this through | 14:42 |
| mriedem | dansmith: get back to your sweatpants | 14:42 |
| dansmith | I am wearing my "holy jeans" | 14:43 |
| dansmith | er, whole-y | 14:43 |
| *** ZZelle has quit IRC | 14:43 | |
| *** ZZelle has joined #openstack-nova | 14:43 | |
| vokhrimenko | Hi all! maybe who know --- How I can get server list, send list of id ? | 14:45 |
| mriedem | vokhrimenko: docs.openstack.org | 14:45 |
| openstackgerrit | Sean Dague proposed openstack/nova: Make migration 274 idempotent so it can be backported https://review.openstack.org/160195 | 14:46 |
| sdague | mriedem: how about that? | 14:46 |
| mriedem | reading | 14:46 |
| vokhrimenko | There is no answer to the question | 14:47 |
| mriedem | sdague: +2 | 14:47 |
| mriedem | send'er to the gate | 14:47 |
| mriedem | nvm, i got it | 14:47 |
| *** annegentle has joined #openstack-nova | 14:48 | |
| mriedem | vokhrimenko: you're asking how to use the rest API to list servers? | 14:48 |
| *** armax has quit IRC | 14:49 | |
| *** eezhova has joined #openstack-nova | 14:49 | |
| *** pixelb has quit IRC | 14:49 | |
| vokhrimenko | I need possibility send list of servers instead one id (https://github.com/openstack/python-novaclient/blob/master/novaclient/v2/servers.py#L533) | 14:49 |
| *** fawadkhaliq has quit IRC | 14:49 | |
| *** Marga_ has joined #openstack-nova | 14:49 | |
| ndipanoff | mriedem, easy layup https://review.openstack.org/#/c/159106/ | 14:50 |
| *** annashen has joined #openstack-nova | 14:50 | |
| *** hanzhang has quit IRC | 14:51 | |
| mriedem | ndipanoff: i was never good at basketball | 14:51 |
| mriedem | ndipanoff: ha, that's your definition of easy? | 14:51 |
| *** hanzhang has joined #openstack-nova | 14:51 | |
| ndipanoff | of course it is :) | 14:51 |
| *** claudiub has quit IRC | 14:52 | |
| vokhrimenko | mriedem: No, I need possibility send list of servers instead one id (something like this https://github.com/openstack/python-novaclient/blob/master/novaclient/v2/servers.py#L533) | 14:54 |
| *** emagana has joined #openstack-nova | 14:55 | |
| sdague | mriedem: oh, this is a fun bug - https://bugs.launchpad.net/nova/+bug/1439855 | 14:55 |
| openstack | Launchpad bug 1439855 in OpenStack Compute (nova) "encrypted iSCSI volume fails to attach, name too long" [Undecided,New] | 14:55 |
| *** annashen has quit IRC | 14:55 | |
| mriedem | vokhrimenko: you can use filters to filter the server list request | 14:57 |
| mriedem | sdague: that is fun | 14:57 |
| mriedem | but seems like an easy fix | 14:57 |
| sdague | anyone know what max cryptsetup name length is? | 14:57 |
| openstackgerrit | Jim Rollenhagen proposed openstack/nova: Respect CONF.scheduler_use_baremetal_filters https://review.openstack.org/170299 | 14:59 |
| mtreinish | sdague, mriedem: ask thingee about that bug he was hitting something similar on his company's CI IIRC | 14:59 |
| mtreinish | I think it was a bug in brick and/or the cinder driver on passing in the wrong value | 15:00 |
| sdague | that string is 129 characters | 15:00 |
| *** annashen has joined #openstack-nova | 15:00 | |
| *** Longgeek has quit IRC | 15:01 | |
| mtreinish | sdague: https://bugs.launchpad.net/nova/+bug/1432490 | 15:02 |
| openstack | Launchpad bug 1432490 in tempest "TestEncryptedCinderVolumes cryptsetup name is too long" [Undecided,Invalid] | 15:02 |
| *** jaypipes is now known as leakypipes | 15:02 | |
| *** emagana has quit IRC | 15:03 | |
| mriedem | mtreinish: that's marked invalid | 15:03 |
| mriedem | but also sounds like thingee was maybe going to make some change? | 15:03 |
| *** emagana has joined #openstack-nova | 15:03 | |
| * mriedem goes to -cinder | 15:03 | |
| *** sdake_ has joined #openstack-nova | 15:03 | |
| sdague | so it seems like we should at least bail nicely in nova if the name is over length | 15:03 |
| mriedem | but alas he's not raound | 15:03 |
| sdague | I'd just like to know the length name | 15:03 |
| mriedem | yeah google is failing me | 15:04 |
| sdague | I'll ML it | 15:04 |
| *** otter768 has joined #openstack-nova | 15:04 | |
| *** unicell has joined #openstack-nova | 15:04 | |
| vokhrimenko | mriedem: I found this method https://github.com/openstack/nova/blob/master/nova/api/openstack/compute/servers.py#L1129 but I didn't see key for server.id | 15:04 |
| *** joefides_ has joined #openstack-nova | 15:04 | |
| mriedem | vokhrimenko: yeah, because index (list) doesn't filter on id | 15:04 |
| vokhrimenko | mriedem: Maybe you will say me -- where I can see name of key ? | 15:04 |
| mriedem | that's what show is for | 15:04 |
| *** nelsnelson has joined #openstack-nova | 15:05 | |
| mriedem | vokhrimenko: if you need to get details for a list of servers, you can iterate over the id's in your application/script and call show on each | 15:05 |
| *** pkoniszewski has joined #openstack-nova | 15:05 | |
| *** annashen has quit IRC | 15:05 | |
| *** joefides has joined #openstack-nova | 15:05 | |
| *** unicell1 has quit IRC | 15:06 | |
| *** claudiub has joined #openstack-nova | 15:06 | |
| *** sdake has quit IRC | 15:07 | |
| *** thedodd has joined #openstack-nova | 15:07 | |
| *** EmilienM is now known as EmilienM|afk | 15:07 | |
| *** exploreshaifali has quit IRC | 15:08 | |
| *** Marga_ has quit IRC | 15:08 | |
| mtreinish | sdague: I thought it was the iqn length that was at issue, not cryptsetup | 15:08 |
| *** joefides_ has quit IRC | 15:08 | |
| *** otter768 has quit IRC | 15:08 | |
| sdague | it's failing in the cryptsetup call | 15:08 |
| sdague | 2015-03-27 18:06:48.928 29082 TRACE nova.virt.libvirt.driver [instance: ddeda0aa-1457-41d2-82e9-9a4ae888125a] Command: sudo nova-rootwrap /etc/nova/rootwrap.conf cryptsetup luksOpen --key-file=- /dev/sdb ip-10.52.1.17:3260-iscsi-iqn.2003-10.com.lefthandnetworks:ci-vsa-12-725:159021:volume-e74c95eb-e69b-4cf3-ac37-74e4ef38f796-lun-0 | 15:09 |
| sdague | 2015-03-27 18:06:48.928 29082 TRACE nova.virt.libvirt.driver [instance: ddeda0aa-1457-41d2-82e9-9a4ae888125a] Exit code: 1 | 15:09 |
| sdague | 2015-03-27 18:06:48.928 29082 TRACE nova.virt.libvirt.driver [instance: ddeda0aa-1457-41d2-82e9-9a4ae888125a] Stdout: u'' | 15:09 |
| sdague | 2015-03-27 18:06:48.928 29082 TRACE nova.virt.libvirt.driver [instance: ddeda0aa-1457-41d2-82e9-9a4ae888125a] Stderr: u'Name "ip-10.52.1.17:3260-iscsi-iqn.2003-10.com.lefthandnetworks:ci-vsa-12-725:159021:volume-e74c95eb-e69b-4cf3-ac37-74e4ef38f796-lun-0" too long.\n' | 15:09 |
| sdague | though, I wonder if that's coming out of device mapper | 15:11 |
| vokhrimenko | mriedem: Thanks for the help! | 15:14 |
| mriedem | sdague: i can't find any docs on what the name length restriction is, which makes me wonder if it's kernel specific | 15:15 |
| sdague | yeh | 15:15 |
| *** claudiub has quit IRC | 15:15 | |
| mriedem | sdague: so if we made a change in nova, we might have to just parse stderr | 15:15 |
| mriedem | the key length sounds like it's definitely kernel specific | 15:16 |
| mriedem | in /proc/crypt | 15:16 |
| mriedem | */proc/crypto | 15:16 |
| *** annegentle has quit IRC | 15:17 | |
| *** annegentle has joined #openstack-nova | 15:17 | |
| *** nelsnelson has quit IRC | 15:17 | |
| sdague | it's not keylength that's the problem | 15:18 |
| *** nelsnelson has joined #openstack-nova | 15:18 | |
| sdague | dammit, this is actually a place where dansmith would be helpful, as he probably knows this answer | 15:20 |
| *** salv-orlando has quit IRC | 15:20 | |
| dansmith | max length of a dm device name? | 15:20 |
| *** armax has joined #openstack-nova | 15:20 | |
| sdague | dansmith: yep | 15:21 |
| dansmith | sdague: and "actually a piece" makes it sound like I'm not normally helpful :/ | 15:21 |
| sdague | dansmith: heh, sorry | 15:21 |
| dansmith | I would expect it to be 255 as I think the path elements are all 255 each | 15:21 |
| *** exploreshaifali has joined #openstack-nova | 15:21 | |
| sdague | so 129 values are failnig | 15:21 |
| sdague | but this is for the X bit of /dev/mapper/X | 15:21 |
| dansmith | 129 is what, just the part after mapper/ ? | 15:21 |
| dansmith | yeah, that' weird | 15:21 |
| sdague | yeh | 15:21 |
| vokhrimenko | mriedem: getting the details of each server in a cycle appears to be suboptimal in case there are many instance_id-s. It would be much more efficient to make a batch request. Is such functionality already exists/plannend in Nova? | 15:21 |
| sdague | but bugs have 129 length names | 15:22 |
| dansmith | let me try something | 15:22 |
| sdague | s/but/both/ | 15:22 |
| *** chachaji has joined #openstack-nova | 15:22 | |
| sdague | dansmith: sorry about before, mostly, I think you might be the most qualified person in all of openstack to answer this question based on your previous experience | 15:23 |
| mriedem | vokhrimenko: i don't think so, you'd have to put up a spec for liberty | 15:23 |
| *** jcoufal_ has quit IRC | 15:23 | |
| openstackgerrit | Jim Rollenhagen proposed openstack/nova: Respect CONF.scheduler_use_baremetal_filters https://review.openstack.org/170299 | 15:23 |
| *** zzzeek has joined #openstack-nova | 15:23 | |
| dansmith | sdague: yeah, fails at 128 | 15:25 |
| sdague | so 127 is the limit? | 15:26 |
| dansmith | sdague: http://pastebin.com/pCpTc9DK | 15:26 |
| dansmith | apparently | 15:26 |
| sdague | ah, cool | 15:26 |
| *** links has joined #openstack-nova | 15:26 | |
| *** pixelb has joined #openstack-nova | 15:27 | |
| *** vladikr has quit IRC | 15:28 | |
| *** matrohon has quit IRC | 15:31 | |
| *** Marga_ has joined #openstack-nova | 15:31 | |
| *** marun has joined #openstack-nova | 15:33 | |
| *** amotoki has joined #openstack-nova | 15:35 | |
| *** tonytan4ever has joined #openstack-nova | 15:36 | |
| openstackgerrit | Petrut Lucian proposed openstack/nova: Add 'suspended' lifecycle event https://review.openstack.org/170433 | 15:38 |
| *** EmilienM|afk is now known as EmilienM | 15:39 | |
| openstackgerrit | Petrut Lucian proposed openstack/nova: Hyper-V: restart serial console workers after instance power change https://review.openstack.org/163080 | 15:39 |
| *** pixelb has quit IRC | 15:39 | |
| *** rushiagr is now known as rushiagr_away | 15:40 | |
| *** suresh12 has joined #openstack-nova | 15:44 | |
| *** packet has joined #openstack-nova | 15:44 | |
| *** dims is now known as dimsum__ | 15:44 | |
| leakypipes | ndipanoff: https://review.openstack.org/#/c/159106/ +W'd | 15:47 |
| *** suresh12 has quit IRC | 15:48 | |
| *** arnaud___ has joined #openstack-nova | 15:50 | |
| *** penick has joined #openstack-nova | 15:50 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 15:51 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 15:51 |
| *** claudiub has joined #openstack-nova | 15:51 | |
| *** rushiagr_away is now known as rushiagr | 15:51 | |
| sahid | leakypipes: +1! :) | 15:51 |
| leakypipes | sahid: feel free to push a patch for those little nits and I'll review today. | 15:52 |
| ndipanoff | leakypipes, many thanks! | 15:52 |
| leakypipes | no problemo. | 15:52 |
| *** jistr has quit IRC | 15:53 | |
| *** jistr has joined #openstack-nova | 15:53 | |
| alex_xu | ndipanoff: Can I add you as reviewer in https://review.openstack.org/170396 and //review.openstack.org/170397? hope I can get some suggestion from youwhen you have time. Thanks in advance! | 15:55 |
| ndipanoff | alex_xu, sure - I will look at it | 15:56 |
| alex_xu | ndipanoff: thanks a lot | 15:56 |
| *** unicell1 has joined #openstack-nova | 15:59 | |
| *** adrian_otto has joined #openstack-nova | 15:59 | |
| *** unicell has quit IRC | 15:59 | |
| mriedem | busted! https://review.openstack.org/#/c/170433/ | 16:02 |
| *** hdd has joined #openstack-nova | 16:04 | |
| *** penick has quit IRC | 16:04 | |
| *** annashen has joined #openstack-nova | 16:05 | |
| *** annashen has quit IRC | 16:06 | |
| *** annashen has joined #openstack-nova | 16:06 | |
| claudiub | mriedem: not busted, check reply. :D | 16:07 |
| *** annegentle has quit IRC | 16:07 | |
| figleaf | mriedem: did you see the next patch in the series? | 16:08 |
| *** atuvenie has quit IRC | 16:08 | |
| mriedem | i refuse to look | 16:09 |
| claudiub | mriedem: you don't have to look when you press the +2 button. :D | 16:09 |
| lpetrut | mriedem: I agree w/ claudiub :) | 16:09 |
| mriedem | heh, at least i didn't -2 | 16:09 |
| lpetrut | mriedem: well, thanks, I guess :) | 16:10 |
| claudiub | mriedem: I'm wondering what would happen if you press both -2 and +A. :D | 16:11 |
| figleaf | mriedem's a generous guy :) | 16:11 |
| *** iamjarvo has quit IRC | 16:11 | |
| mriedem | fine +2 then | 16:14 |
| mriedem | although it is a string freeze thing maybe | 16:14 |
| mriedem | given _("Suspended") | 16:14 |
| *** exploreshaifali has quit IRC | 16:15 | |
| mriedem | so -1 again :) | 16:15 |
| mriedem | sorry | 16:15 |
| mriedem | it's not an rc blocker for kilo | 16:15 |
| mriedem | and has string freeze changes | 16:15 |
| mriedem | besides, given the change in the virt driver to use events now, that's safer to land when liberty opens up | 16:16 |
| *** vilobhmm1 has joined #openstack-nova | 16:16 | |
| figleaf | mriedem: yeah, I didn't see this as critical for Kilo | 16:16 |
| claudiub | what if it is just "Suspended" instead of _("Suspended")? | 16:17 |
| claudiub | +todo | 16:17 |
| mriedem | claudiub: what's the point? | 16:17 |
| mriedem | the thing that needs it won't be in liberty | 16:17 |
| mriedem | *kilo | 16:17 |
| *** jistr has quit IRC | 16:17 | |
| mriedem | this isn't kilo-rc-potential imo | 16:18 |
| mriedem | it's also marked as low priority in the bug report | 16:18 |
| figleaf | claudiub: the dependent patch has CONF opts, strings, etc. | 16:18 |
| mriedem | yeah man, this is not a trivial change | 16:18 |
| mriedem | best to hold off until liberty | 16:18 |
| claudiub | ok then, got it. :) | 16:18 |
| mriedem | then i'm +2 so hard on the event change | 16:19 |
| lpetrut | well, I guess this can be backported afterwards, right? since it fixes a bug | 16:19 |
| mriedem | lpetrut: not if it has config options | 16:19 |
| mriedem | this is really borderline feature | 16:19 |
| lpetrut | I see, makes sense | 16:19 |
| *** pczesno has quit IRC | 16:20 | |
| lpetrut | well, anyway, thanks guys for taking a look! | 16:20 |
| *** arnaud___ has quit IRC | 16:20 | |
| *** devlaps has joined #openstack-nova | 16:20 | |
| *** oro has quit IRC | 16:20 | |
| *** oro_ has quit IRC | 16:20 | |
| *** thedodd has quit IRC | 16:21 | |
| *** oro has joined #openstack-nova | 16:22 | |
| *** joefides has quit IRC | 16:25 | |
| *** joefides has joined #openstack-nova | 16:25 | |
| *** pkarikh has left #openstack-nova | 16:26 | |
| *** thedodd has joined #openstack-nova | 16:27 | |
| ndipanoff | leakypipes, if you're up for an easy one https://review.openstack.org/#/c/170088/ | 16:36 |
| *** atuvenie has joined #openstack-nova | 16:37 | |
| *** tjones1 has joined #openstack-nova | 16:38 | |
| *** Mike_D_laptop has joined #openstack-nova | 16:40 | |
| *** Marga_ has quit IRC | 16:40 | |
| *** Marga_ has joined #openstack-nova | 16:41 | |
| *** dsanders1 has joined #openstack-nova | 16:42 | |
| *** claudiub has quit IRC | 16:44 | |
| *** annashen has quit IRC | 16:48 | |
| *** lpetrut has left #openstack-nova | 16:50 | |
| *** atuvenie has quit IRC | 16:52 | |
| *** sdake_ has quit IRC | 16:52 | |
| *** hdd has quit IRC | 16:52 | |
| *** sdake has joined #openstack-nova | 16:53 | |
| *** hdd has joined #openstack-nova | 16:53 | |
| *** ferest has quit IRC | 16:54 | |
| *** patrickeast has joined #openstack-nova | 16:54 | |
| *** lucasagomes is now known as lucas-dinner | 16:54 | |
| *** annashen has joined #openstack-nova | 16:56 | |
| *** unicell1 has quit IRC | 16:56 | |
| *** pkoniszewski has quit IRC | 16:57 | |
| *** jogo is now known as flashgordon | 16:57 | |
| *** annegentle has joined #openstack-nova | 16:58 | |
| *** yamahata has joined #openstack-nova | 16:58 | |
| flashgordon | mtreinish: re: https://bugs.launchpad.net/tempest/+bug/1436314 | 17:00 |
| openstack | Launchpad bug 1436314 in tempest "Option to boot VM only from volume is not available" [Medium,New] - Assigned to Soumit (soumit-mishra) | 17:00 |
| flashgordon | ndipanoff: ^, | 17:01 |
| *** jecarey has quit IRC | 17:01 | |
| flashgordon | I am interested to hear what you have to say about the idea of only exposing boot from volume | 17:01 |
| ndipanoff | flashgordon, I am not sure I get what they want with that bug | 17:02 |
| ndipanoff | I mean - just run the tests that only do boot from volume | 17:02 |
| *** harlowja_away is now known as harlowja | 17:02 | |
| flashgordon | ndipanoff: so they are making an argument that it makes sense to only expose boot from volume | 17:02 |
| ndipanoff | in Nova? | 17:03 |
| flashgordon | ndipanoff: ignore the tempest impact for a moment, trying to figure out of the idea of only exposing boot from volume (versus boot from image) makes sense | 17:03 |
| *** annegentle has quit IRC | 17:04 | |
| ndipanoff | if it does we might wanna make it a bit more smoother that that config option (since that config will disallow swap and epehemerals too) | 17:04 |
| *** annegentle has joined #openstack-nova | 17:04 | |
| flashgordon | ndipanoff: right | 17:05 |
| *** otter768 has joined #openstack-nova | 17:05 | |
| *** Marga_ has quit IRC | 17:05 | |
| flashgordon | ndipanoff: it sounds like from reading his reply that this related to making it easier to provide better uptime and make migrations easier | 17:05 |
| *** tjones1 has quit IRC | 17:05 | |
| ndipanoff | ah there;s a reply - let me see | 17:06 |
| flashgordon | ndipanoff: FWIW I have a pending tempest patch to test boot from volume based live migration | 17:07 |
| *** romainh has left #openstack-nova | 17:07 | |
| leakypipes | ndipanoff: done | 17:07 |
| *** tonytan4ever has quit IRC | 17:07 | |
| ndipanoff | leakypipes, thanks | 17:07 |
| openstackgerrit | Vincent Untz proposed openstack/nova: Add 'docker' to the list of known hypervisor types https://review.openstack.org/170517 | 17:09 |
| ndipanoff | flashgordon, sounds good tho I had no idea we were testing live mig | 17:09 |
| *** otter768 has quit IRC | 17:10 | |
| flashgordon | ndipanoff: the aiopcpu job is | 17:10 |
| flashgordon | brand new | 17:10 |
| flashgordon | multi node test | 17:10 |
| ndipanoff | is it running on commits? | 17:11 |
| *** sahid has quit IRC | 17:11 | |
| flashgordon | ndipanoff: on nova, still debugging a few things in it though | 17:11 |
| ndipanoff | flashgordon, awesome news still | 17:12 |
| ndipanoff | the clip is back? | 17:12 |
| flashgordon | ndipanoff: yeah, looks like its doing a good job of shaking out a few bugs | 17:12 |
| ndipanoff | hmm | 17:12 |
| ndipanoff | flashgordon, orly | 17:12 |
| ndipanoff | (though I am not at all surprised | 17:12 |
| ndipanoff | ) | 17:12 |
| ndipanoff | have an example or 2? | 17:13 |
| flashgordon | why yes | 17:16 |
| flashgordon | https://bugs.launchpad.net/nova/+bug/1438803 | 17:16 |
| openstack | Launchpad bug 1438803 in OpenStack Compute (nova) "libvirt error libvirtError: Requested operation is not valid: nwfilter is in use hit in _post_live_migration" [High,In progress] - Assigned to Matt Riedemann (mriedem) | 17:16 |
| flashgordon | https://bugs.launchpad.net/nova/+bug/1439355 | 17:16 |
| openstack | Launchpad bug 1439355 in OpenStack Compute (nova) "tempest.scenario.test_shelve_instance.TestShelveInstance.test_shelve_instance periodically failing on aiopcpu job" [High,Confirmed] | 17:16 |
| flashgordon | ndipanoff: the failure rate of aiopcpu is still pretty high http://jogo.github.io/gate/aiopcpu | 17:17 |
| flashgordon | although that graph is a bit misleading since tempest-dsvm-full runs on a lot more then nova | 17:17 |
| flashgordon | but aiopcpu is nova only for now | 17:17 |
| ndipanoff | flashgordon, I responded to that bug btw - I think setting root_gb to 0 will do what they want in Nova | 17:18 |
| ndipanoff | aiopcpu stands fro all in one plus compute I assume? | 17:18 |
| flashgordon | thanks | 17:18 |
| flashgordon | ndipanoff: yeah I think so, its a pretty terrible name | 17:18 |
| flashgordon | so suggestions welcome | 17:19 |
| *** annashen has quit IRC | 17:20 | |
| *** leakypipes has quit IRC | 17:21 | |
| *** lpetrut has joined #openstack-nova | 17:21 | |
| *** devlaps has quit IRC | 17:21 | |
| *** devlaps has joined #openstack-nova | 17:22 | |
| *** exploreshaifali has joined #openstack-nova | 17:22 | |
| *** dsanders1 has quit IRC | 17:24 | |
| *** dsanders1 has joined #openstack-nova | 17:24 | |
| mtreinish | flashgordon: yeah that was my issue just setting that config option isn't really friendly from an interop perspective | 17:25 |
| mtreinish | I'm fine with having that be a backend config choice but it doesn't make much sense to just abruptly fail with a 400 on the api | 17:25 |
| flashgordon | mtreinish: right, just want to make sure if we think this is a reasonable requirement that we do it in a interop friendly way | 17:27 |
| *** Nikolay_St has quit IRC | 17:27 | |
| *** links has quit IRC | 17:27 | |
| mtreinish | flashgordon: sure, whether it's reasonable or not I'm not sure. I can see the use case for it I guess it's just not something I thought anyone would care about | 17:27 |
| *** penick has joined #openstack-nova | 17:28 | |
| ndipanoff | mtreinish, flashgordon I commented on the bug - it seems to me disallowing boot form image should go into flavors? | 17:28 |
| *** david-lyle has quit IRC | 17:29 | |
| *** dsanders1 has quit IRC | 17:29 | |
| *** dsanders1 has joined #openstack-nova | 17:30 | |
| *** iamjarvo has joined #openstack-nova | 17:30 | |
| *** melwitt has joined #openstack-nova | 17:30 | |
| *** yamahata has quit IRC | 17:31 | |
| *** yamahata has joined #openstack-nova | 17:31 | |
| *** lpetrut has quit IRC | 17:32 | |
| mtreinish | ndipanoff: maybe I'm not sure though. I was strictly thinking about it from the use case of writing code agains 2 clouds how is a user supposed to determine whether it's a boot from volume only cloud or not | 17:32 |
| *** ajayaa has joined #openstack-nova | 17:33 | |
| mtreinish | ndipanoff: my thought was that if there is no root disk allowed why not have nova tell cinder to convert the image into a volume and just do it seemlessly | 17:33 |
| * mtreinish disappears to find food | 17:34 | |
| ndipanoff | mtreinish, well the flavor approach kind of takes care of code against 2 clouds - but yeah seamlessly doing it can be a nice feature | 17:34 |
| *** lpetrut has joined #openstack-nova | 17:35 | |
| figleaf | Since it's a quiet day, and cores want to review https://review.openstack.org/#/c/165849/ ? | 17:35 |
| figleaf | s/and/any | 17:35 |
| *** ajayaa has quit IRC | 17:41 | |
| *** hdd has quit IRC | 17:45 | |
| *** hdd has joined #openstack-nova | 17:46 | |
| *** Marga_ has joined #openstack-nova | 17:47 | |
| mriedem | figleaf: looking | 17:51 |
| mriedem | figleaf: so expected_attrs=[] since we don't care about anything on the instance but it's uuid | 17:52 |
| figleaf | mriedem: yep | 17:52 |
| *** ferest has joined #openstack-nova | 17:55 | |
| mriedem | which is to avoid the default joins here http://git.openstack.org/cgit/openstack/nova/tree/nova/db/sqlalchemy/api.py#n2359 | 17:55 |
| mriedem | got it | 17:55 |
| figleaf | mriedem: yeah. johnthetubaguy caught that | 17:55 |
| mriedem | +W | 17:56 |
| *** annegentle has quit IRC | 17:56 | |
| *** achanda has joined #openstack-nova | 17:57 | |
| *** tonytan4ever has joined #openstack-nova | 17:58 | |
| figleaf | thx | 17:58 |
| mriedem | garyk: this is probably waiting for your +1 at this point https://review.openstack.org/#/c/135182/ | 17:59 |
| *** ferest has quit IRC | 17:59 | |
| openstackgerrit | Joe Gordon proposed openstack/nova: Stacktrace on live migration monitoring https://review.openstack.org/169429 | 18:01 |
| mriedem | flashgordon: that still changes the translated message which breaks string freeze | 18:02 |
| *** ajayaa has joined #openstack-nova | 18:04 | |
| flashgordon | mriedem: doh | 18:05 |
| *** VW_ has quit IRC | 18:05 | |
| *** eglynn has quit IRC | 18:06 | |
| *** ajayaa has quit IRC | 18:06 | |
| flashgordon | mriedem: one more time | 18:07 |
| mriedem | daft punk? | 18:07 |
| openstackgerrit | Joe Gordon proposed openstack/nova: Stacktrace on live migration monitoring https://review.openstack.org/169429 | 18:07 |
| *** baoli has quit IRC | 18:08 | |
| mriedem | flashgordon: you're going to hate me :) | 18:09 |
| *** annashen has joined #openstack-nova | 18:09 | |
| *** armax_ has joined #openstack-nova | 18:09 | |
| flashgordon | going to? who says I don't already :) | 18:10 |
| *** leakypipes has joined #openstack-nova | 18:10 | |
| mriedem | touche | 18:10 |
| *** armax has quit IRC | 18:10 | |
| *** armax_ is now known as armax | 18:10 | |
| *** hdd has quit IRC | 18:10 | |
| *** Marga_ has quit IRC | 18:11 | |
| openstackgerrit | Joe Gordon proposed openstack/nova: Stacktrace on live migration monitoring https://review.openstack.org/169429 | 18:11 |
| *** dboik_ has joined #openstack-nova | 18:12 | |
| *** aix has quit IRC | 18:13 | |
| *** pixelb has joined #openstack-nova | 18:14 | |
| *** dsanders1 has quit IRC | 18:15 | |
| *** dsanders has joined #openstack-nova | 18:15 | |
| *** dboik has quit IRC | 18:15 | |
| mriedem | leakypipes: you know you want it https://review.openstack.org/#/c/169429/ | 18:16 |
| *** suresh12 has joined #openstack-nova | 18:17 | |
| *** armax has quit IRC | 18:17 | |
| *** garyk has quit IRC | 18:17 | |
| *** sdake_ has joined #openstack-nova | 18:20 | |
| *** chachaji has quit IRC | 18:20 | |
| *** achanda has quit IRC | 18:20 | |
| *** Marga_ has joined #openstack-nova | 18:21 | |
| *** achanda has joined #openstack-nova | 18:24 | |
| sdague | mriedem: on it | 18:24 |
| *** sdake has quit IRC | 18:24 | |
| mriedem | sdague: was someone going to try and get that migration backport into the current stable/juno freeze/release that's happening now? | 18:25 |
| mriedem | b/c it would require an exception in the ML | 18:25 |
| sdague | mriedem: I don't know, honestly this was posted a month ago | 18:25 |
| mtreinish | mriedem: just do it, no one would notice anyway | 18:25 |
| ndipanoff | mriedem, https://review.openstack.org/#/c/170088/ you know this code | 18:26 |
| sdague | ok, calling it a week, later folks | 18:26 |
| mriedem | ndipanoff: heh, i do now :) | 18:26 |
| ndipanoff | sdague, ttyl | 18:26 |
| mriedem | ndipanoff: looking | 18:26 |
| mriedem | mtreinish: do what? the backport? | 18:26 |
| mriedem | mtreinish: i'm not +2 on stable nova | 18:26 |
| mtreinish | mriedem: yeah. Oh I just assummed you were. I would push it through for you | 18:27 |
| mtreinish | but they took my mojo away | 18:27 |
| mriedem | i would like to be | 18:27 |
| mriedem | ndipanoff: +W | 18:29 |
| ndipanoff | wooo | 18:30 |
| mriedem | flashgordon: i must be unlucky b/c i just can't recreate with logging here https://review.openstack.org/#/c/169520/ | 18:30 |
| *** tjones1 has joined #openstack-nova | 18:31 | |
| *** annegentle has joined #openstack-nova | 18:35 | |
| *** joefides has quit IRC | 18:37 | |
| *** joefides has joined #openstack-nova | 18:37 | |
| *** sbfox has joined #openstack-nova | 18:37 | |
| *** alexpilotti has quit IRC | 18:37 | |
| *** annegentle has quit IRC | 18:38 | |
| *** annashen has quit IRC | 18:39 | |
| *** aix has joined #openstack-nova | 18:41 | |
| *** igordcard_ has joined #openstack-nova | 18:41 | |
| *** annegentle has joined #openstack-nova | 18:43 | |
| *** tjones1 has left #openstack-nova | 18:48 | |
| *** Maike has joined #openstack-nova | 18:51 | |
| *** armax has joined #openstack-nova | 18:55 | |
| *** ferest has joined #openstack-nova | 18:55 | |
| *** sdake has joined #openstack-nova | 18:56 | |
| *** joefides has quit IRC | 18:58 | |
| *** joefides has joined #openstack-nova | 18:59 | |
| *** VW_ has joined #openstack-nova | 18:59 | |
| *** pixelb has quit IRC | 18:59 | |
| *** penick has quit IRC | 19:00 | |
| *** ferest has quit IRC | 19:00 | |
| *** sdake_ has quit IRC | 19:00 | |
| *** baoli has joined #openstack-nova | 19:00 | |
| *** exploreshaifali has quit IRC | 19:00 | |
| *** matrohon has joined #openstack-nova | 19:03 | |
| *** joefides has quit IRC | 19:03 | |
| *** sbfox has quit IRC | 19:03 | |
| *** joefides has joined #openstack-nova | 19:04 | |
| *** sbfox has joined #openstack-nova | 19:04 | |
| *** devlaps has quit IRC | 19:05 | |
| *** devlaps has joined #openstack-nova | 19:05 | |
| *** sdake_ has joined #openstack-nova | 19:05 | |
| *** otter768 has joined #openstack-nova | 19:05 | |
| *** eglynn has joined #openstack-nova | 19:07 | |
| *** sbfox has quit IRC | 19:08 | |
| *** sdake has quit IRC | 19:08 | |
| *** vilobhmm1 has quit IRC | 19:10 | |
| *** otter768 has quit IRC | 19:10 | |
| *** rook has joined #openstack-nova | 19:11 | |
| *** joefides_ has joined #openstack-nova | 19:11 | |
| *** joefides has quit IRC | 19:11 | |
| *** eglynn has quit IRC | 19:13 | |
| *** vilobhmm1 has joined #openstack-nova | 19:13 | |
| *** eglynn has joined #openstack-nova | 19:14 | |
| *** penick has joined #openstack-nova | 19:14 | |
| *** vilobhmm1 has joined #openstack-nova | 19:15 | |
| *** sdake has joined #openstack-nova | 19:15 | |
| *** achanda has quit IRC | 19:15 | |
| *** tonytan4ever has quit IRC | 19:17 | |
| *** sdake_ has quit IRC | 19:19 | |
| *** eglynn has quit IRC | 19:21 | |
| *** ndipanoff has quit IRC | 19:21 | |
| *** wznoinsk has quit IRC | 19:21 | |
| *** Maike has quit IRC | 19:22 | |
| *** Maike has joined #openstack-nova | 19:22 | |
| *** tonytan4ever has joined #openstack-nova | 19:25 | |
| *** Marga_ has quit IRC | 19:26 | |
| *** ijw has joined #openstack-nova | 19:28 | |
| *** mitz has quit IRC | 19:28 | |
| *** achanda has joined #openstack-nova | 19:29 | |
| *** apuimedo has quit IRC | 19:29 | |
| *** lucas-dinner has quit IRC | 19:29 | |
| *** mspreitz has joined #openstack-nova | 19:30 | |
| *** annashen has joined #openstack-nova | 19:32 | |
| flashgordon | mriedem: maybe the issue was fixed magically? | 19:33 |
| flashgordon | not being able to make something fail can be frustrating | 19:34 |
| *** eglynn has joined #openstack-nova | 19:34 | |
| *** dboik_ has quit IRC | 19:34 | |
| *** dboik has joined #openstack-nova | 19:35 | |
| mriedem | failure rates have dropped off a bit http://goo.gl/XbZuck | 19:36 |
| *** mitz has joined #openstack-nova | 19:37 | |
| openstackgerrit | afazekas proposed openstack/nova-specs: Rethinking scheduling https://review.openstack.org/170186 | 19:37 |
| flashgordon | interesting | 19:42 |
| flashgordon | that may be due to fewer nova patches ? | 19:42 |
| *** joefides has joined #openstack-nova | 19:45 | |
| *** amotoki has quit IRC | 19:47 | |
| *** joefides_ has quit IRC | 19:47 | |
| *** zzzeek has quit IRC | 19:47 | |
| *** zzzeek has joined #openstack-nova | 19:48 | |
| *** annegentle has quit IRC | 19:49 | |
| *** krtaylor has quit IRC | 19:51 | |
| *** krtaylor has joined #openstack-nova | 19:52 | |
| *** ivasev has quit IRC | 19:52 | |
| openstackgerrit | Joe Gordon proposed openstack/nova: Log ebtables output on failure https://review.openstack.org/170307 | 19:53 |
| openstackgerrit | Joe Gordon proposed openstack/nova: Allow _exec_ebtables to parse stderr https://review.openstack.org/170322 | 19:53 |
| *** matrohon has quit IRC | 19:55 | |
| *** ferest has joined #openstack-nova | 19:56 | |
| *** mmedvede has quit IRC | 19:58 | |
| *** annashen has quit IRC | 20:00 | |
| *** devlaps has quit IRC | 20:01 | |
| *** ferest has quit IRC | 20:01 | |
| *** devlaps has joined #openstack-nova | 20:01 | |
| *** annashen has joined #openstack-nova | 20:03 | |
| *** sbfox has joined #openstack-nova | 20:04 | |
| *** annegentle has joined #openstack-nova | 20:07 | |
| *** sbfox has quit IRC | 20:09 | |
| *** mmedvede has joined #openstack-nova | 20:10 | |
| *** rushil has quit IRC | 20:11 | |
| *** annegentle has quit IRC | 20:13 | |
| openstackgerrit | Thang Pham proposed openstack/nova: VMware: Add support for swap disk https://review.openstack.org/142174 | 20:14 |
| openstackgerrit | Thang Pham proposed openstack/nova: VMware: Add support for swap disk https://review.openstack.org/142174 | 20:16 |
| *** annegentle has joined #openstack-nova | 20:19 | |
| openstackgerrit | Eric Brown proposed openstack/nova: Replace ssh exec calls with paramiko lib https://review.openstack.org/157931 | 20:23 |
| *** annashen has quit IRC | 20:24 | |
| *** annegentle has quit IRC | 20:25 | |
| *** annashen has joined #openstack-nova | 20:28 | |
| *** fawadkhaliq has joined #openstack-nova | 20:39 | |
| *** hdd has joined #openstack-nova | 20:42 | |
| *** aix has quit IRC | 20:47 | |
| *** eglynn has quit IRC | 20:47 | |
| *** eglynn has joined #openstack-nova | 20:47 | |
| *** packet has quit IRC | 20:48 | |
| mriedem | krtaylor: fyi https://bugs.launchpad.net/nova/+bug/1419047 | 20:48 |
| openstack | Launchpad bug 1419047 in OpenStack Compute (nova) "Error on nova compute on Power" [Low,Confirmed] | 20:48 |
| mriedem | powerkvm bug apparently | 20:49 |
| mriedem | but testing on icehouse... | 20:49 |
| *** Mike_D_laptop has quit IRC | 20:51 | |
| *** eglynn has quit IRC | 20:53 | |
| *** harlowja has quit IRC | 20:53 | |
| *** vilobhmm1 has quit IRC | 20:56 | |
| *** penick has quit IRC | 20:56 | |
| *** vilobhmm1 has joined #openstack-nova | 20:57 | |
| *** ferest has joined #openstack-nova | 20:57 | |
| *** vilobhmm1 has quit IRC | 20:57 | |
| *** vilobhmm1 has joined #openstack-nova | 20:58 | |
| *** melwitt_ has joined #openstack-nova | 20:58 | |
| *** melwitt has quit IRC | 20:58 | |
| *** sdake has quit IRC | 20:58 | |
| *** melwitt_ has quit IRC | 20:58 | |
| *** melwitt has joined #openstack-nova | 20:59 | |
| *** andreykurilin_ has joined #openstack-nova | 21:00 | |
| *** ferest has quit IRC | 21:02 | |
| *** patrickeast_ has joined #openstack-nova | 21:02 | |
| *** patrickeast has quit IRC | 21:02 | |
| *** patrickeast_ is now known as patrickeast | 21:02 | |
| *** melwitt has quit IRC | 21:03 | |
| *** melwitt has joined #openstack-nova | 21:03 | |
| *** vilobhmm1 has quit IRC | 21:03 | |
| *** vilobhmm1 has joined #openstack-nova | 21:04 | |
| mriedem | timello: ^ | 21:04 |
| *** annegentle has joined #openstack-nova | 21:05 | |
| *** sbfox has joined #openstack-nova | 21:06 | |
| *** otter768 has joined #openstack-nova | 21:06 | |
| *** achanda has quit IRC | 21:08 | |
| *** andreykurilin_ has quit IRC | 21:08 | |
| *** andreykurilin_ has joined #openstack-nova | 21:09 | |
| openstackgerrit | melanie witt proposed openstack/python-novaclient: Handle binary userdata files such as gzip https://review.openstack.org/170399 | 21:09 |
| *** sbfox has quit IRC | 21:10 | |
| *** otter768 has quit IRC | 21:11 | |
| *** VW_ has quit IRC | 21:12 | |
| *** tonytan4ever has quit IRC | 21:17 | |
| *** ZZelle_ has joined #openstack-nova | 21:17 | |
| *** apuimedo has joined #openstack-nova | 21:17 | |
| figleaf | mriedem: I pinged them on the LTC channel, but I don't think that they're around | 21:17 |
| mriedem | figleaf: ok | 21:18 |
| mriedem | i have no idea how well pkvm works with icehouse level code and ubuntu 14.04 | 21:18 |
| mriedem | powerkvm ci runs against fedora | 21:18 |
| mriedem | + patches | 21:18 |
| figleaf | mriedem: yeah, well I probably know even less about that :) | 21:19 |
| mriedem | if ubuntu powerkvm doesn't require patches, they should probably move over to a distro that ships the thing working out of the box | 21:19 |
| mriedem | figleaf: c'mon! | 21:19 |
| *** lpetrut has quit IRC | 21:19 | |
| *** Marga_ has joined #openstack-nova | 21:21 | |
| *** joefides has quit IRC | 21:26 | |
| *** Maike_ has joined #openstack-nova | 21:28 | |
| *** dkliban is now known as dkliban_afk | 21:29 | |
| *** Maike has quit IRC | 21:29 | |
| mriedem | bauzas: you now have 3 patches up for bug 1431291 - can any of those be abandoned? | 21:30 |
| openstack | bug 1431291 in OpenStack Compute (nova) "Scheduler Failures are no longer logged with enough detail for a site admin to do problem determination" [High,In progress] https://launchpad.net/bugs/1431291 - Assigned to Sylvain Bauza (sylvain-bauza) | 21:30 |
| bauzas | mriedem: afternoon, yay the oldest one can be abandoned | 21:34 |
| bauzas | Sorry I'm on mobile (French Riviera for Easter ;-) ) | 21:35 |
| mriedem | ooo la la :) | 21:36 |
| dimsum__ | bauzas: nice! have fun :) | 21:36 |
| melwitt | bauzas: I'm jealous :) | 21:36 |
| bauzas | There is a WIP one that I provided because I wanted to get reviews on how provide logs | 21:36 |
| bauzas | The main issue is that the sched is not knowing the instance list | 21:38 |
| bauzas | melwitt: dimsum__: ty :-) Time for family in the work-life balance :-) | 21:39 |
| *** yamahata has quit IRC | 21:40 | |
| *** yamahata has joined #openstack-nova | 21:40 | |
| *** burt1 has quit IRC | 21:42 | |
| *** vilobhmm1 has quit IRC | 21:43 | |
| *** vilobhmm1 has joined #openstack-nova | 21:44 | |
| mriedem | speaking of, i'm out of here - good weekend all | 21:44 |
| figleaf | yeah, I'm headed offline, too. Enjoy! | 21:44 |
| *** mriedem has quit IRC | 21:44 | |
| *** penick has joined #openstack-nova | 21:49 | |
| *** igordcard_ has quit IRC | 21:51 | |
| *** figleaf is now known as edleafe | 21:52 | |
| *** iamjarvo has quit IRC | 21:56 | |
| *** ferest has joined #openstack-nova | 21:58 | |
| *** devlaps has quit IRC | 21:59 | |
| *** devlaps has joined #openstack-nova | 21:59 | |
| *** unicell has joined #openstack-nova | 22:01 | |
| *** ferest has quit IRC | 22:02 | |
| *** doude has quit IRC | 22:06 | |
| *** achanda has joined #openstack-nova | 22:08 | |
| *** david-lyle has joined #openstack-nova | 22:12 | |
| *** Bsony has quit IRC | 22:13 | |
| *** achanda has quit IRC | 22:14 | |
| *** mspreitz has quit IRC | 22:17 | |
| *** nelsnelson has quit IRC | 22:18 | |
| *** ijw_ has joined #openstack-nova | 22:19 | |
| *** ijw has quit IRC | 22:19 | |
| *** iamjarvo has joined #openstack-nova | 22:21 | |
| *** yamahata has quit IRC | 22:21 | |
| *** iamjarvo has quit IRC | 22:21 | |
| *** hdd has quit IRC | 22:21 | |
| *** sbfox has joined #openstack-nova | 22:21 | |
| *** iamjarvo has joined #openstack-nova | 22:22 | |
| *** iamjarvo has joined #openstack-nova | 22:22 | |
| *** sbfox has quit IRC | 22:25 | |
| *** achanda has joined #openstack-nova | 22:26 | |
| *** smccully has quit IRC | 22:28 | |
| *** annegentle has quit IRC | 22:28 | |
| *** annegentle has joined #openstack-nova | 22:28 | |
| *** penick has quit IRC | 22:30 | |
| *** thedodd has quit IRC | 22:32 | |
| *** melwitt has quit IRC | 22:33 | |
| *** melwitt has joined #openstack-nova | 22:33 | |
| *** vilobhmm1 has quit IRC | 22:34 | |
| *** vilobhmm1 has joined #openstack-nova | 22:34 | |
| *** vilobhmm1 has quit IRC | 22:34 | |
| *** vilobhmm1 has joined #openstack-nova | 22:35 | |
| *** penick has joined #openstack-nova | 22:35 | |
| *** devlaps1 has joined #openstack-nova | 22:37 | |
| *** devlaps has quit IRC | 22:37 | |
| *** annashen has quit IRC | 22:38 | |
| *** iamjarvo has quit IRC | 22:38 | |
| *** iamjarvo has joined #openstack-nova | 22:38 | |
| *** iamjarvo has quit IRC | 22:39 | |
| *** harlowja has joined #openstack-nova | 22:40 | |
| alex_xu | why my spec always failed on jenkins, but can pass on local https://review.openstack.org/#/c/170396/ ? | 22:40 |
| *** baoli has quit IRC | 22:42 | |
| *** andreykurilin_ has quit IRC | 22:42 | |
| *** annegentle has quit IRC | 22:43 | |
| *** Maike_ has quit IRC | 22:45 | |
| *** amotoki has joined #openstack-nova | 22:48 | |
| *** fawadkhaliq has quit IRC | 22:48 | |
| *** annashen has joined #openstack-nova | 22:49 | |
| *** amotoki has quit IRC | 22:52 | |
| *** achanda has quit IRC | 22:53 | |
| *** Nikolay_St has joined #openstack-nova | 22:54 | |
| melwitt | alex_xu: how are you running tox? should just be "tox" so you get both environments | 22:58 |
| *** ferest has joined #openstack-nova | 22:58 | |
| *** ferest has quit IRC | 23:03 | |
| *** zzzeek has quit IRC | 23:06 | |
| *** otter768 has joined #openstack-nova | 23:07 | |
| alex_xu | melwitt: thanks, I passed now, I update master and rebase | 23:07 |
| *** otter768 has quit IRC | 23:12 | |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver support custom cpu model based on flavor/image https://review.openstack.org/170397 | 23:12 |
| openstackgerrit | Alex Xu proposed openstack/nova-specs: Virt driver to support cpu features https://review.openstack.org/170396 | 23:12 |
| *** signed8bit has quit IRC | 23:17 | |
| melwitt | alex_xu: awesome! | 23:18 |
| *** chachaji has joined #openstack-nova | 23:19 | |
| *** zzzeek has joined #openstack-nova | 23:26 | |
| *** zzzeek has quit IRC | 23:26 | |
| *** Viswanath has joined #openstack-nova | 23:31 | |
| *** achanda has joined #openstack-nova | 23:32 | |
| *** rushiagr is now known as rushiagr_away | 23:33 | |
| *** melwitt has quit IRC | 23:34 | |
| *** penick has quit IRC | 23:35 | |
| *** ZZelle_ has quit IRC | 23:40 | |
| *** Viswanath has quit IRC | 23:40 | |
| *** mspreitz has joined #openstack-nova | 23:42 | |
| *** annashen has quit IRC | 23:42 | |
| *** annegentle has joined #openstack-nova | 23:43 | |
| *** oro has quit IRC | 23:46 | |
| *** annashen has joined #openstack-nova | 23:47 | |
| *** annegentle has quit IRC | 23:49 | |
| *** joefides has joined #openstack-nova | 23:51 | |
| *** annashen has quit IRC | 23:53 | |
| *** joefides_ has joined #openstack-nova | 23:54 | |
| *** joefides has quit IRC | 23:57 | |
| *** ferest has joined #openstack-nova | 23:59 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!