Wednesday, 2021-02-17

*** brinzhang has joined #openstack-sdks01:10
*** ricolin has joined #openstack-sdks01:29
openstackgerritAshley Rodriguez proposed openstack/openstacksdk master: Add resource to shared file system  https://review.opendev.org/c/openstack/openstacksdk/+/77570701:51
*** khomesh24 has joined #openstack-sdks03:42
*** khomesh24 has quit IRC03:42
*** khomesh24 has joined #openstack-sdks03:43
*** udesale has joined #openstack-sdks04:08
*** ricolin has quit IRC04:16
openstackgerritMerged openstack/ansible-collections-openstack master: Bump dev version in galaxy.yml  https://review.opendev.org/c/openstack/ansible-collections-openstack/+/77592004:53
openstackgerritAdit Sarfaty proposed openstack/python-openstackclient stable/victoria: Remove None valued network quota entries  https://review.opendev.org/c/openstack/python-openstackclient/+/77590504:54
openstackgerritAdit Sarfaty proposed openstack/python-openstackclient stable/ussuri: Remove None valued network quota entries  https://review.opendev.org/c/openstack/python-openstackclient/+/77590604:55
openstackgerritAdit Sarfaty proposed openstack/python-openstackclient stable/train: Remove None valued network quota entries  https://review.opendev.org/c/openstack/python-openstackclient/+/77590704:55
*** evrardjp has quit IRC05:33
*** evrardjp has joined #openstack-sdks05:33
*** enriquetaso has quit IRC05:41
*** whoami-rajat__ has joined #openstack-sdks06:12
*** ricolin has joined #openstack-sdks06:29
*** mnaser has quit IRC06:32
*** mnaser has joined #openstack-sdks06:34
*** ralonsoh has joined #openstack-sdks06:41
*** slaweq has joined #openstack-sdks07:07
*** gtema has joined #openstack-sdks08:00
*** ricolin has quit IRC08:08
*** rpittau|afk is now known as rpittau08:12
*** ricolin_ has joined #openstack-sdks08:12
*** ricolin_ is now known as ricolin08:17
*** ysandeep|away is now known as ysandeep|ruck08:50
*** jpich has joined #openstack-sdks08:58
*** tosky has joined #openstack-sdks09:14
*** udesale_ has joined #openstack-sdks09:16
*** udesale has quit IRC09:20
*** tosky_ has joined #openstack-sdks09:20
*** tosky has quit IRC09:24
*** udesale__ has joined #openstack-sdks09:25
*** tosky_ is now known as tosky09:25
*** udesale_ has quit IRC09:27
*** udesale_ has joined #openstack-sdks09:46
*** evrardjp has quit IRC09:46
*** evrardjp has joined #openstack-sdks09:48
*** udesale__ has quit IRC09:49
*** udesale__ has joined #openstack-sdks09:51
*** udesale_ has quit IRC09:54
*** dtantsur|afk is now known as dtantsur10:01
*** jpich has quit IRC10:50
*** jpich has joined #openstack-sdks10:50
*** gtema has quit IRC11:02
*** gtema has joined #openstack-sdks11:12
*** sshnaidm has quit IRC11:15
*** gtema has quit IRC11:17
*** gtema has joined #openstack-sdks11:18
*** sshnaidm has joined #openstack-sdks11:18
*** gtema has quit IRC11:23
*** gtema has joined #openstack-sdks11:33
openstackgerritTosin Farai proposed openstack/ansible-collections-openstack master: Add support for node VIFs  https://review.opendev.org/c/openstack/ansible-collections-openstack/+/77463511:33
*** gtema has quit IRC11:33
*** gtema has joined #openstack-sdks11:34
openstackgerritTosin Farai proposed openstack/ansible-collections-openstack master: Add support for node VIFs  https://review.opendev.org/c/openstack/ansible-collections-openstack/+/77463512:00
*** jpich has quit IRC12:00
*** jpich has joined #openstack-sdks12:00
openstackgerritAnuradha proposed openstack/openstacksdk master: Improve Ironic API on OpenStack SDK  https://review.opendev.org/c/openstack/openstacksdk/+/76653112:50
*** gtema has quit IRC12:58
*** gtema has joined #openstack-sdks13:00
*** frenzy_friday is now known as frenzy_friday|br13:05
*** frenzy_friday|br is now known as frenzyfriday13:07
*** frenzyfriday is now known as frenzy_friday13:07
tobiashhi, did someone in the past had the issue that openstacksdk ran onto an infinite paging loop with the same marker when requesting the server list?13:11
gtemanope13:11
gtemaI think this can happen if server responds wrongly13:11
tobiashwe just lost one nodepool region because of that and resolved it for now by upping the max page side on nova13:11
gtemado you have some API logs (from SDK side)?13:12
tobiashnot anymore, but I've injected request logging which looked like this: http://paste.openstack.org/show/802733/13:14
tobiashI guess the links section in the nova response kept a wrong next link then13:14
gtemamost likely. Any updates (SDK, Nova, etc) happened?13:15
tobiashno, just were the first time >1000 nodes in one tenant13:16
tobiashI have to say it's a pretty old nova13:16
gtemaokay. Will try to simulate locally13:16
gtemaI know we have lot's of cases with completely corrupted pagination implementation13:16
gtemaI will try to implement some safeguarding for that13:17
tobiashin a different cloud using the same version it works normally13:17
tobiashI would guess maybe towards some inconsistent data due to earlier failures (had some rabbitmq issues in the past)13:18
gtematja, looks really more a nova issue, than SDK13:18
tobiashI guess so, thanks for confirming13:19
gtemawlcm, will anyway have a look whether we can protect from that13:20
*** jpich has quit IRC13:21
*** jpich has joined #openstack-sdks13:21
*** enriquetaso has joined #openstack-sdks13:27
*** khomesh24 has quit IRC13:30
tobiashI think we might have been hit by https://bugs.launchpad.net/nova/+bug/172179113:31
openstackLaunchpad bug 1721791 in OpenStack Compute (nova) "Pagination of instances works incorrect" [High,Fix released] - Assigned to Dan Smith (danms)13:31
gtemaok. Any chance to get fix done on the cloud or we really need to have local fix for that?13:32
gtemaat least we can prevent ourselves querying with the same marker and aborting13:33
tobiashwe have a local workaround by config fix and my cloud guys are already in contact with our vendor to check if we can get a backport of the fix (we're still on 16.1.x)13:34
tobiashso I think we don't need to workaround that in openstacksdk13:34
tobiashhowever it was hard to find that issue since we got no exception anywhere, just stuck services13:35
tobiashso I think an abort with an error when we get repeatedly the same marker might be useful for others to spot such issues easier13:35
gtemasure13:36
*** ysandeep|ruck is now known as ysandeep|mtg14:01
openstackgerritArtem Goncharov proposed openstack/openstacksdk master: Prevent the endless loop in resource listing  https://review.opendev.org/c/openstack/openstacksdk/+/77620314:12
openstackgerritArtem Goncharov proposed openstack/openstacksdk master: Set resource URI properties in listing method  https://review.opendev.org/c/openstack/openstacksdk/+/77620514:25
*** brinzhang has quit IRC14:55
*** brinzhang has joined #openstack-sdks14:55
*** jpich has quit IRC14:56
*** jpich has joined #openstack-sdks14:57
*** brinzhang has quit IRC14:57
*** brinzhang has joined #openstack-sdks14:58
*** slaweq has quit IRC15:00
openstackgerritArtem Goncharov proposed openstack/openstacksdk master: Switch cloud.networking.qos* operations to rely on proxy layer  https://review.opendev.org/c/openstack/openstacksdk/+/77094515:00
*** slaweq has joined #openstack-sdks15:04
*** ysandeep|mtg is now known as ysandeep|ruck15:44
openstackgerritShnaidman Sagi (Sergey) proposed openstack/ansible-collections-openstack master: Add Octavia job for testing LB  https://review.opendev.org/c/openstack/ansible-collections-openstack/+/77261315:48
*** twilit_dragon has joined #openstack-sdks15:51
*** ysandeep|ruck is now known as ysandeep|dinner16:08
*** udesale__ has quit IRC16:21
*** jpich has quit IRC16:31
*** jpich has joined #openstack-sdks16:32
openstackgerritArtem Goncharov proposed openstack/openstacksdk master: Set resource URI properties in listing method  https://review.opendev.org/c/openstack/openstacksdk/+/77620516:51
openstackgerritTosin Farai proposed openstack/ansible-collections-openstack master: Add support for node VIFs  https://review.opendev.org/c/openstack/ansible-collections-openstack/+/77463516:52
*** slaweq has quit IRC16:53
openstackgerritYadnesh Kulkarni proposed openstack/python-openstackclient master: Make instance reset-state an interactive operation  https://review.opendev.org/c/openstack/python-openstackclient/+/77624217:08
*** dtantsur is now known as dtantsur|afk17:17
*** ysandeep|dinner is now known as ysandeep|ruck17:29
*** jpich has quit IRC17:31
*** gtema has quit IRC17:39
*** rpittau is now known as rpittau|afk17:41
*** ralonsoh has quit IRC17:54
openstackgerritMerged openstack/openstacksdk master: Add ALPN support to load balancer pools  https://review.opendev.org/c/openstack/openstacksdk/+/75209717:59
*** ysandeep|ruck is now known as ysandeep|away18:10
*** slaweq has joined #openstack-sdks18:23
*** diablo_rojo has joined #openstack-sdks18:32
diablo_rojostephenfin, around?18:33
stephenfinyes, but I'm about to head off. What's up?18:34
diablo_rojostephenfin, loooks like all the glance stuff is already in the sdk18:35
stephenfineverything?18:35
diablo_rojoSo we could try to do the OSC stuff or we can have zimmerry work on another service in the SDK18:35
diablo_rojoLol18:35
diablo_rojoYeah that was my reaction too18:35
stephenfinoh, wow18:37
stephenfinokay then18:37
stephenfinI'm good with either OSC or SDK. I personally know more about the former, but I'm sure we could wrangle something up with the latter18:38
stephenfinI know nova definitely has gaps. gtema has been working on fixing them18:38
diablo_rojoI wonder if he has a list of whats missing somewhere18:39
diablo_rojoI know I had asked him for that before18:39
diablo_rojobut I think he said it was just all in his head18:39
mordreddiablo_rojo, stephenfin: I can also try to help come up with some lists of things to do18:41
diablo_rojostephenfin, if you know of something specific that needs to happen zimmerry could work on that and then in the interim I could catch gtema and see if he wants additional help.18:41
diablo_rojomordred, sure!18:42
diablo_rojoHit me with a list :)18:42
stephenfinnoice18:42
stephenfinI can take a look too (tomorrow), but mordred would be much faster, heh18:42
mordredone of the things that might be useful (but might be too much as a beginning task) realted to compute would be to walk through each of the nova microversions and make sure we have sdk level support for whatever the microversion is18:42
mordreda lot of time it just means adding some field18:42
mordredbut ... that also might be mind-melting18:43
* mordred goes to ponder18:43
diablo_rojomordred, doable, but something a little less.. like pulling out ones fingernails would be better lol18:43
diablo_rojobut also can do that if thats where the need is lol18:44
mordred:)18:44
diablo_rojostephenfin, maybe tomorrow we could find a time to do a quick meeting to talk about what would be involved in the OSC for getting glance stuff implemented18:46
stephenfinsure, sounds good to me18:47
stephenfinstick something in my calendar18:47
diablo_rojostephenfin, time preference?18:48
stephenfinprobably before or after the other meeting?18:48
diablo_rojostephenfin, need an hour? or 30 min?18:49
stephenfin30 should be good18:49
stephenfinI think18:49
diablo_rojo..how about we do the meetings in parallel? lol18:49
diablo_rojoHow about 14:30 UTC18:50
diablo_rojostephenfin, ^18:50
diablo_rojomordred, if you come up with something later on today, let me & zimmerry know as well.18:54
mordreddiablo_rojo: will do!18:56
diablo_rojomordred, do you have an example patch we could look at?19:00
diablo_rojo(I am looking but you might be faster)19:00
*** twilit_dragon has quit IRC19:00
openstackgerritThiago Paiva Brito proposed openstack/openstacksdk master: Adding resize_volume to BlockStorageCloudMixin  https://review.opendev.org/c/openstack/openstacksdk/+/77625519:10
openstackgerritThiago Paiva Brito proposed openstack/openstacksdk master: Adding resize_volume to BlockStorageCloudMixin  https://review.opendev.org/c/openstack/openstacksdk/+/77625519:15
diablo_rojozimmerry, I found one! https://review.opendev.org/c/openstack/openstacksdk/+/75020019:16
diablo_rojozimmerry, and another! https://review.opendev.org/c/openstack/openstacksdk/+/74167419:17
*** slaweq has quit IRC19:20
openstackgerritAnuradha proposed openstack/openstacksdk master: Improve Ironic API on OpenStack SDK  https://review.opendev.org/c/openstack/openstacksdk/+/76653119:32
*** gtema has joined #openstack-sdks19:40
*** gtema has quit IRC19:44
openstackgerritThiago Paiva Brito proposed openstack/openstacksdk master: Add set_readonly_volume to BlockStorageCloudMixin  https://review.opendev.org/c/openstack/openstacksdk/+/77626620:14
*** slaweq has joined #openstack-sdks20:46
openstackgerritJames Palmer proposed openstack/openstacksdk master: WIP Add support for Resource Filters  https://review.opendev.org/c/openstack/openstacksdk/+/77627120:50
openstackgerritJames Palmer proposed openstack/openstacksdk master: WIP Add support for Resource Filters  https://review.opendev.org/c/openstack/openstacksdk/+/77627120:56
openstackgerritJames Palmer proposed openstack/openstacksdk master: WIP Add support for Resource Filters  https://review.opendev.org/c/openstack/openstacksdk/+/77627120:57
openstackgerritThiago Paiva Brito proposed openstack/openstacksdk master: Adding retype_volume to BlockStorageCloudMixin  https://review.opendev.org/c/openstack/openstacksdk/+/77627221:06
openstackgerritThiago Paiva Brito proposed openstack/openstacksdk master: Add set_readonly_volume to BlockStorageCloudMixin  https://review.opendev.org/c/openstack/openstacksdk/+/77626621:07
*** eandersson has quit IRC21:40
openstackgerritAde Lee proposed openstack/openstacksdk master: Add TODO to remove md5 wrapper  https://review.opendev.org/c/openstack/openstacksdk/+/77628121:40
ade_leefungi, stephenfin ^^21:40
*** gmann is now known as gmann_afk21:51
fungithanks21:56
*** slaweq has quit IRC22:02
*** whoami-rajat__ has quit IRC22:09
*** jistr has quit IRC23:20
*** jistr has joined #openstack-sdks23:21
*** gmann_afk is now known as gmann23:22

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!