Wednesday, 2022-11-09

opendevreviewwanghelin proposed openstack/python-cinderclient master: Fix cinderclient group type update error  https://review.opendev.org/c/openstack/python-cinderclient/+/86408606:59
sfv880Hello, I replied and fixed on https://review.opendev.org/c/openstack/cinder/+/850320 - could you please review? Thank you very much!08:11
opendevreviewXuQi proposed openstack/cinder master: Fujitsu Driver: Change the function of attach/detach  https://review.opendev.org/c/openstack/cinder/+/86099708:15
*** dviroel_ is now known as dviroel09:40
opendevreviewTobias Urdin proposed openstack/cinder master: Set backup status to error on VolumeNotFound  https://review.opendev.org/c/openstack/cinder/+/86410010:15
opendevreviewMerged openstack/cinder master: Update metadata in setup.cfg  https://review.opendev.org/c/openstack/cinder/+/85501310:21
opendevreviewKonrad Gube proposed openstack/cinder-specs master: Use assisted volume extend API  https://review.opendev.org/c/openstack/cinder-specs/+/86402010:33
opendevreviewMerged openstack/os-brick master: Update metadata in setup.cfg  https://review.opendev.org/c/openstack/os-brick/+/85501211:49
whoami-rajatCinder meeting in #openstack-meeting-alt at 1400 UTC13:59
whoami-rajatjungleboyj rosmaita smcginnis tosky whoami-rajat m5z e0ne geguileo eharney walshh_ jbernard sfernand enriquetaso hemna fabiooliveira yuval tobias-urdin adiare13:59
enriquetaso#startmeeting cinder_bs15:00
opendevmeetMeeting started Wed Nov  9 15:00:22 2022 UTC and is due to finish in 60 minutes.  The chair is enriquetaso. Information about MeetBot at http://wiki.debian.org/MeetBot.15:00
opendevmeetUseful Commands: #action #agreed #help #info #idea #link #topic #startvote.15:00
opendevmeetThe meeting name has been set to 'cinder_bs'15:00
enriquetasoHey! 15:00
rosmaitao/15:00
enriquetasoWe have 6 bugs to discuss today15:00
enriquetasoFull list of bugs15:01
enriquetaso#link https://lists.openstack.org/pipermail/openstack-discuss/2022-November/031133.html15:01
enriquetaso#topic  Fail to unify allocation_capacity_gb values among multiple Active-Active Cinder-Volume services 15:01
enriquetaso#link https://bugs.launchpad.net/cinder/+bug/199520415:01
enriquetasoSummary: In Active Active deployments, the allocated_capacity_gb returns the partial stats of the hosts instead of return the total cluster's allocated capacity.15:01
enriquetasoAs far as I can tell: allocated capacity returns the provisioned volumes created by a single pool. [1] If this is correct, that's why the command is returning a different stat every time that's being used. However, this doesn't look cool and should be an alternative for A/A clusters.15:01
enriquetaso[1] https://specs.openstack.org/openstack/cinder-specs/specs/queens/provisioning-improvements.html15:01
enriquetasoAnother thing to highlight is that usually drivers report their stats by pool. For drivers that are not reporting their stats by pool cinder uses the data from the special fixed pool created by _count_allocated_capacity().15:02
enriquetasoThis can be seeing both as a bug and as an new feature.15:02
enriquetasoI know geguileo has been working on this topic for a while. However, maybe another cinder member would like to comment on this15:02
enriquetasoOK, I'll leave some comments on the bug report15:06
enriquetaso#topic cinderclient against wallaby fails to create snapshot 15:07
enriquetaso#link https://bugs.launchpad.net/python-cinderclient/+bug/199588315:07
enriquetasoUsing the latest cinderclient 9.1.0 calling cinder wallaby release, fails to create a snapshot. Because of an invalid input for field/attribute force, the value is None. And None is not of type 'boolean', 'string'.15:07
enriquetasoThere were two proposed fixes but one was abandon a couple hours ago15:08
enriquetasoFix proposed to master15:08
enriquetaso#link https://review.opendev.org/c/openstack/python-cinderclient/+/86402715:08
enriquetasoI left a comment rosmaita 15:08
rosmaitaok, thanks!15:09
enriquetasomoving on15:09
enriquetaso#topic Failed to create multiple instances with boot volumes at the same time in version 20.0.2.dev11. 15:09
enriquetaso#link https://bugs.launchpad.net/cinder/+bug/199586315:09
enriquetasoThe reporter is not able to boot multiple instances from multiple boot volumes at the same time. The reported mentioned that trying a lower version like cinder 19.1.1 solves the problem.15:09
enriquetasonot sure how to proceed 15:09
enriquetasoMaybe a volunteer to reproduce this?15:09
enriquetasoI'm not sure if I can catch this with unittest 15:10
eharneythe NoneType errors hint at a driver bug15:10
rosmaitaenriquetaso: probably not, eharney: my thoughts as well15:10
rosmaitaso 20.x is yoga, and 19.x is zena15:11
enriquetasoxena15:12
enriquetasoeharney, what does it means?15:13
eharneyit means that the 3par driver owners should look at it15:13
enriquetasogreat, thanks eharney 15:13
enriquetaso#action(enriquetaso): update bug report15:14
enriquetasomoving on15:14
rosmaitalooks like no change in the 3par driver between yoga and xena15:14
enriquetaso#topic Backup fails with VolumeNotFound but not set to error 15:14
enriquetaso#link https://bugs.launchpad.net/cinder/+bug/199604915:14
enriquetasoThe below is for the Xena release, the actual race should be semi-fixed by the patch to the bug https://bugs.launchpad.net/cinder/+bug/1970768 in Zed15:14
enriquetasoWhen the backup fails we try to set the volume status but if the volume does not exist we fail on that so the backup is never set to "error" and will be in "creating" state forever until cloud admin fixes the status.15:14
enriquetasoFix proposed to master:15:15
enriquetaso#link https://review.opendev.org/c/openstack/cinder/+/86410015:15
eharneynice find, the fix looks sensible from a quick look15:15
enriquetasoyes.. i was looking at it but we should be careful 15:16
rosmaitagood point, but it looks like we are already saving and reraising the exception that caused the backup to fail15:18
rosmaitaso i think it's probably OK to just swallow the volume-not-found15:19
enriquetasosounds fine.. maybe we can continue the discussion on the patch15:20
opendevreviewEric Harney proposed openstack/python-cinderclient master: Tests: add coverage for shell group_type_update  https://review.opendev.org/c/openstack/python-cinderclient/+/86330315:20
rosmaitasure15:21
enriquetasothanks rosmaita 15:21
enriquetasoOK, I have marked the last two bugs as incomplete but I think worth the mention:15:21
enriquetaso#topic  reimage results to stuck in downloading state 15:21
enriquetaso#link https://bugs.launchpad.net/cinder/+bug/199583815:21
enriquetasoThe user reported that if we are trying to "reimage" a volume (I'm not quite sure if we is trying to reuse the volume with a different image) with a bigger image that the volume allows, the volume gets stuck in downloading state instead of failing. 15:21
enriquetasomaybe i should ask the reporter if the images are encrypted because that would involved the rekey, right? eharney 15:22
enriquetasonot sure if that helps but..15:22
eharneyi suspect it isn't that15:23
eharneywe should try this w/ nova reimage and see what happens15:23
eharney(to get some logs, etc)15:23
opendevreviewEric Harney proposed openstack/os-brick master: encryptors: Unbind LuksEncryptor and CryptsetupEncryptor  https://review.opendev.org/c/openstack/os-brick/+/79127115:24
enriquetaso#action: try this w/ nova reimage and see what happens (to get some logs, etc)15:24
enriquetasothanks eharney 15:24
enriquetaso#topic  Volume State Update Failed After Backup Completed 15:24
enriquetaso#link https://bugs.launchpad.net/cinder/+bug/199603915:24
enriquetasoI've market this bug report as incomplete until the reporter provide more information of the version and backend that is being used.15:24
enriquetasoSummary:15:24
enriquetasoGenerally, after the backup is created, the state of the volume will be reset to the state before the backup. However, if we create a backup of a volume with status 'in-use'(attached to an instance). When backup creating, the instance get deleted, status will be set to in-use by error, but not reset to available.15:24
enriquetasoWhen an instance is deleted, the volume will be detached, and the volume status will be set to available. After that, the volume backup is completed, and the status of the volume is reset to in-use. The bug is caused by this.15:24
eharneythis is presumably around the whole issue of trying to use the volume status field to communicate the success/failure of backup operations15:25
eharneyif we're doing that, we should see if we can stop doing that15:25
enriquetasogood point, haven't thought in that..15:26
enriquetasoOK, ill add a comment on the bug regarding this so we could focus on why is really falling 15:30
enriquetasothanks everyone 15:30
enriquetaso#endmeeting15:30
opendevmeetMeeting ended Wed Nov  9 15:30:24 2022 UTC.  Information about MeetBot at http://wiki.debian.org/MeetBot . (v 0.1.4)15:30
opendevmeetMinutes:        https://meetings.opendev.org/meetings/cinder_bs/2022/cinder_bs.2022-11-09-15.00.html15:30
opendevmeetMinutes (text): https://meetings.opendev.org/meetings/cinder_bs/2022/cinder_bs.2022-11-09-15.00.txt15:30
opendevmeetLog:            https://meetings.opendev.org/meetings/cinder_bs/2022/cinder_bs.2022-11-09-15.00.log.html15:30
*** dviroel is now known as dviroel|lunch15:50
opendevreviewEric Harney proposed openstack/os-brick master: Remove eventlet from requirements  https://review.opendev.org/c/openstack/os-brick/+/86330415:51
opendevreviewBrian Rosmaita proposed openstack/cinderlib master: Open cinderlib for zed development  https://review.opendev.org/c/openstack/cinderlib/+/84884615:55
*** dviroel|lunch is now known as dviroel16:46
andrewbogott_I don't mean to be a pest but I absolutely cannot figure out how to get attention on my bugfix at https://review.opendev.org/c/openstack/cinder/+/861566. Likely I'm the only deployment actually trying to use that backend for anything but I'd still love a review and/or merge.16:54
opendevreviewSimon Dodsley proposed openstack/cinder master: [Pure Storage] Add support for 3-site, trisync, replication.  https://review.opendev.org/c/openstack/cinder/+/86236517:02
opendevreviewEric Harney proposed openstack/python-cinderclient master: Move print operations to shell_utils  https://review.opendev.org/c/openstack/python-cinderclient/+/86330517:56
opendevreviewMerged openstack/cinder stable/yoga: rbd: Fix snapshot delete when the source volume doesn't exist  https://review.opendev.org/c/openstack/cinder/+/85846318:10
opendevreviewSimon Dodsley proposed openstack/cinder master: [Pure Storage] Add support for 3-site, trisync, replication.  https://review.opendev.org/c/openstack/cinder/+/86236518:30
opendevreviewMerged openstack/cinder master: Add doc8 check to docs builds  https://review.opendev.org/c/openstack/cinder/+/85070019:10
opendevreviewMerged openstack/python-cinderclient master: Handle downgraded client for snapshot-create  https://review.opendev.org/c/openstack/python-cinderclient/+/86402719:38
*** dviroel is now known as dviroel|biba19:51
*** dviroel|biba is now known as dviroel|biab19:51
opendevreviewBrian Rosmaita proposed openstack/python-cinderclient stable/zed: Handle downgraded client for snapshot-create  https://review.opendev.org/c/openstack/python-cinderclient/+/86404720:51

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