Tuesday, 2017-01-17

*** sacharya has quit IRC00:00
*** sacharya has joined #openstack-nova00:00
mriedemi farqed up the discover_hosts devstack patch, update coming00:04
mikalmriedem: what does it mean to have an instance mapping in a cell with no hosts?00:05
mriedemmikal: mayhem is what00:05
mriedemmikal: context?00:05
mikalmriedem: see comment on https://review.openstack.org/#/c/42045100:05
mikalmriedem: you check if there are any hosts, and only if there are none do you check if there are any instances00:06
mikalmriedem: which seems... redundant to me00:06
mikalmriedem: but also not the end of the world00:06
mriedemgood question00:06
dansmiththey're different things, and if we had a host_map delete command,00:06
dansmiththen you'd still need to check that there aren't any instances00:06
*** dikonoor has joined #openstack-nova00:07
dansmiththis delete command is to let you delete cells you created and didn't setup00:07
dansmithsince you can't really have multiple real cells yet, we don't likely need more of the delete commands just yet00:07
mikaldansmith: but doesn't no hosts imply no instances?00:07
dansmithno00:07
dansmithI mean, I know what you're saying,00:07
mikaldansmith: right, explain that bit in small words for me00:07
dansmithbut if you had deleted a host you would still have some instance mappings00:07
mikalSo deleting the host which has the instances on it doesn't cascade the delete to the instances?00:08
dansmiththere is no foreign key constraint on that stuff,00:08
dansmithso you could have nuked some things00:08
dansmithyou can't delete a host yet, so .. no :)00:08
mikalHeh00:09
mriedemlike today you can delete a compute node in the db by deleting the nova-compute service for that host00:09
mriedemand i'm pretty sure that doesn't mean you can't still have instnaces in the db pointing at that node00:09
dansmithright00:09
mikalThat's a fair point00:09
dansmithjust sanity checking00:09
mikalI don't feel we need to hold the new thing to a higher standard than what we have now00:10
*** catintheroof has joined #openstack-nova00:11
*** rfolco has joined #openstack-nova00:11
mriedemmikal: i'm failing to pick up on sarcasm there00:14
*** zz_dimtruck is now known as dimtruck00:15
*** jdurgin has quit IRC00:17
*** jerrygb has quit IRC00:18
mikalmriedem: Oh, sorry00:19
*** david-lyle has joined #openstack-nova00:19
*** hfu has joined #openstack-nova00:19
mikalmriedem: I am glad the new code is consistent in its level of terrible with the old00:19
mikalmgood enough?00:19
Kevin_ZhengHi cores, any particular reason that we have limited the length of instance tag to be 60 but created a db model with max length of 80?00:19
*** thorst has joined #openstack-nova00:19
*** thorst has quit IRC00:21
Kevin_Zhenghttp://git.openstack.org/cgit/openstack/nova/tree/nova/db/sqlalchemy/models.py#n1456  db model00:22
*** sdague has quit IRC00:22
mriedemKevin_Zheng: hmm, probably a question for jaypipes00:22
Kevin_Zhengmriedm: hmm ok00:23
mriedemmy guess is the 60 number in the API comes from the spec https://specs.openstack.org/openstack/nova-specs/specs/liberty/approved/tag-instances.html#data-model-impact00:24
Kevin_Zhenghttp://git.openstack.org/cgit/openstack/nova/tree/nova/objects/tag.py#n18 FYI00:24
Kevin_Zhengyeah, but why 80 in db model :)00:24
jaypipesKevin_Zheng: no idea... probably just an oversight.00:25
mriedemsnikitin: ^00:25
*** baoli has quit IRC00:26
mriedemthe db model change was https://review.openstack.org/#/c/97168/00:27
mriedemwhich was a long long slog00:27
mriedemso my guess would be, the db model stuff merged,00:27
mriedemand then a release or more later the REST API change merged00:27
Kevin_Zhengmaybe we can expand limit to 80? as we already created 80 in db00:27
mriedemat which point we'd totally forgotten what we were doing00:27
Kevin_Zhenghaha00:27
*** mtan_____ has joined #openstack-nova00:28
*** mtanino has quit IRC00:29
mriedemyeah even looking at patch set 1 of https://review.openstack.org/#/c/128940/127/nova/objects/tag.py00:30
Kevin_Zhenglooks like it start with 80 in the initial patch and nobody asked about it00:30
Kevin_Zhengyeah00:30
mriedemhttps://review.openstack.org/#/c/128940/1/nova/api/openstack/compute/schemas/v2/instance_tags.py00:31
mriedemit was 6000:31
mriedem^ had 127 patch sets00:31
mriedemi don't know if the 60 vs 80 has anything to do with unicode?00:31
Kevin_Zhengah maybe, he said something about converting in spec00:32
*** jdurgin has joined #openstack-nova00:32
mriedemKevin_Zheng: i assume you're asking because you need to know the schema for booting an instance with tags right?00:32
*** hongbin has quit IRC00:32
mriedemsnikitin would be the person to ask if he remembers a good reason for it00:32
Kevin_Zhengah, good, thanks, will try to catch him00:34
*** jerrygb has joined #openstack-nova00:34
openstackgerritClaudiu Belu proposed openstack/nova: Adds CPUFeaturesField to ImageMetaProps  https://review.openstack.org/42096000:35
*** efried has quit IRC00:35
jaypipesmriedem: no, 60 vs. 80 has nothing to do with unicode.00:35
*** jaypipes has quit IRC00:37
Kevin_Zhengjaypipes: so is it just an oversight or do we have any particular reason?00:39
*** jose-phillips has quit IRC00:40
*** hoangcx has joined #openstack-nova00:41
*** david-lyle has quit IRC00:43
*** efried has joined #openstack-nova00:47
mriedemi think it's probably just an oversight00:48
Kevin_Zhenglets sync them :)00:49
mriedemwell,00:50
mriedemwe could00:50
mriedemKevin_Zheng: is there a technical reason you need tags in the REST API to allow up to 80?00:51
*** Sukhdev has joined #openstack-nova00:52
mriedemKevin_Zheng: normally changing something like this in the REST API schema would be a microversion change, but this isn't making things more restrictive so it might be ok to change it without a microversion00:52
Kevin_Zhengyeah00:52
mriedemKevin_Zheng: i think we should start with a post to the ML thread about it so snikitin has a chance to respond (and alex_xu)00:52
mriedemKevin_Zheng: can you start that thread?00:52
Kevin_Zhengyeah sure00:52
mriedemthanks00:52
openstackgerritZhenyu Zheng proposed openstack/nova: Expand tag length limit to 80  https://review.openstack.org/42100400:54
Kevin_Zheng^ was already doing this, but we can block it until have a clean idea from ML00:55
*** paw_ has joined #openstack-nova00:55
*** zayro has joined #openstack-nova00:55
*** paw_ is now known as Guest9873200:55
*** paw has quit IRC00:58
mriedemsomething still failing in discover_hosts on the subnode http://logs.openstack.org/76/420976/4/check/gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv/1e4a55e/logs/subnode-2/devstacklog.txt.gz#_2017-01-17_00_35_47_24801:02
*** phuongnh has joined #openstack-nova01:03
*** takashin has joined #openstack-nova01:05
*** catintheroof has quit IRC01:09
*** jerrygb has quit IRC01:13
openstackgerritOpenStack Proposal Bot proposed openstack/nova: Updated from global requirements  https://review.openstack.org/42084401:13
*** amotoki has quit IRC01:19
*** amotoki has joined #openstack-nova01:19
*** rfolco has quit IRC01:20
*** thorst has joined #openstack-nova01:22
*** trananhkma has quit IRC01:24
*** rfolco has joined #openstack-nova01:24
*** rfolco has quit IRC01:24
*** salv-orlando has joined #openstack-nova01:25
*** mlavalle has quit IRC01:26
*** thorst has quit IRC01:27
*** Sukhdev has quit IRC01:29
*** kevinz has joined #openstack-nova01:29
*** ljxiash has quit IRC01:39
*** unicell has joined #openstack-nova01:40
*** unicell has quit IRC01:41
*** thorst has joined #openstack-nova01:42
*** thorst has quit IRC01:43
openstackgerritTuan Luong-Anh proposed openstack/nova: Support Ironic interface attach/detach in nova virt  https://review.openstack.org/36441301:43
*** mdnadeem has joined #openstack-nova01:44
openstackgerritSivasathurappan Radhakrishnan proposed openstack/nova: Initiate network changes from source during live migration  https://review.openstack.org/40460701:45
*** yuntongjin has joined #openstack-nova01:45
*** mdnadeem has quit IRC01:46
*** salv-orlando has quit IRC01:46
*** mingyu has joined #openstack-nova01:50
openstackgerritAnh Tran proposed openstack/nova: Remove mox stubs in api/openstack/compute/test_server_reset_state.py  https://review.openstack.org/32082601:57
*** mtan_____ has quit IRC01:57
*** tbachman has joined #openstack-nova01:58
*** sacharya has quit IRC01:59
*** sacharya has joined #openstack-nova02:00
*** dikonoor has quit IRC02:01
*** yamahata has quit IRC02:01
*** tiendc has joined #openstack-nova02:02
*** ljxiash has joined #openstack-nova02:02
*** ljxiash has quit IRC02:03
*** ljxiash has joined #openstack-nova02:03
*** nicolasbock has quit IRC02:03
*** jamesdenton has joined #openstack-nova02:03
openstackgerritSivasathurappan Radhakrishnan proposed openstack/nova: Initiate network changes from source during live migration  https://review.openstack.org/40460702:06
*** yamahata has joined #openstack-nova02:06
openstackgerritSivasathurappan Radhakrishnan proposed openstack/nova: Refactor _post_live_migratiion  https://review.openstack.org/41302102:08
*** jamesden_ has joined #openstack-nova02:09
*** jamesdenton has quit IRC02:09
*** salv-orlando has joined #openstack-nova02:13
*** jerrygb has joined #openstack-nova02:14
openstackgerritAnh Tran proposed openstack/nova: Remove mox stubs in api/openstack/compute/test_virtual_interfaces.py  https://review.openstack.org/32032502:18
*** jamesden_ has quit IRC02:19
openstackgerritDan Smith proposed openstack/nova: WIP Move instance creation to conductor  https://review.openstack.org/31937902:20
*** jamesdenton has joined #openstack-nova02:22
*** jamielennox is now known as jamielennox|away02:25
*** Apoorva has quit IRC02:28
*** yuntongjin has quit IRC02:29
*** salv-orlando has quit IRC02:32
*** gcb has joined #openstack-nova02:36
*** jamesdenton has quit IRC02:38
*** fandi has joined #openstack-nova02:38
*** fandi has quit IRC02:39
openstackgerritSpencer Yu proposed openstack/nova: Transform instance.live_migration_rollback_dest notification  https://review.openstack.org/42062902:39
*** mingyu has quit IRC02:40
*** CristinaPauna has quit IRC02:42
*** takashin has left #openstack-nova02:42
*** kevinz has quit IRC02:43
*** kevinz has joined #openstack-nova02:43
*** thorst has joined #openstack-nova02:44
*** mingyu has joined #openstack-nova02:46
*** mingyu_ has joined #openstack-nova02:47
*** mingyu has quit IRC02:47
*** eliqiao has joined #openstack-nova02:48
*** thorst has quit IRC02:48
*** sudipto_ has joined #openstack-nova02:52
*** sudipto has joined #openstack-nova02:52
*** hongbin has joined #openstack-nova02:53
*** CristinaPauna has joined #openstack-nova02:53
*** diga has joined #openstack-nova02:54
*** yuntongjin has joined #openstack-nova02:55
*** woodster_ has quit IRC02:55
*** amotoki has quit IRC02:55
*** salv-orlando has joined #openstack-nova03:00
*** tojuvone has quit IRC03:00
*** tojuvone has joined #openstack-nova03:00
*** mingyu_ has quit IRC03:02
*** jamielennox|away is now known as jamielennox03:03
openstackgerritDan Peschman proposed openstack/nova: nova-manage cell_v2 map_cell0 exit 0  https://review.openstack.org/42013203:05
*** salv-orlando has quit IRC03:05
*** bkopilov has quit IRC03:05
*** bkopilov_ has quit IRC03:06
*** gouthamr has quit IRC03:12
*** jose-phillips has joined #openstack-nova03:13
*** amotoki has joined #openstack-nova03:13
*** jose-phillips has quit IRC03:14
*** timello has quit IRC03:14
*** jose-phillips has joined #openstack-nova03:15
*** jose-phillips has quit IRC03:17
*** jose-phillips has joined #openstack-nova03:17
*** jose-phillips has quit IRC03:19
*** mingyu has joined #openstack-nova03:19
*** jose-phillips has joined #openstack-nova03:19
*** jose-phillips has quit IRC03:21
*** jose-phillips has joined #openstack-nova03:22
*** jose-phillips has quit IRC03:27
*** edmondsw has joined #openstack-nova03:31
*** links has joined #openstack-nova03:32
*** Apoorva has joined #openstack-nova03:34
*** edmondsw has quit IRC03:36
*** timello has joined #openstack-nova03:36
openstackgerritxianming.mao proposed openstack/nova: :Add wsgi response for attach method  https://review.openstack.org/41177303:41
*** yuntongjin has quit IRC03:41
*** pbandark has joined #openstack-nova03:43
openstackgerritAnusha Unnam proposed openstack/nova: Add keypairs field to InstancePayload  https://review.openstack.org/41973003:44
*** mingyu has quit IRC03:48
*** amotoki has quit IRC03:48
openstackgerritxianming.mao proposed openstack/nova: Add wsgi response for attach method  https://review.openstack.org/41177303:48
*** amotoki has joined #openstack-nova03:51
*** mingyu has joined #openstack-nova03:54
*** mdnadeem has joined #openstack-nova03:56
*** xinliang has quit IRC03:58
*** ljxiash has quit IRC04:04
*** amotoki has quit IRC04:05
*** sudipto has quit IRC04:09
*** sudipto has joined #openstack-nova04:09
*** psachin has joined #openstack-nova04:09
*** sudipto_ has quit IRC04:10
*** xinliang has joined #openstack-nova04:11
*** sudipto_ has joined #openstack-nova04:11
*** diga has quit IRC04:12
*** sheel has joined #openstack-nova04:13
*** hongbin has quit IRC04:16
*** hongbin has joined #openstack-nova04:17
*** bkopilov has joined #openstack-nova04:27
*** mingyu has quit IRC04:27
*** mingyu has joined #openstack-nova04:27
*** mingyu has quit IRC04:27
*** sudipto has quit IRC04:28
*** sudipto_ has quit IRC04:28
*** ljxiash has joined #openstack-nova04:31
*** ljxiash has quit IRC04:31
*** ljxiash has joined #openstack-nova04:31
*** bkopilov_ has joined #openstack-nova04:34
*** udesale has joined #openstack-nova04:35
*** Apoorva has quit IRC04:38
*** thorst has joined #openstack-nova04:45
*** Sukhdev has joined #openstack-nova04:45
*** Apoorva has joined #openstack-nova04:47
*** amotoki has joined #openstack-nova04:47
*** Apoorva has quit IRC04:49
*** thorst has quit IRC04:50
*** tlian has quit IRC04:50
*** salv-orlando has joined #openstack-nova05:01
*** ayogi has joined #openstack-nova05:03
*** prateek has joined #openstack-nova05:04
openstackgerritYoshihiko Atsumi proposed openstack/nova: Add confirm resized server functional negative tests  https://review.openstack.org/42107405:05
*** prateek has joined #openstack-nova05:05
*** ljxiash has quit IRC05:06
*** salv-orlando has quit IRC05:06
*** jerrygb has quit IRC05:08
*** unicell has joined #openstack-nova05:14
*** hongbin has quit IRC05:17
*** houming has joined #openstack-nova05:17
*** ratailor has joined #openstack-nova05:19
*** houming has quit IRC05:20
*** houming has joined #openstack-nova05:21
*** vladikr has quit IRC05:22
*** satyar has joined #openstack-nova05:22
*** sudipto_ has joined #openstack-nova05:26
*** sudipto has joined #openstack-nova05:26
*** dikonoor has joined #openstack-nova05:26
*** dimtruck is now known as zz_dimtruck05:26
*** ekuris has joined #openstack-nova05:28
*** dikonoor has quit IRC05:31
*** adisky_ has joined #openstack-nova05:31
*** david-lyle has joined #openstack-nova05:33
*** yuntongjin has joined #openstack-nova05:34
*** Apoorva has joined #openstack-nova05:37
*** ayogi has quit IRC05:41
*** david-lyle has quit IRC05:44
*** kylek3h has quit IRC05:46
*** kylek3h has joined #openstack-nova05:46
*** timello has quit IRC05:50
*** ratailor has quit IRC05:50
*** kylek3h has quit IRC05:51
*** david-lyle has joined #openstack-nova05:53
*** timello has joined #openstack-nova05:53
*** ratailor has joined #openstack-nova06:02
*** salv-orlando has joined #openstack-nova06:02
gmannmriedem: Kevin_Zheng  i think we should just do DB to 60, because it need microversion to make it 80 on API side for interoperability06:06
*** salv-orlando has quit IRC06:07
*** nkrinner_afk is now known as nkrinner06:14
*** rama_y has quit IRC06:15
*** amotoki has quit IRC06:16
*** Apoorva has quit IRC06:22
*** david-lyle has quit IRC06:24
*** Apoorva has joined #openstack-nova06:26
*** markmcclain has quit IRC06:26
*** Apoorva has quit IRC06:28
*** sacharya has quit IRC06:28
*** sacharya has joined #openstack-nova06:29
*** Jeffrey4l_ has joined #openstack-nova06:30
*** Sukhdev has quit IRC06:31
*** sudipto_ has quit IRC06:33
*** sudipto has quit IRC06:33
*** sudipto has joined #openstack-nova06:33
*** sudipto has quit IRC06:33
*** sudipto has joined #openstack-nova06:34
*** sudipto_ has joined #openstack-nova06:34
*** Jeffrey4l has quit IRC06:34
*** Jeffrey4l_ is now known as Jeffrey4l06:34
*** mjura has joined #openstack-nova06:38
*** amotoki has joined #openstack-nova06:43
*** Sukhdev has joined #openstack-nova06:43
*** thorst has joined #openstack-nova06:46
*** kylek3h has joined #openstack-nova06:47
*** eandersson_ has joined #openstack-nova06:48
*** amotoki has quit IRC06:49
*** sridharg has joined #openstack-nova06:50
*** thorst has quit IRC06:50
*** eandersson has quit IRC06:51
*** kylek3h has quit IRC06:51
*** houming has quit IRC06:53
*** lpetrut has joined #openstack-nova06:58
*** moshele has joined #openstack-nova06:59
*** tbachman has quit IRC06:59
*** houming has joined #openstack-nova07:00
*** hachi has left #openstack-nova07:05
*** aojea has quit IRC07:05
*** houming has quit IRC07:06
*** houming has joined #openstack-nova07:07
*** tuanluong has joined #openstack-nova07:09
*** sree has joined #openstack-nova07:10
*** markus_z has joined #openstack-nova07:12
*** Oku_OS-away is now known as Oku_OS07:15
*** tesseract has joined #openstack-nova07:16
*** aojea has joined #openstack-nova07:17
*** voelzmo has joined #openstack-nova07:25
*** voelzmo has quit IRC07:25
*** voelzmo has joined #openstack-nova07:27
*** andreas_s has joined #openstack-nova07:33
openstackgerritWang Qing wu proposed openstack/nova: Introduce base PowerVM driver  https://review.openstack.org/39128807:38
Dinesh_BhorHi all, can anyone tell me is there any document which explains what all libvirt related events generated by nova in what cases?07:38
Kevin_Zhenggmann: Hmm, users would love to have longer tags, but you have the point.07:39
*** slaweq has quit IRC07:40
*** salv-orlando has joined #openstack-nova07:40
*** mriedem has quit IRC07:41
*** slaweq has joined #openstack-nova07:45
*** lpetrut has quit IRC07:46
gmannKevin_Zheng: yea we could have done initially but now it is difficult07:46
Kevin_Zhengwill there be any problem if we shorten DB from 60 to 80?07:47
Kevin_Zhengwhen upgrading07:47
*** lpetrut has joined #openstack-nova07:53
*** Sukhdev has quit IRC07:53
*** sree has quit IRC07:54
*** yuntongjin has quit IRC07:59
*** dmellado has quit IRC08:02
gmannyea it might and we need migration script also?08:03
*** dmellado has joined #openstack-nova08:04
*** takedakn has joined #openstack-nova08:07
*** salv-orlando has quit IRC08:09
*** ansiwen has quit IRC08:11
*** ansiwen has joined #openstack-nova08:13
*** amoralej|off is now known as amoralej08:15
*** yuntongjin has joined #openstack-nova08:24
*** ralonsoh has joined #openstack-nova08:30
*** amotoki has joined #openstack-nova08:34
*** sahid has joined #openstack-nova08:39
*** jpena|off is now known as jpena08:43
*** thorst has joined #openstack-nova08:47
openstackgerritZhenyu Zheng proposed openstack/nova: Add sort_key white list for server list/detail  https://review.openstack.org/41514208:50
*** yassine has joined #openstack-nova08:51
*** yassine is now known as Guest6078408:51
*** thorst has quit IRC08:52
Kevin_ZhengSergey Nikitin thoughts it will might be much painful in DB migration than a new specless microversion in ML08:53
*** tovin07 has quit IRC08:55
*** jpena is now known as jpena|off08:56
*** rmart04 has joined #openstack-nova08:56
*** ekuris has quit IRC08:57
*** ekuris has joined #openstack-nova08:58
*** zzzeek has quit IRC09:00
*** zzzeek has joined #openstack-nova09:00
*** rha has quit IRC09:03
*** jpena|off is now known as jpena09:03
*** tuanluong has quit IRC09:03
*** tuanluong has joined #openstack-nova09:04
*** markus_z has quit IRC09:04
openstackgerrithuangtianhua proposed openstack/python-novaclient: Make _console() public  https://review.openstack.org/41436409:11
*** rama_y has joined #openstack-nova09:12
*** Lehtu has quit IRC09:17
*** Matias has joined #openstack-nova09:18
*** markus_z has joined #openstack-nova09:19
*** tiendc has quit IRC09:23
*** tiendc has joined #openstack-nova09:23
*** mvk has quit IRC09:30
*** derekh has joined #openstack-nova09:38
*** swamireddy has quit IRC09:43
*** yuntongjin has quit IRC09:44
*** lucas-afk is now known as lucasagomes09:45
*** rama_y has quit IRC09:49
*** takedakn has quit IRC09:52
openstackgerritVladik Romanovsky proposed openstack/nova: libbvirt: set vlan tag for macvtap on SRIOV VFs  https://review.openstack.org/42118609:58
*** owalsh has quit IRC09:59
*** owalsh_ has joined #openstack-nova09:59
*** swamireddy has joined #openstack-nova10:01
*** hfu has quit IRC10:05
*** mvk has joined #openstack-nova10:06
*** hoangcx has quit IRC10:10
*** salv-orlando has joined #openstack-nova10:10
*** zayro has quit IRC10:11
*** phuongnh has quit IRC10:11
*** kevinz has quit IRC10:12
*** salv-orlando has quit IRC10:14
*** jose-phillips has joined #openstack-nova10:15
*** ekuris has quit IRC10:18
*** haplo37_ has quit IRC10:19
*** haplo37_ has joined #openstack-nova10:19
*** owalsh_ is now known as owalsh10:20
*** satyar has quit IRC10:24
openstackgerritSpencer Yu proposed openstack/nova: Transform instance.live_migration_rollback_dest notification  https://review.openstack.org/42062910:25
*** udesale has quit IRC10:26
*** amotoki has quit IRC10:27
*** udesale has joined #openstack-nova10:27
openstackgerritJeremy Liu proposed openstack/nova: Transform instance.live_migration_rollback_dest notification  https://review.openstack.org/42062910:30
*** sahid has quit IRC10:30
*** mvk has quit IRC10:32
*** sahid has joined #openstack-nova10:33
*** ekuris has joined #openstack-nova10:34
*** tommylikehu has quit IRC10:40
*** mvk has joined #openstack-nova10:47
openstackgerritPavel Gluschak proposed openstack/nova: Added live migration test hook for VNC console  https://review.openstack.org/42120710:47
*** thorst has joined #openstack-nova10:48
*** udesale has quit IRC10:48
*** udesale has joined #openstack-nova10:49
*** tommylikehu has joined #openstack-nova10:49
openstackgerritDavanum Srinivas (dims) proposed openstack/nova: [WIP] ignore me - trying experimental jobs  https://review.openstack.org/42120910:52
*** thorst has quit IRC10:52
*** mingyu has joined #openstack-nova10:53
openstackgerritDavanum Srinivas (dims) proposed openstack/nova: [WIP] ignore me - trying experimental jobs  https://review.openstack.org/42120910:54
*** udesale__ has joined #openstack-nova10:54
*** udesale has quit IRC10:57
*** mriedem has joined #openstack-nova11:00
*** sudipto_ has quit IRC11:02
*** sudipto has quit IRC11:02
*** amotoki has joined #openstack-nova11:03
*** abalutoiu has quit IRC11:06
*** lpetrut has quit IRC11:06
openstackgerritZhenyu Zheng proposed openstack/nova: Add sort_key white list for server list/detail  https://review.openstack.org/41514211:07
*** cdent has joined #openstack-nova11:07
*** amotoki has quit IRC11:09
*** markus_z has quit IRC11:11
*** tbachman has joined #openstack-nova11:12
mriedemhttps://bugs.launchpad.net/nova/+bug/1657087 if anyone wants to investigate that11:12
openstackLaunchpad bug 1657087 in OpenStack Compute (nova) "Functional versioned notification test test_create_delete_server_with_instance_update randomly fails" [Medium,Confirmed]11:12
openstackgerritWang Qing wu proposed openstack/nova: Introduce base PowerVM driver  https://review.openstack.org/39128811:13
*** sree has joined #openstack-nova11:14
*** mingyu has quit IRC11:15
*** tiendc_ has joined #openstack-nova11:15
openstackgerritZhenyu Zheng proposed openstack/nova: Add new policy for server list/detail with all_tenants  https://review.openstack.org/41533011:15
*** udesale__ has quit IRC11:17
openstackgerritRikimaru Honjo proposed openstack/nova: Consolidate unit tests for shelve API  https://review.openstack.org/42122011:18
*** tiendc has quit IRC11:18
openstackgerritMatt Riedemann proposed openstack/nova: Add more details when test_create_delete_server_with_instance_update fails  https://review.openstack.org/42122111:19
*** aloga has quit IRC11:20
*** aloga has joined #openstack-nova11:20
sahidhello mriedem, anychance you look at this serie when you have a moment https://review.openstack.org/#/c/409260/11:22
*** ociuhandu has quit IRC11:23
mriedemi see you and pkoniszewski are having a debate on the top patch in the series11:24
*** rtheis has joined #openstack-nova11:24
*** rfolco has joined #openstack-nova11:25
sahidyes the first one has already +2 and the last one need a third person11:25
*** tbachman has quit IRC11:27
*** rha has joined #openstack-nova11:27
*** mvk has quit IRC11:28
*** houming has quit IRC11:28
openstackgerritMatthew Booth proposed openstack/nova: libvirt: Fix races with nfs volume mount/umount  https://review.openstack.org/38385911:29
*** houming has joined #openstack-nova11:35
*** amotoki has joined #openstack-nova11:37
openstackgerritZhenyu Zheng proposed openstack/nova: Strict pattern match query parameters  https://review.openstack.org/42049411:38
*** jose-phillips has quit IRC11:39
*** tbachman has joined #openstack-nova11:40
*** rtheis has quit IRC11:41
*** mvk has joined #openstack-nova11:41
*** sridharg has quit IRC11:41
*** jose-phillips has joined #openstack-nova11:41
*** sridharg has joined #openstack-nova11:41
*** JoseMello has joined #openstack-nova11:43
*** tbachman has quit IRC11:44
*** moshele has quit IRC11:47
*** sree has quit IRC11:48
openstackgerritMatt Riedemann proposed openstack/nova: Fanout the db sync to all cells if --local_cell is False  https://review.openstack.org/42097311:50
openstackgerritMatt Riedemann proposed openstack/nova: Add --verbose option to discover_hosts command  https://review.openstack.org/42122811:50
*** bvanhav_ has joined #openstack-nova11:51
openstackgerritMatt Riedemann proposed openstack/nova: Add --verbose option to discover_hosts command  https://review.openstack.org/42122811:53
openstackgerritMatt Riedemann proposed openstack/nova: Fanout the db sync to all cells if --local_cell is False  https://review.openstack.org/42097311:53
*** cdent has quit IRC11:58
*** tuanluong has quit IRC11:59
*** cdelatte has joined #openstack-nova11:59
*** tiendc_ has quit IRC11:59
*** nicolasbock has joined #openstack-nova12:01
openstackgerritPavel Gluschak proposed openstack/nova: live-migration test hook for serial console  https://review.openstack.org/34747112:07
openstackgerritPavel Gluschak proposed openstack/nova: Added live migration test hook for VNC console  https://review.openstack.org/42120712:10
*** lpetrut has joined #openstack-nova12:10
*** sree has joined #openstack-nova12:10
*** diga has joined #openstack-nova12:10
openstackgerritPavel Gluschak proposed openstack/nova: don't store VNC/SPICE listen addrs in migration data if disabled  https://review.openstack.org/39621812:10
*** lucasagomes is now known as lucas-hungry12:11
*** links has quit IRC12:12
*** kevinz has joined #openstack-nova12:14
*** jose-phillips has quit IRC12:14
*** gszasz has joined #openstack-nova12:14
*** markus_z has joined #openstack-nova12:16
*** bkopilov_ has quit IRC12:22
*** bkopilov has quit IRC12:23
*** tesseract has quit IRC12:23
*** mkoderer has quit IRC12:26
*** diga has quit IRC12:29
*** cdent has joined #openstack-nova12:29
*** catintheroof has joined #openstack-nova12:32
*** ekuris has quit IRC12:36
*** smatzek has joined #openstack-nova12:36
mriedemclaudiub|2: need to add hw_cpu_features to ImageMetaProps in a change before this https://review.openstack.org/#/c/398509/12:40
*** kashyap has quit IRC12:41
*** sdague has joined #openstack-nova12:43
dims"Pass 1265 Failure 60 Skip 85" on the first run of gate-tempest-dsvm-nova-py35-ubuntu-xenial (DSVM/Tempest/py35), not too shabby12:44
dimsAnyone interested in helping with this? ^12:44
mriedemKevin_Zheng: feel free to get a start on the pike spec for the tags length microversion, it should be a simple spec12:44
mriedemand the nova-specs repo is available for posting pike specs now12:44
*** sree_ has joined #openstack-nova12:44
Kevin_Zhengmriedem: thanks12:45
*** sree_ is now known as Guest9080112:45
Kevin_Zhengwill do it if got time12:45
*** thorst has joined #openstack-nova12:46
*** kashyap has joined #openstack-nova12:47
*** sree has quit IRC12:47
claudiub|2mriedem: yep. that is why I've put that patch on top of this: https://review.openstack.org/#/c/420960/112:48
*** mriedem has quit IRC12:48
*** houming has quit IRC12:48
*** gouthamr has joined #openstack-nova12:49
*** esberglu has quit IRC12:49
*** ratailor has quit IRC12:50
*** ekuris has joined #openstack-nova12:53
*** hoangcx has joined #openstack-nova12:54
*** hoangcx has quit IRC12:56
*** tbachman has joined #openstack-nova12:56
*** gcb has quit IRC12:58
*** links has joined #openstack-nova12:58
*** jwcroppe has joined #openstack-nova12:59
*** hoangcx has joined #openstack-nova13:00
*** links has quit IRC13:01
*** dave-mccowan has joined #openstack-nova13:02
*** edmondsw has joined #openstack-nova13:03
*** takashin has joined #openstack-nova13:05
*** tbachman has quit IRC13:06
*** tbachman has joined #openstack-nova13:07
*** tblakes has joined #openstack-nova13:07
*** amoralej is now known as amoralej|lunch13:09
*** jheroux has joined #openstack-nova13:10
*** sahid has quit IRC13:10
*** eharney has joined #openstack-nova13:10
openstackgerritLee Yarwood proposed openstack/nova: Compute: Reset bdm connection_info during LM rollback  https://review.openstack.org/33892913:20
openstackgerritLee Yarwood proposed openstack/nova: Live migration of instances with encrypted volumes  https://review.openstack.org/38960813:20
*** lucas-hungry is now known as lucasagomes13:21
*** jaypipes has joined #openstack-nova13:22
jaypipes*yawn*13:24
*** cristicalin has joined #openstack-nova13:25
* cdent passes jaypipes the coffee pot13:26
jaypipescdent: thx :)13:26
*** kevinz has quit IRC13:27
openstackgerritChris Dent proposed openstack/nova: A demo script for updating resource inventory  https://review.openstack.org/38261313:27
*** kevinz has joined #openstack-nova13:27
*** acabot has joined #openstack-nova13:28
*** tbachman has quit IRC13:28
*** tbachman has joined #openstack-nova13:32
*** ralonsoh_ has joined #openstack-nova13:33
*** ralonsoh has quit IRC13:33
*** kevinz has quit IRC13:37
openstackgerritDavanum Srinivas (dims) proposed openstack/nova: [WIP] ignore me - trying experimental jobs  https://review.openstack.org/42120913:37
*** kevinz has joined #openstack-nova13:38
openstackgerritTakashi NATSUME proposed openstack/nova: Enable cold migration with target host(1/2)  https://review.openstack.org/40895513:38
*** esberglu has joined #openstack-nova13:40
openstackgerritTakashi NATSUME proposed openstack/nova: Enable cold migration with target host(2/2)  https://review.openstack.org/40896413:40
openstackgerritTakashi NATSUME proposed openstack/nova: api-ref: Add parameters in cold migrate action  https://review.openstack.org/41004213:40
openstackgerritTakashi NATSUME proposed openstack/nova: Add functional tests for cold migration to same host  https://review.openstack.org/41492613:41
*** vladikr has joined #openstack-nova13:41
*** jpena is now known as jpena|lunch13:42
*** huanxie2 has joined #openstack-nova13:43
*** sudipto has joined #openstack-nova13:45
*** sudipto_ has joined #openstack-nova13:45
*** markvoelker has joined #openstack-nova13:45
*** mingyu has joined #openstack-nova13:45
openstackgerritgaryk proposed openstack/nova: VMware: retry network lookup if network not ready  https://review.openstack.org/39177813:47
* mdbooth would really, really like to get this bugfix in: https://review.openstack.org/#/c/383859/13:48
mdboothI think it's fallen into the 'nobody really understands this code' hole, though.13:48
mdboothAll the CI we have thinks it's good.13:49
kashyapmdbooth: In such cases, shouldn't one just merge it, and not leave it in limbo?  As the author, you understand it the deepest, and you're more than willing to explain any question to anyone.13:52
kashyapI think it should simply be merged if there are no regressions, or obvious repurcussions -- which there are none at the moment.13:53
kashyapLet's see what MattR has to say when he's here.  He's usually quite clear with his stance.13:54
* kashyap needs to step out for 40 min; bbiab13:55
*** sahid has joined #openstack-nova13:56
tdurakovPaulMurray paul-carlton2 eliqiao shaohe_feng pkoniszewski yuntongjin mdbooth kashyap kmartin claudiub tobasco tdurakov andreas_s abhishekk mrhillsman raj_singh wznoinsk siva_krishnan hi folks, live-migration subteam meeting in 5 minutes on #openstack-meeting-313:56
huanxie2Hi all, I made a very small patch to correct the comment message about input param's data type https://review.openstack.org/#/c/419308/could you help have a review, thanks a lot13:57
*** baoli has joined #openstack-nova13:59
*** kylek3h has joined #openstack-nova13:59
*** krtaylor has joined #openstack-nova13:59
*** baoli has quit IRC14:00
*** baoli has joined #openstack-nova14:01
*** mdnadeem has quit IRC14:01
jaypipeshuanxie2: approved it. thx for the fix.14:02
huanxie2Thanks jaypipes :)14:02
jaypipesnp14:02
huanxie2I also made another patch to fix the waiting vif-plug-event timeout problem when rescuing a VM https://review.openstack.org/#/c/413469/, could you also have a review if possible?14:04
*** yamahata has quit IRC14:05
jaypipeshuanxie2: yes, will do shortlyu.14:06
huanxie2Many thanks jaypipes14:08
*** cristicalin has quit IRC14:08
*** mriedem has joined #openstack-nova14:10
*** mdrabe has joined #openstack-nova14:10
*** salv-orlando has joined #openstack-nova14:10
mriedemjaypipes: i took a look at your aggregate map patch, comments inline14:10
jaypipesmriedem: already responded...14:11
*** dikonoor has joined #openstack-nova14:11
mriedemok14:11
jaypipesmriedem: thx, great review comments.14:11
mriedemschool is closed up here today so i'm going to be on and off14:11
mdboothmriedem: Snow day?14:11
jaypipesmriedem: thx for letting me know. trying to perform a bunch of my day-job duties today :( (management stuff)14:11
mriedemice dsay14:11
mriedem*day14:11
*** liverpooler has quit IRC14:13
mdboothmriedem: I'm still banging on https://review.openstack.org/#/c/383859/ btw14:13
openstackgerritZhenyu Zheng proposed openstack/nova: Add query parameters white list for server list/detail  https://review.openstack.org/40857114:13
*** amoralej|lunch is now known as amoralej14:13
*** jerrygb has joined #openstack-nova14:14
mdboothI just updated it. sfinucan had asked for some docs, and I noticed an additional potential race while I was writing them. I've fixed the race and added docstrings.14:14
mdboothJenkins thinks it's good, and I've run the updated patch against devstack nfs, which still passes.14:15
*** zz_dimtruck is now known as dimtruck14:15
*** ociuhandu has joined #openstack-nova14:16
lyarwoodmdbooth: quick nit on that review around your use of os.path.ismounted14:17
mdboothThe race was: if we lose and regain our libvirt connection, when we re-initialise the mount state we couldn't be certain that there were no ongoing operations from before we lost the connection.14:17
*** sahid has quit IRC14:17
lyarwoodmdbooth: still looking at the rest, started there given the other change I'm working on14:17
mdboothlyarwood: Thanks for looking!14:18
*** sahid has joined #openstack-nova14:19
tdurakovjohnthetubaguy: hi, are you around?14:19
openstackgerritZhenyu Zheng proposed openstack/nova: Add sort_key white list for server list/detail  https://review.openstack.org/41514214:20
*** mlavalle has joined #openstack-nova14:22
mdboothlyarwood: That raises a follow-on question about is_mounted, btw.14:23
*** tlian has joined #openstack-nova14:23
*** cleong has joined #openstack-nova14:23
mdboothI'm going to tread carefully around that rabbit hole :) I don't want to go down it.14:23
openstackgerritZhenyu Zheng proposed openstack/nova: Add new policy for server list/detail with all_tenants  https://review.openstack.org/41533014:24
openstackgerritZhenyu Zheng proposed openstack/nova: Strict pattern match query parameters  https://review.openstack.org/42049414:25
mriedemmdbooth: ack. are you ok with the latest version of https://review.openstack.org/#/c/312488/ now?14:25
lyarwoodmdbooth: I assume your going to ask if it did that check before right?14:26
lyarwoodyou're*14:26
*** ducttape_ has quit IRC14:26
*** jamesdenton has joined #openstack-nova14:26
mdboothmriedem: Just checking again. I was nearly ok with with it last time iirc.14:26
mdboothlyarwood: I responded to your comment.14:27
lyarwoodmdbooth: yup good point14:28
*** pbandark has quit IRC14:29
diana_clarkemriedem: Let me know if there is anything you want help with, given ice day and all. In particular, is there anything I can help with wrt what tripleo needs from nova?14:30
diana_clarkeman pages etc14:30
*** abalutoiu has joined #openstack-nova14:31
mriedemok, hm14:31
openstackgerritGábor Antal proposed openstack/nova: Transform instance.reboot.error notification  https://review.openstack.org/41179114:31
mriedemit would be nice to have man page entries for the cells v2 commands14:31
mriedemin here http://docs.openstack.org/developer/nova/man/nova-manage.html14:32
diana_clarkemriedem: yeah, I saw the ask in the nova-cells-v2 wiki, which is why I asked. I no one is doing that, I can take that on.14:32
*** bkopilov_ has joined #openstack-nova14:32
diana_clarketypo: *if* no one is doing that...14:33
mriedemi don't think anyone is working on that so it's all yours14:33
mriedemyou might want to do them one at a time in a series just to make reviews easier14:33
*** bkopilov has joined #openstack-nova14:33
diana_clarkemriedem: okie, dokie. and I'll update the wiki, claiming that task14:34
mriedemwe might want to get https://review.openstack.org/#/c/420442/ merged to avoid conflicts too14:34
mriedemsdague: super simple change https://review.openstack.org/#/c/420442/14:34
*** mingyu has quit IRC14:34
sdaguemriedem: bam14:35
*** gcb has joined #openstack-nova14:36
*** psachin has quit IRC14:37
mriedemthanks emeril14:37
mriedemsean-k-mooney: do you know if we can re-use _get_vif_name in here https://review.openstack.org/#/c/410737/ ? i.e. is the device field set on that type of vif for vhostuser?14:38
*** takashin_ has joined #openstack-nova14:38
*** takashin has quit IRC14:39
mriedemi guess the vif does have a devname, "devname":"tap96429488-f7"14:39
mriedembut it's not what's needed here i guess14:39
*** cristicalin has joined #openstack-nova14:41
*** huanxie2 has quit IRC14:43
markus_ztdurakov: sorry, I missed the meeting14:43
tdurakovmarkus_z: ping me once update the hook14:44
*** satyar has joined #openstack-nova14:44
*** hoangcx has quit IRC14:44
markus_ztdurakov: I pushed the teardown pkoniszewski asked for in ps42. https://review.openstack.org/#/c/347471/14:45
*** ralonsoh_ is now known as ralonsoh14:45
tdurakovacked, let me check it again14:45
markus_zthanks!14:45
*** cristicalin has quit IRC14:47
*** hoangcx has joined #openstack-nova14:47
*** kevinz has quit IRC14:49
sean-k-mooneymriedem just looking now14:49
*** mingyu has joined #openstack-nova14:49
*** salv-orlando has quit IRC14:50
*** dimtruck is now known as zz_dimtruck14:50
*** Guest98732 is now known as paw14:50
sean-k-mooneymriedem: looking at the code the vhost-user socket name must = the name of the openvswitch port14:50
*** paw has quit IRC14:50
*** paw has joined #openstack-nova14:51
sean-k-mooneymriedem: if we called  _get_vif_name() we would have to modify neutron to generate the socket path differently14:51
*** READ10 has joined #openstack-nova14:51
sean-k-mooneymy intention was to modify neutron to pass the name of the device in the port binding14:52
sean-k-mooneyand then nave nova use that if present or fall back to generating it if not set14:52
*** dikonoor has quit IRC14:53
mriedemok so in other words this is fine14:54
sean-k-mooneymriedem: yes what is there is currently fine but  i would like to decouple it in the future so that we dont have to ensure that neutron and nova generate the name with the same algoritim14:55
*** Guest90801 has quit IRC14:56
tdurakovmarkus_z: done, thank you14:56
markus_ztdurakov: yeah, thanks!14:56
tdurakovmriedem, sdague hi, could you please take a look https://review.openstack.org/#/c/347471/4314:56
*** jpena|lunch is now known as jpena14:56
jaypipessdague: well said, on the PWG thing. I won't say that publicly, of course, since I'd get my head chewed off internally.14:57
cdentjaypipes: you must have very flexible teeth or jaw14:58
*** xinliang has quit IRC14:58
*** udesale has joined #openstack-nova14:59
*** ducttape_ has joined #openstack-nova14:59
*** tovin07 has joined #openstack-nova15:00
*** sree has joined #openstack-nova15:01
*** swamireddy has quit IRC15:02
mriedemsean-k-mooney: ok i've also gone through https://review.openstack.org/#/c/385061/15:03
*** hoangcx has quit IRC15:03
*** rama_y has joined #openstack-nova15:04
*** JoseMello has quit IRC15:05
*** owalsh has quit IRC15:06
*** sree has quit IRC15:06
*** jaosorior has joined #openstack-nova15:06
*** owalsh has joined #openstack-nova15:06
*** mingyu has quit IRC15:08
*** mingyu has joined #openstack-nova15:09
mriedemalex_xu: your intel buddies might want to look at this https://review.openstack.org/#/c/420960/1/nova/objects/fields.py15:10
mriedempkoniszewski: ^15:10
*** xinliang has joined #openstack-nova15:12
*** swamireddy has joined #openstack-nova15:12
cdent_gryf: I think that endpoint stuff is simply that I hadn't revisited that update_inventory code in a long time (perhaps 4 months?)15:12
*** sree has joined #openstack-nova15:12
*** takashin_ has left #openstack-nova15:12
_gryfcdent, ok, cool15:13
*** yamahata has joined #openstack-nova15:14
*** pcaruana has quit IRC15:15
*** nkrinner is now known as nkrinner_afk15:17
*** tbachman has quit IRC15:17
*** zz_dimtruck is now known as dimtruck15:17
*** sree has quit IRC15:17
*** burgerk has joined #openstack-nova15:19
*** udesale has quit IRC15:21
*** ekuris has quit IRC15:21
alex_xumriedem: that sounds like that overlap with traits. in the future we can request specific trait in the image metadata, the requested trait can be cpu feature. there is the spec about request traits https://review.openstack.org/#/c/351063/3/specs/ocata/approved/request-standardized-capabilities.rst@6615:22
*** hongbin has joined #openstack-nova15:24
*** david-lyle has joined #openstack-nova15:24
*** gcb has quit IRC15:26
pkoniszewskithanks mriedem, i will take a look15:27
*** david-lyle has quit IRC15:29
*** david-lyle has joined #openstack-nova15:29
cdentedleafe: I think you're on PTO, but if not I fixed that bug in gabbi and made a new one: https://pypi.python.org/pypi/gabbi15:31
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: add cells commands prep  https://review.openstack.org/42132015:34
*** david-lyle has quit IRC15:34
*** prateek has quit IRC15:42
*** david-lyle has joined #openstack-nova15:42
* cdent goes for a docs walk15:43
*** cdent has quit IRC15:43
*** marst has joined #openstack-nova15:45
*** tbachman has joined #openstack-nova15:45
openstackgerritSylvain Bauza proposed openstack/nova: Add ComputeNodeList.get_all_by_uuids method  https://review.openstack.org/41813415:48
openstackgerritSylvain Bauza proposed openstack/nova: WIP: Scheduler calling the Placement API  https://review.openstack.org/41796115:48
bauzasmriedem: jaypipes: folks I need to bail out for a few, but you can bite ^15:48
openstackgerritVladyslav Drok proposed openstack/nova: Generate necessary network metadata for ironic port groups  https://review.openstack.org/38875615:49
*** mdrabe has quit IRC15:49
*** mvk has quit IRC15:51
*** timello has quit IRC15:51
*** tbachman has quit IRC15:52
*** tanee has quit IRC15:53
*** timello has joined #openstack-nova15:53
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 simple_cell_setup  https://review.openstack.org/42133315:53
*** tbachman has joined #openstack-nova15:54
openstackgerritZhenyu Zheng proposed openstack/nova: Add query parameters white list for server list/detail  https://review.openstack.org/40857115:54
*** burgerk has quit IRC15:54
*** david-lyle has quit IRC15:55
*** kfarr has joined #openstack-nova15:56
openstackgerritZhenyu Zheng proposed openstack/nova: Add sort_key white list for server list/detail  https://review.openstack.org/41514215:56
openstackgerritZhenyu Zheng proposed openstack/nova: Add new policy for server list/detail with all_tenants  https://review.openstack.org/41533015:57
*** erhudy has joined #openstack-nova15:58
*** _ducttape_ has joined #openstack-nova15:59
*** mdrabe has joined #openstack-nova16:00
*** cdent has joined #openstack-nova16:02
*** ducttape_ has quit IRC16:03
*** mingyu has quit IRC16:03
*** ociuhandu has quit IRC16:05
*** tovin07 has left #openstack-nova16:06
*** tovin07 has joined #openstack-nova16:07
*** sheel has quit IRC16:07
*** david-lyle has joined #openstack-nova16:07
mriedemtdurakov: markus_z: for https://review.openstack.org/#/c/347471/ i see it depends on a tempest patch to enable the test, do we have a patch up anywhere that depends on the nova change to see it all working and running the serial console tests in the live migration job?16:08
mriedemor is it self-testing?16:08
markus_zmriedem: it's self testing16:09
mriedemoh really http://logs.openstack.org/71/347471/43/check/gate-grenade-dsvm-neutron-multinode-live-migration-nv/c427a53/console.html#_2017-01-17_13_10_19_24601716:09
markus_zhttp://logs.openstack.org/71/347471/43/check/gate-grenade-dsvm-neutron-multinode-live-migration-nv/c427a53/console.html#_2017-01-17_13_10_22_84045916:09
markus_zWe have to skip in in grenade. Let me search for the Ocata-Ocata case.16:10
mriedemoh right16:11
mriedemthis is the o-o one http://logs.openstack.org/71/347471/43/check/gate-tempest-dsvm-multinode-live-migration-ubuntu-xenial/0b45362/console.html#_2017-01-17_12_34_13_29033216:11
mriedemstill skipped16:11
mriedemmelwitt: i'm struggling trying to get discover_hosts to work on the subnode in a multinode job http://logs.openstack.org/81/420981/5/check/gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv/6767a3a/logs/subnode-2/devstacklog.txt.gz#_2017-01-17_14_49_15_13816:11
mriedemmelwitt: please tell me there is something you know about this that i don't16:11
mriedemthe subnode nova.conf has the api_database connection and we're getting the cell mappings from the api db ok,16:12
mriedemit's the target_cell that's failing on the non-cell0 cell16:12
mriedemfor some reason it's trying to connect to 127.0.0.116:12
markus_zmriedem: That was the first run before the hook enables the serial console. After the hook we have http://logs.openstack.org/71/347471/43/check/gate-tempest-dsvm-multinode-live-migration-ubuntu-xenial/0b45362/console.html#_2017-01-17_12_35_19_71655816:13
markus_zmriedem: The teardown of the hook sets everything back, so we have http://logs.openstack.org/71/347471/43/check/gate-tempest-dsvm-multinode-live-migration-ubuntu-xenial/0b45362/console.html#_2017-01-17_12_36_38_32907816:13
*** bswartz has quit IRC16:13
*** hieulq_ has joined #openstack-nova16:16
shanerhi all - any idea why live-migrations won't show up when issuing 'migrations-list'?16:20
shaner(in kilo)16:20
shaneronly those that were migrated using 'migrate' show up .. vs 'live-migration'16:21
*** mjura has quit IRC16:23
jaypipesshaner: pls see /topic. best to ask on ask.openstack.org or mailing list for usage questions.16:25
shanerjaypipes, thx, will do16:25
*** jaosorior has quit IRC16:26
*** burgerk has joined #openstack-nova16:26
mriedemmigrate is cold migration16:26
openstackgerritint32bit proposed openstack/python-novaclient: Allow multiple tag add/delete from cli  https://review.openstack.org/41463516:27
shanermriedem, shouldn't 'migration-list' list all types of migrations though?16:28
mriedemi don't think until 2.23 http://docs.openstack.org/developer/nova/api_microversion_history.html#id2116:28
mriedemfwiw this is the api code in kilo https://github.com/openstack/nova/blob/kilo-eol/nova/api/openstack/compute/contrib/migrations.py#L5316:29
openstackgerritint32bit proposed openstack/nova: Choose VMware datastore by the least provisioned space  https://review.openstack.org/40263216:30
*** carthaca_ has joined #openstack-nova16:30
*** baoli has quit IRC16:30
*** bswartz has joined #openstack-nova16:32
mriedemshaner: was the migration in progress or complete? if the migration was complete i wonder if the migration record was deleted16:36
mriedemat this point kilo is pretty far eol so it would take some investigating16:36
*** ijw_ has joined #openstack-nova16:37
shanermriedem, it seems either way, in-progress/complete, it doesn't show up16:37
shanerI've tested it several times to no avail16:37
shanerappreciate the info!16:38
mriedemhave you looked at the migrations table in the nova db?16:38
mriedemare there any records where deleted = 0?16:39
shanermriedem, let me check16:39
*** ijw has quit IRC16:40
*** cleong has quit IRC16:40
*** moshele has joined #openstack-nova16:41
mriedemmelwitt: hmm this is interesting16:43
mriedemthe db connection for the cell0 mapping in this failed run has localhost in it http://logs.openstack.org/81/420981/5/check/gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv/6767a3a/logs/devstacklog.txt.gz#_2017-01-17_14_43_53_94316:43
mriedemnova-manage cell_v2 map_cell0 --database_connection 'mysql+pymysql://root:secretmysql@127.0.0.1/nova_cell0?charset=utf8'16:43
mriedemwhen we call simple_cell_setup the transport_url has a valid ip in it nova-manage cell_v2 simple_cell_setup --transport-url rabbit://stackrabbit:secretrabbit@10.20.124.3:5672/16:45
andreykurilinmriedem: hi! I remember you spent a bit of time investigation an issue with novaclient's gate failures (which was fixed by blocking openstacksdk 0.9.12). If you have any details please share them here - https://review.openstack.org/#/c/41866316:45
*** tanee has joined #openstack-nova16:46
mriedemandreykurilin: done16:47
andreykurilinmriedem: thanks16:47
*** smatzek has quit IRC16:48
*** andreas_s has quit IRC16:49
mriedemhmm wtf http://logs.openstack.org/81/420981/5/check/gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv/6767a3a/logs/devstacklog.txt.gz#_2017-01-17_14_27_19_60016:50
mriedemBASE_SQL_CONN=mysql+pymysql://root:secretmysql@127.0.0.116:50
*** smatzek has joined #openstack-nova16:50
*** salv-orlando has joined #openstack-nova16:51
alaskimriedem: yesterday was a holiday for me so I missed your message. Thanks for not letting a national figure distract from the important birthday16:53
mriedemalaski: you're MY national figure16:54
shanermriedem, all items in migrations db are cold migrations and indeed have 'deleted = 0'16:54
shanerI don't see any from the past live-migrations I've done, so it seems, a live-migration isn't updating this table?16:54
alaskimriedem: :)16:54
mriedemDATABASE_HOST=MYSQL_HOST=SERVICE_LOCAL_HOST=127.0.0.1 blarg!16:54
*** salv-orlando has quit IRC16:54
alaskimriedem: I see there was a question of naming, did that get resolved?16:54
*** salv-orlando has joined #openstack-nova16:55
mriedemshaner: would have to check if live migrations were tracked with migrations records in kilo16:55
mriedemalaski: sort of https://review.openstack.org/#/c/420439/16:55
mriedemthere was much gnashing of teeth16:55
mriedemalaski: https://review.openstack.org/#/c/420439/5/nova/cmd/manage.py@112216:56
mriedembasically we weren't sure about the original intent of using the api_database.connection for the cell0 netloc and name16:56
*** marst has quit IRC16:56
mriedembut all agreed that nova_api_cell0 was a confusing db name for a db that is not using the api db schema16:56
alaskiyep16:57
mriedembut also agreed that cell0 might not be on the same host as the api db, or main db,16:57
mriedemand finally agreed that us trying to guess is a bad idea and people should just provide the value explicitly16:57
alaskiright, in a large deployment I expect all dbs to be separate16:57
*** stvnoyes has joined #openstack-nova16:57
mriedemwe probably need to make a note in our docs for ^16:57
mriedemi.e. .. note:: we'll guess, but might be wrong, and then cell0 won't work, don't say we didn't tell you16:58
mriedemsdague: so in devstack, if you're not on the subnode DATABASE_HOST isn't set,16:59
mriedemsdague: and on the api (primary) node, it gets defaulted to localhost: DATABASE_HOST=MYSQL_HOST=SERVICE_LOCAL_HOST=127.0.0.116:59
*** _ducttape_ has quit IRC16:59
alaskiyeah. the simple_cell_setup command seems to sit in the same place as something like devstack, i.e. it'll get you setup and show you what needs doing but probably isn't what you want for production16:59
mriedemsdague: but the devstack docs say that DATABASE_HOST=$SERVICE_HOST by default if not set, and that's also what's used for the MQ host URL16:59
mriedemsdague: so anything you know of that would be bad for me trying to fix that?16:59
*** ducttape_ has joined #openstack-nova16:59
*** markus_z has quit IRC17:00
alaskimriedem: so the original reason for colocating cell0 with the api db vs the main db is that there is only ever expected to be one api db and one cell0 db, but there could be multiple "main" dbs. So thinking of where cell0 is gets confusing when there's multiple17:00
*** nic has joined #openstack-nova17:00
openstackgerritSivasathurappan Radhakrishnan proposed openstack/nova: Rollback on live migration failure  https://review.openstack.org/37903217:00
sdaguemriedem: trying to establish context17:01
mriedemwell i guess https://github.com/openstack-dev/devstack/blob/master/doc/source/guides/multinode-lab.rst#configure-compute-nodes says MYSQL_HOST=$SERVICE_HOST17:01
*** _ducttape_ has joined #openstack-nova17:01
mriedemsdague: in devstack today we create cell mappings on the primary node17:01
mriedemsdague: and i'm seeing that the db connection in those has 127.0.0.1 as the host17:01
mriedembecause MYSQL_HOST=${MYSQL_HOST:-$SERVICE_LOCAL_HOST}17:01
mriedemsdague: and i've got a patch up to discover the subnode compute once n-cpu is running,17:02
mriedembut that's failing because the subnode can't connect to the cell db on 127.0.0.1 b/c the db doesn't exist on the subnode17:02
mriedemi'm actually confused as to how the subnode nova.conf has the proper database connection url17:03
sdaguemriedem: which services are on the subnode?17:03
mriedemn-cpu17:03
*** oomichi has joined #openstack-nova17:03
mriedemoh i know why the subnode nova.conf is correct17:03
sdagueI'm confused, n-cpu doesn't have a db connection url17:03
mriedembecause d-g passes in the DATABASE_HOST in localrc17:03
mriedemit does in nova.conf17:03
*** sahid has quit IRC17:03
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_cell0  https://review.openstack.org/42138417:04
sdaguemriedem: ok, but n-cpu doesn't use it, right?17:04
mriedemhttp://logs.openstack.org/81/420981/5/check/gate-tempest-dsvm-neutron-multinode-full-ubuntu-xenial-nv/6767a3a/logs/subnode-2/etc/nova/nova.conf.txt.gz17:04
mriedemnope17:04
sdaguebecause that's was the whole point of conductor :)17:04
mriedemyeah17:04
mriedemwell, my change doesn't it need it for n-cpu17:04
*** ducttape_ has quit IRC17:04
mriedemit needs it for the discover_hosts CLI to run and map the subnode compute host to the parent cell17:04
mriedembut that parent cell is created when setting up the api node, which thinks it's db host ip is 127.0.0.117:05
mriedemanywho, i think it's a simple fix, i'll just push that up and we can see17:05
mriedemit's a really weird mix of d-g doesn't do something for the primary node, but does for the subnode, and you have to keep that all in your head at the same time to know what's what17:05
mriedemd-g should probably just always set DATABASE_HOST in localrc for multinode jobs17:06
*** Apoorva has joined #openstack-nova17:06
mriedemthen devstack doesn't need to guess17:06
owalshmriedem, bauzas: hola, I've a question about the cell_v2 api db sync...17:06
mriedemmelwitt: you can continue doing all that you droppe doing from earlier pings, i've figured out the problem :)17:07
mriedemowalsh: shoot17:07
mriedemowalsh: first, that's not a thing17:07
*** jaosorior has joined #openstack-nova17:07
mriedembut ok17:07
sdaguemriedem: I think the DATABASE_HOST was jammed in for cinder17:08
openstackgerritint32bit proposed openstack/python-novaclient: Add CLI to show instance usage audit logs  https://review.openstack.org/40941317:08
owalshmriedem: if a user installs the N tripleo undercloud but upgrades to O before adding any ironic nodes the sync will fail17:08
owalshmriedem: here https://github.com/openstack/nova/blob/master/nova/db/sqlalchemy/api_migrations/migrate_repo/versions/030_require_cell_setup.py#L5117:08
mriedemN = newton?17:08
owalsh ^ yes17:08
sdagueand because it never broken anything else, it was never looked at17:08
sdaguemriedem: https://review.openstack.org/#/c/106043/ is where the subnode setting of that comes from17:08
mriedemsdague: yeah, i could probably have a patch in both projects17:09
mriedemsdague: yeah i know17:09
mriedemi was in there yesterday17:09
mriedemsdague: specifically this https://review.openstack.org/#/c/106043/23/devstack-vm-gate.sh@31217:09
mriedemi'm saying we should just always set DATABASE_HOST in the localrc regardless of node17:09
*** voelzmo has quit IRC17:10
*** cdent has quit IRC17:10
owalshmriedem: question being is that check absolutely necessary?17:10
owalshmriedem: if a user has not run simple setup then it will fail a previous check. If map_cell0/create_cell etc... is being used then can we assume they know what they are doing17:11
mriedemowalsh: that check assumed that if you were doing a fresh install there would be no flavors yet and it would opt out17:11
mriedem*noop i mean17:11
mriedembut if there were flavors, it's an upgrade and there would be computes17:11
owalshmriedem: ah, forgot to mention that installing the undercloud creates default flavors17:11
mriedemgdi17:11
mriedemcan someone please reset the 'days since tripleo disaster' counter?17:11
owalshmriedem: :-)17:12
mriedemso what are your steps again?17:12
mriedeminstall newton, sync api db, sync nova db, create flavors,...17:13
sdaguemriedem: https://github.com/openstack-dev/devstack/blob/3c8ccecb1f0dff855e8043ba681d1749645de738/lib/nova#L468-L469 - probably that should be conditional behind n-api / n-cond / n-sched enabled17:13
*** dtp has joined #openstack-nova17:14
*** raunak has joined #openstack-nova17:15
*** sridharg has quit IRC17:15
owalshmriedem: install newton, create flavors (implicitly by installing TripleO undercloud), upgrade to ocata, create cell0 db, map cell0, create cell1, sync nova db, discover_hosts (none yet), sync api db ... deploy computes, discover_hosts17:17
*** hieulq_ has quit IRC17:17
owalshmriedem: I err think...17:17
openstackgerritDan Peschman proposed openstack/nova: nova-manage cell_v2 map_cell0 exit 0  https://review.openstack.org/42013217:17
*** mvk has joined #openstack-nova17:17
mriedemowalsh: so between "discover_hosts (none yet), sync api db" you blow up17:18
owalshmriedem: yes17:18
mriedemfudg17:19
mriedem*e17:19
*** ijw has joined #openstack-nova17:19
*** rmart04 has quit IRC17:19
mriedemsee how nova-status handles this exact same thing https://github.com/openstack/nova/blob/master/nova/cmd/status.py#L153-L17117:20
mriedemit doesn't consider it a failure17:20
*** dtp is now known as dtp-afk17:21
owalshmriedem: yea, I'm thinking the db migraion could be relaxed. It will fail on the first check if the user hasn't run simple_cell_setup17:22
*** yamahata has quit IRC17:22
*** rama_y has quit IRC17:22
*** tovin07 has quit IRC17:22
*** ijw_ has quit IRC17:22
owalshmriedem: if it gets as far as the host mapping check it implies that map_cell0 and create_cell were used, or simple_cell_setup failed...17:23
*** karimb has joined #openstack-nova17:23
*** sudipto has quit IRC17:24
*** sudipto_ has quit IRC17:24
*** david-lyle_ has joined #openstack-nova17:26
*** unicell has quit IRC17:28
mriedemi need to reset my brain on how we can even add cell mappings before running the api db sync17:28
mriedemin devstack we create the nova_api db and then sync it here https://github.com/openstack-dev/devstack/blob/3c8ccecb1f0dff855e8043ba681d1749645de738/lib/nova#L69417:29
mriedemthen later we run simple_cell_setup here https://github.com/openstack-dev/devstack/blob/3c8ccecb1f0dff855e8043ba681d1749645de738/lib/nova#L95017:30
openstackgerritDavanum Srinivas (dims) proposed openstack/nova: [WIP] ignore me - trying experimental jobs  https://review.openstack.org/42120917:30
mriedemoh devstack works because when we sync the api_db we don't have any flavors yet17:30
mriedemso it noops17:30
mriedemok let me wrap up this thing i'm fixing first, then i can come back to this17:31
*** sacharya has quit IRC17:33
*** sacharya has joined #openstack-nova17:33
gibimriedem: hi! I saw you patch chasing the race in the notification sample test https://review.openstack.org/#/c/42122117:34
*** david-lyle_ has quit IRC17:34
mriedemyeah17:34
gibimriedem: do we want to merge that to see more logs or just use to locally reproduce the problem?17:34
mriedemgibi: more logs17:34
*** lpetrut has quit IRC17:34
mriedemand so i can fingerprint the failure in elastic-recheck17:34
gibimriedem: OK, then I'm totally +1 on that17:35
*** moshele has quit IRC17:36
*** ociuhandu has joined #openstack-nova17:37
*** baoli has joined #openstack-nova17:37
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_instances  https://review.openstack.org/42140417:40
*** browne has joined #openstack-nova17:41
*** marst has joined #openstack-nova17:43
*** Kevin_Zheng has quit IRC17:47
*** derekh has quit IRC17:49
*** ociuhandu has quit IRC17:49
melwittmriedem: sweet! glad I could help by not being around17:50
mriedemmelwitt: i think this is the culmination of 2 days of frustration https://review.openstack.org/#/c/421399/117:51
mriedemand about 4 hours of sleep17:51
dimsmriedem : wow one liner!17:52
*** dtp-afk_ has joined #openstack-nova17:52
melwittoof17:52
*** lucasagomes is now known as lucas-afk17:53
mriedemso in devstack runs we create flavors basically last17:53
mriedemwe create the dbs and sync them,17:53
mriedemwe run simple_cell_setup17:53
mriedemthen we create the flavors17:54
mriedemand that's how devstack avoids failing the api db migration for there being no host mappings (well we'd have host mappings after running simple_cell_setup)17:54
*** dtp-afk has quit IRC17:55
owalsh... and the api db doesn't know about hosts etc... so the flavor is the trigger yea17:55
mriedemin any other fresh install, you can't create flavors in the api db until you sync the api db17:55
*** rama_y has joined #openstack-nova17:55
*** dtp-afk_ is now known as dtp-afk17:55
owalshsequence above is an upgrade, so we have the tables from newton I expect17:55
mriedemso, we have a particularly terrible scenario where you're actively going out of your way to create the flavors in the api db in newton, then upgrade to ocata and sync the api db before having any hosts17:56
mriedemowalsh: wtf does tripleo do this?17:56
owalshmriedem: it doesn't, but it's a possible sequence of event17:56
owalshmriedem: user would need to do this17:56
mriedemi thought the point of tripleo was to keep the user from hurting themselves?17:57
mriedems/user/operator/17:57
mriedemi mean i guess it's valid to create the newton control plane + flavors, and then decide, i might as well upgrade this to ocata even though i don't have any computes yet17:58
mriedemit just seems really weird17:58
owalshit wouldn't be typical, but if an operator did this they wouldn't be able to recover easily I expect17:59
*** gszasz has quit IRC17:59
*** david-lyle_ has joined #openstack-nova18:00
mriedemwell, they'd have to delete the flavors18:01
*** yamahata has joined #openstack-nova18:01
mriedemthere would be 2 outs:18:01
mriedem1. delete the flavors, sync the api db, do the cell setup stuff, then add the flavors18:02
mriedem2. create the computes, run discover_hosts or simple_cell_setup, then sync the api db18:02
*** lpetrut has joined #openstack-nova18:02
*** ralonsoh has quit IRC18:02
owalshshould clarify, I'm talking about the all-in-one cloud that deploys the real cloud18:04
owalshoperator could install it, maybe create custom flavors etc... upgrade to ocata, then add hosts to deploy to18:06
owalshfar less likely to have a production cloud with no hosts18:06
owalshbut with flavors18:06
*** ociuhandu has joined #openstack-nova18:11
*** ociuhandu has quit IRC18:15
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_cell_and_hosts  https://review.openstack.org/42142018:16
*** smatzek has quit IRC18:16
openstackgerritMatt Riedemann proposed openstack/nova: Fix and add some notes to the cells v2 first time setup doc  https://review.openstack.org/42142118:17
mriedemmelwitt: found a typo in the cells v2 setup doc ^18:17
owalshmriedem: so for fresh installs it would be: install ocata, create nova/api/cell0 dbs, sync api db, map_cell0, create_cell cell1, sync nova db ... deploy computes, discover_hosts18:20
*** jpena is now known as jpena|off18:23
mriedemowalsh: well, create_cell cell1 implies you have a cell1 db18:23
mriedemyou don't have to create a cell1,18:25
mriedemsimple_cell_setup and map_cell_and_hosts will default to use the nova db as cell118:25
owalshcan't use simple_cell_setup as we have no hosts yet18:26
owalshcreate_cell cell1 defaults to using the nova db too AFAICT18:26
*** unicell has joined #openstack-nova18:26
mriedemyeah which fails w/o https://review.openstack.org/#/c/420079/18:26
mriedemowalsh: yeah you're right,18:27
mriedemcreate_cell will use CONF.database.connection which is by default the main (non-api) db18:27
*** ijw has quit IRC18:28
mriedemowalsh: so yeah i think that's all correct for first time initial ocata setup18:28
mriedemalso in http://docs.openstack.org/developer/nova/cells.html#setup-of-cells-v218:28
mriedemi think we plan on eventually getting rid of simple_cell_setup as it's not that simple for fresh install18:29
*** adisky_ has quit IRC18:29
*** karimb_ has joined #openstack-nova18:30
comstudmriedem: what's this cells thing you speak of?18:31
comstudnever heard of it18:31
comstudi only know zones18:31
*** karimb has quit IRC18:33
*** krtaylor has quit IRC18:36
mriedemcomstud: cells v2.018:36
mriedemcells: the reckoning18:37
comstudmriedem: Cells 2: Electric Boogaloo18:37
comstudi've been meaning to look @ what laski et al came up with, but no time18:38
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 verify_instance  https://review.openstack.org/42143618:39
mriedemcells IV: the revenge of behrens18:39
comstudlol18:39
mriedemthat's for when you come back18:40
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 verify_instance  https://review.openstack.org/42143618:41
owalshmriedem: I think the difficulty with all of this is the sync api db18:42
*** Swami has joined #openstack-nova18:42
owalsh ideall upgrades would be similar: install ocata, create nova/api/cell0 dbs, sync api db, map_cell0, create_cell cell1, sync nova db, discover_hosts18:42
owalshs/ideall/ideally/18:42
*** karimb_ has quit IRC18:44
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 discover_hosts  https://review.openstack.org/42144218:46
mriedemsdague: melwitt: got past that db host issue on the subnode \o/18:46
mriedemowalsh: is there an upgrade step in there?18:47
mriedemwait, upgrade step in where? the doc?18:47
*** david-lyle has quit IRC18:47
owalshmriedem: install ocata, from newton18:48
mriedemok.18:48
melwittmriedem: sweet, nice work18:48
mriedemwhen coming from newton you'd have the nova and nova_api dbs18:49
mriedemyou still have to create cell018:49
owalshah, yes, typo18:49
mriedemand sync it and map it18:49
*** markvoelker has quit IRC18:49
owalshyea, but after sync api db18:49
owalshif it did have that migration18:49
owalshs/did/didn't/18:50
*** dharinic is now known as dharinic|lunch18:50
*** ijw has joined #openstack-nova18:50
*** david-lyle_ has quit IRC18:50
mriedemwell,18:50
*** karimb has joined #openstack-nova18:51
mriedemthe upgrade scenario we had in mind was install ocata, create cell0 db, run simple_cell_setup which creates the cell0 mapping in the api db, runs the db schema migration on cell0, and then does map_cell_and_hosts for the existing nova database18:51
mriedem^ is what grenade does18:52
mriedemhttps://github.com/openstack-dev/grenade/blob/master/projects/60_nova/from-newton/upgrade-nova18:52
mriedemthe problem is upgrading from newton to ocata with no compute hosts18:52
mriedembut having flavors18:53
*** cdent has joined #openstack-nova18:53
mriedemwhich is not something we anticipated18:53
*** ijw has quit IRC18:54
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 create_cell  https://review.openstack.org/42144418:55
owalshwhere/when is the api db sync?18:55
mriedemafter ^18:59
mriedemhere https://github.com/openstack-dev/devstack/blob/master/lib/nova#L68119:00
*** cdent has quit IRC19:00
melwittthis is reminding me what I said in the ML thread about the setup docs, we need to include step-by-step instructions for each common scenario19:00
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_instances  https://review.openstack.org/42140419:01
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_cell_and_hosts  https://review.openstack.org/42142019:01
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 verify_instance  https://review.openstack.org/42143619:01
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 discover_hosts  https://review.openstack.org/42144219:01
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 create_cell  https://review.openstack.org/42144419:01
*** amoralej is now known as amoralej|off19:01
mriedembefore you ask me why we recreate the nova_api db after upgrading from ocata, that's a good question19:02
mriedemmelwitt: i think you just signed up for that19:03
melwittyeah, I should do that :)19:04
mriedemi'm not entirely sure what goes on with the dbs in grenade19:06
mriedemsdague: is https://github.com/openstack-dev/devstack/blob/master/lib/nova#L676 not called during grenade?19:08
mriedemoh i guess not19:11
mriedemwhich is why we don't stomp on the databases from the n-1 run19:11
mriedemok i'm going to be away for awhile19:12
owalshmriedem: me too, thanks!19:12
*** karimb has quit IRC19:14
*** jose-phillips has joined #openstack-nova19:14
*** satyar has quit IRC19:14
*** Oku_OS is now known as Oku_OS-away19:15
openstackgerritEric Fried proposed openstack/nova: Introduce base PowerVM driver  https://review.openstack.org/39128819:17
*** owalsh has quit IRC19:17
*** owalsh_ has joined #openstack-nova19:17
openstackgerritEric Fried proposed openstack/nova: Introduce base PowerVM driver  https://review.openstack.org/39128819:17
*** owalsh_ is now known as owalsh19:17
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_instances  https://review.openstack.org/42140419:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_cell_and_hosts  https://review.openstack.org/42142019:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 verify_instance  https://review.openstack.org/42143619:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 simple_cell_setup  https://review.openstack.org/42133319:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 map_cell0  https://review.openstack.org/42138419:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 discover_hosts  https://review.openstack.org/42144219:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 create_cell  https://review.openstack.org/42144419:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 list_cells  https://review.openstack.org/42145819:18
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 delete_cell  https://review.openstack.org/42145919:18
*** unicell has quit IRC19:24
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 delete_cell  https://review.openstack.org/42145919:31
openstackgerritDiana Clarke proposed openstack/nova: nova-manage docs: cell_v2 list_cells  https://review.openstack.org/42145819:31
*** dharinic|lunch is now known as dharinic19:32
*** tommylikehu has quit IRC19:40
*** cdent has joined #openstack-nova19:44
*** dtp-afk has quit IRC19:48
*** dtp-afk has joined #openstack-nova19:49
*** unicell has joined #openstack-nova19:49
*** dtp-afk is now known as dtp19:49
*** david-lyle has joined #openstack-nova19:50
*** beagles is now known as beagles_brb19:52
*** rfolco has quit IRC19:54
*** unicell has quit IRC19:59
*** marst_ has joined #openstack-nova20:00
*** marst has quit IRC20:03
*** rama_y has quit IRC20:03
openstackgerritSujitha proposed openstack/nova: Adding auto_disk_config field to InstancePayload  https://review.openstack.org/41918520:04
*** Sukhdev_ has joined #openstack-nova20:05
openstackgerritSujitha proposed openstack/nova: Adding auto_disk_config field to InstancePayload  https://review.openstack.org/41918520:06
openstackgerritJoshua Harlow proposed openstack/nova: Handle oslo.serialization type error and binascii error  https://review.openstack.org/42148220:08
*** jidar has joined #openstack-nova20:11
*** salv-orlando has quit IRC20:11
openstackgerritEric Fried proposed openstack/nova: Introduce base PowerVM driver  https://review.openstack.org/39128820:21
*** unicell has joined #openstack-nova20:23
*** marst_ has quit IRC20:25
*** krtaylor has joined #openstack-nova20:26
*** mtanino has joined #openstack-nova20:28
openstackgerritJiri Suchomel proposed openstack/nova: Retry few times when creating the initial connection to libvirtd.  https://review.openstack.org/41692820:29
*** gszasz has joined #openstack-nova20:29
*** woodster_ has joined #openstack-nova20:32
*** bvanhav_ has quit IRC20:33
*** READ10 has quit IRC20:37
openstackgerritSivasathurappan Radhakrishnan proposed openstack/nova: Extract _post_live_migratiion_network_setup  https://review.openstack.org/41302120:43
*** lpetrut has quit IRC20:47
*** lpetrut has joined #openstack-nova20:49
*** beagles_brb is now known as beagles20:50
*** sacharya_ has joined #openstack-nova20:57
*** sacharya has quit IRC20:59
claudiub|2mriedem: hi. around?21:00
*** ducttape_ has joined #openstack-nova21:01
openstackgerritDavanum Srinivas (dims) proposed openstack/nova: [WIP] ignore me - trying experimental jobs  https://review.openstack.org/42120921:02
*** jdurgin has quit IRC21:03
*** _ducttape_ has quit IRC21:04
*** Guest60784 has quit IRC21:05
*** ijw_ has joined #openstack-nova21:07
*** marst_ has joined #openstack-nova21:08
*** dave-mccowan has quit IRC21:09
harlowjamriedem if u get a chance, when this is ok, https://review.openstack.org/#/c/421482/21:09
harlowjaneed for a oslo.serialization release that will unify the exceptions (until then cinder uses one type, nova uses the other, so its a PITA, lol)21:10
smcginnisHah - "can proceed with breaking nova"21:11
efriedI was amused21:11
smcginnisefried: ;)21:11
*** ijw_ has quit IRC21:12
openstackgerritChris Dent proposed openstack/nova: Remove invalid URL in gabbi tests  https://review.openstack.org/42152921:13
*** lpetrut has quit IRC21:13
cdentdims ^21:13
cdentI'm not sure if I tidied up the py3 blacklist file properly or not, but if not, let me know and I'll fix it tomorrow, I'm done with today21:14
*** cdent has quit IRC21:14
nicolasbockHi! I am trying to understand how nova-metadata works. I got to the point where I am reading nova/api/metadata/base.py:InstanceMetadata.get_ec2_metadata()21:16
nicolasbockI suppose that this method returns the ssh public key for instance21:16
*** ijw has joined #openstack-nova21:17
nicolasbockhow does this work though when I enable ssl in nova?21:17
*** ducttape_ has quit IRC21:17
*** cdelatte has quit IRC21:17
*** ducttape_ has joined #openstack-nova21:17
nicolasbockcloud-init in a server will request http://169.254.169.254/latest/.... and nova-metadata will expect an ssl connection21:18
nicolasbockwouldn't that clash?21:18
*** jdurgin has joined #openstack-nova21:22
harlowjasmcginnis oops, haha21:27
smcginnisharlowja: ;)21:27
openstackgerritJoshua Harlow proposed openstack/nova: Handle oslo.serialization type error and binascii error  https://review.openstack.org/42148221:27
*** marst_ has quit IRC21:29
*** Jeffrey4l has quit IRC21:35
openstackgerritEd Leafe proposed openstack/nova: Remove the Allocation.create() method.  https://review.openstack.org/41675121:42
openstackgerritEd Leafe proposed openstack/nova: Add check for invalid allocation amounts  https://review.openstack.org/41675221:42
edleafebauzas: found a bug in your recent merge: https://review.openstack.org/#/c/392569/27/nova/tests/functional/api/openstack/placement/fixtures.py@106 (and line 112)21:42
edleafebauzas: there is a step_size of 10, but an allocation of 512, which should fail, but doesn't21:43
edleafebauzas: the change to AllocationList.create_all() caught it21:43
*** Jeffrey4l has joined #openstack-nova21:48
openstackgerritJiri Suchomel proposed openstack/nova: Retry few times when creating the initial connection to libvirtd.  https://review.openstack.org/41692821:50
bauzasedleafe: not sure it's due to my bug but okay:)21:54
edleafebauzas: when you added the step_size, min_unit, and max_unit, the subsequent allocation should have failed, since 512 isn't a multiple of 1021:57
edleafeThe old code happily created the allocation21:58
edleafeThe new code won't21:58
siva_krishnantdurakov  ?21:59
*** thorst has quit IRC21:59
*** krtaylor has quit IRC21:59
tdurakovsiva_krishnan: hi, what's up?22:00
*** gouthamr has quit IRC22:01
siva_krishnanthis is regarding bug https://bugs.launchpad.net/nova/+bug/159905722:01
openstackLaunchpad bug 1647451 in OpenStack Compute (nova) "duplicate for #1599057 Post live migration step could fail due to auth errors" [Medium,Fix released] - Assigned to Timofey Durakov (tdurakov)22:01
*** harlowja has quit IRC22:01
bauzasedleafe: but I haven't provided the allocation API, right?22:01
tdurakovYes22:02
bauzasunless I misunderstand22:02
siva_krishnantdurakov: my intent of putting up patch for that bug is to do rollback on exception which occurs prior to live migration22:02
slaweqoomichi: hello22:03
slaweqoomichi: can You maybe look at https://review.openstack.org/#/c/420176/ ?22:03
slaweqoomichi: I answered to Your comment there22:04
siva_krishnanas you mentioned the bug description says the timeout happened during post live migration22:04
slaweqoomichi: and I want to know what You think a about it22:04
tdurakovsiva_krishnan: yes, I understand that, the thing is that trying to call rollback here could be very tricky22:05
edleafebauzas: nothing to do with the API22:05
tdurakovE.g. Exception is raised during roll-back itself22:05
edleafebauzas: In the change I referenced you added constraints to the inventory in the fixture that should have made the subsequent allocations invalid22:06
*** sacharya_ has quit IRC22:06
bauzasah right22:06
edleafeWhen I rebased on master these tests started failing, since my code removes Allocation.create()22:06
*** sacharya has joined #openstack-nova22:06
bauzassorry then22:06
edleafebauzas: Oh, don't be22:06
bauzasso only the gabbits are failing22:07
* bauzas whispers22:07
edleafebauzas: I was just saying that the placement code is getting more accurate22:07
*** rama_y has joined #openstack-nova22:07
*** rama_y_ has joined #openstack-nova22:07
siva_krishnantdurakov: ah ok you are right  but I do see that pre_live_migration failure  does the rollback as well22:07
bauzasedleafe: unfortunately, that modification was done by jay, but I didn't reviewed it22:08
tdurakovI'll leave a comment on the patch trying to explain details, pre-step is way more specific, that's why it's safe22:08
bauzasedleafe: thanks for that22:08
*** burgerk has quit IRC22:09
*** jheroux has quit IRC22:10
siva_krishnantdurakov: that helps :).22:10
*** pradk has quit IRC22:14
*** dimtruck is now known as zz_dimtruck22:16
*** catintheroof has quit IRC22:20
*** slaweq has quit IRC22:22
*** thorst has joined #openstack-nova22:24
*** thorst has quit IRC22:24
*** vladikr has quit IRC22:24
*** salv-orlando has joined #openstack-nova22:28
*** tblakes has quit IRC22:30
*** baoli has quit IRC22:32
*** zz_dimtruck is now known as dimtruck22:33
*** tlian has quit IRC22:34
openstackgerritSylvain Bauza proposed openstack/nova: Add ComputeNodeList.get_all_by_uuids method  https://review.openstack.org/41813422:37
openstackgerritSylvain Bauza proposed openstack/nova: WIP: Scheduler calling the Placement API  https://review.openstack.org/41796122:37
*** kfarr has quit IRC22:38
*** marst_ has joined #openstack-nova22:41
*** edmondsw has quit IRC22:42
*** thorst has joined #openstack-nova22:46
*** david-lyle has quit IRC22:51
*** thorst has quit IRC22:53
*** tlian has joined #openstack-nova22:58
*** jamesdenton has quit IRC23:00
*** mdrabe has quit IRC23:00
*** Swami has quit IRC23:02
*** david-lyle has joined #openstack-nova23:03
*** ducttape_ has quit IRC23:07
openstackgerritAnusha Unnam proposed openstack/nova: Add keypairs field to InstancePayload  https://review.openstack.org/41973023:09
*** david-lyle has quit IRC23:10
*** gszasz has quit IRC23:14
*** salv-orlando has quit IRC23:21
*** edmondsw has joined #openstack-nova23:25
*** gouthamr has joined #openstack-nova23:27
*** sdague has quit IRC23:28
*** edmondsw has quit IRC23:30
*** marst_ has quit IRC23:36
*** esberglu has quit IRC23:44
*** esberglu has joined #openstack-nova23:45
*** esberglu has quit IRC23:49
*** dave-mccowan has joined #openstack-nova23:51
*** Kevin_Zheng has joined #openstack-nova23:54
*** diga has joined #openstack-nova23:57

Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!