Wednesday, 2021-07-28

opendevreviewhaixin proposed openstack/python-manilaclient master: Manila client suppot recycle bin  https://review.opendev.org/c/openstack/python-manilaclient/+/80142401:02
opendevreviewhaixin proposed openstack/manila-tempest-plugin master: Add tests for manila recycle bin  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80264401:55
opendevreviewGoutham Pacha Ravi proposed openstack/manila-tempest-plugin master: Fix incorrect cephfs related test skip logic  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80264602:28
opendevreviewGoutham Pacha Ravi proposed openstack/manila-tempest-plugin master: Fix incorrect cephfs related test skip logic  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80264602:30
gouthamrugh02:30
opendevreviewGoutham Pacha Ravi proposed openstack/manila-tempest-plugin master: Fix incorrect cephfs related test skip logic  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80263602:32
opendevreviewhaixin proposed openstack/manila-tempest-plugin master: Add tests for manila recycle bin  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80264402:57
opendevreviewGoutham Pacha Ravi proposed openstack/puppet-manila master: Drop tenant_id templating from v2 endpoint  https://review.opendev.org/c/openstack/puppet-manila/+/80265605:56
opendevreviewGoutham Pacha Ravi proposed openstack/puppet-manila master: Drop tenant_id templating from v2 endpoint  https://review.opendev.org/c/openstack/puppet-manila/+/80265606:10
opendevreviewArchana Kumari proposed openstack/python-manilaclient master: [OSC] Implement Share Group Commands  https://review.opendev.org/c/openstack/python-manilaclient/+/80174007:04
opendevreviewhaixin proposed openstack/manila-tempest-plugin master: Add tests for manila recycle bin  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80264407:16
*** diablo_rojo__ is now known as diablo_rojo09:33
opendevreviewhaixin proposed openstack/python-manilaclient master: Manila client suppot recycle bin  https://review.opendev.org/c/openstack/python-manilaclient/+/80142410:08
fzzf1I'm doing tempest test on driver, I have encountered two types of problems.https://paste.opendev.org/show/807758/. At the end is my tempest.conf  1.Timeout problem occurs when create share or delete share, I guess if it's due to server responds slowly? What parameters can be configured to prevent timeout? 2. share type can't be delete, display {'code': 400, 'message': 'Target share type is still in use.'} . when run 'manila type-list', there are 11:25
fzzf1many named tempest-*- type, can't be deleted for the same reason 'Target share type is still in use'.  11:25
opendevreviewLuisa proposed openstack/python-manilaclient master: Fix issue while creating share from snapshot  https://review.opendev.org/c/openstack/python-manilaclient/+/80186611:38
carlosso/ fzzf1: your tests are failing on the teardown of the class, and also seems that your shares aren't getting available. Tempest tries to set up shares for tests using the backend stanzas you add in the manila.conf file11:41
carlossIn your case, the issue does not seem to be on tempest... It seems to be on the shares creation. Manila won't allow a share type to be deleted if a share is not deleted11:42
carlossto list all shares, you can try to run manila list --all-tenants, and then if there are shares stuck there, you can try to delete them11:42
carlosss/Manila won't allow a share type to be deleted if a share is not deleted/Manila won't allow a share type to be deleted if all shares tied to the type are not deleted11:44
fzzf1carloss: oh, I'm using manila list before, Now I run manila list --all-tenants,it show many tempest's named share.11:45
carlossI'd recommend you to check the logs of the services to see what are the errors and try to see what is causing them. You can do so by using journalctl and capturing the logs of the unit11:46
carlossfzzf1: what are the shares' status?11:50
fzzf1carloss: according to running error show. It seems like Time out when creat share or delete share, If you see this  https://paste.opendev.org/show/807758/ ,I am thinking how to make tempest's request to the backend slower to prevent timeout occur out.11:51
fzzf1carloss: it shows , half available and half error-deleting11:52
fzzf1 carloss: Should I use journalctl devstack@m-shr or devstack@m-sch?11:54
carloss> I'd recommend you to check the logs of the services to see what are the errors and try to see what is causing them. You can do so by using journalctl and capturing the logs of the unit11:55
carlossexample: keep one terminal tab listening to each manila service unit log using journalctl... the services are: devstack@m-api.service, devstack@m-sch.service and devstack@m-shr.service11:55
carlossso you'd be using `journalctl -afu devstack@m-api.service` and so on...11:55
carloss then execute a single test or even try to execute the tests of a single file, to see if an issue occurs... then you'd need to check if there are errors displayed in the screen files11:56
carlossyou can use the regex that failed and you posted in your paste: `tempest run -r manila_tempest_tests.tests.api.test_access_rules_metadata.AccessRulesMetadataTest`11:56
fzzf1carloss: I hava testd two of a single file due to timeout before. it success. I am going to delete error share ,try again and monitor the log12:03
fzzf1carloss: when I run 'manila delete share' , it need group id, How I confirm Which group the share corresponds to12:12
carlosswhat's the error shown in the CLI?12:14
carlossfzzf1: if you want to confirm, you can use manila show share_id and it will display the share info12:15
fzzf1carloss:Delete for share 73891edd-b94d-4fdb-b776-fdb62386884a failed: Must provide 'share_group_id' as a request parameter when deleting a share in a share group. 12:17
carlosshttps://opendev.org/openstack/manila/src/branch/master/manila/api/v1/shares.py#L8012:24
carlossyeah, you'll need to provide the share group when deleting shares related to a group12:24
carlossfzzf1: I have a question though: the backend driver you are using supports share groups?12:25
fzzf1no12:25
carlossif not, you'd need to have run_share_group_tests set to False as well12:25
carlossbecause it defaults to true, and if you don't set it to false, tempest will try to run the share group tests and they will fail, considering that the driver does not handle it12:26
fzzf1carloss:okay, I understand it. thanks.12:28
carlossyou're welcome fzzf1 :)12:28
opendevreviewMerged openstack/manila-tempest-plugin master: Fix parsing of share group type json  https://review.opendev.org/c/openstack/manila-tempest-plugin/+/80263213:51
opendevreviewAshley Rodriguez proposed openstack/manila master: Update api-ref documentation  https://review.opendev.org/c/openstack/manila/+/80165314:21
diablo_rojogouthamr, can haz manila operator/user pain points? https://etherpad.opendev.org/p/pain-point-elimination14:40
diablo_rojoOh wow nvm14:40
diablo_rojoetherpad just decided to show me you already added things14:41
diablo_rojolol14:41
diablo_rojomy bad14:41
gouthamrdiablo_rojo: :) yes - added one after your ping yesterday - we may have some more feedback this week, we asked in the team irc meeting last week14:42
gouthamrdiablo_rojo: thank you for checking! Is there a deadline to add this info?14:43
diablo_rojoAs soon as possible? I think we will be deciding on goals soon, but the hard part is actually getting all projects to name something to work on. 14:44
diablo_rojoJust maybe let me know if you add/edit things?> 14:44
diablo_rojoThat should be fine. 14:44
gouthamrdiablo_rojo: +1, will do14:45
diablo_rojogouthamr, thank you!14:47
opendevreviewStephen Finucane proposed openstack/manila master: tests: Remove use of 'oslo_db.sqlalchemy.test_base'  https://review.opendev.org/c/openstack/manila/+/80276317:08
opendevreviewArchana Kumari proposed openstack/python-manilaclient master: [OSC] Implement Share Group Snapshot Commands  https://review.opendev.org/c/openstack/python-manilaclient/+/80279119:01
opendevreviewArchana Kumari proposed openstack/python-manilaclient master: [OSC] Implement Share Group Snapshot Commands  https://review.opendev.org/c/openstack/python-manilaclient/+/80279119:07
opendevreviewMerged openstack/manila master: tests: Remove use of 'oslo_db.sqlalchemy.test_base'  https://review.opendev.org/c/openstack/manila/+/80276320:20
opendevreviewMerged openstack/manila master: Add documentation for per share gigabytes quotas  https://review.opendev.org/c/openstack/manila/+/78574420:21
opendevreviewMerged openstack/manila stable/victoria: init_host should be called before RPC consumer is created  https://review.opendev.org/c/openstack/manila/+/80038021:38
opendevreviewMerged openstack/manila master: Add missing share-type user message  https://review.opendev.org/c/openstack/manila/+/80056122:25
opendevreviewMerged openstack/manila master: Update api-ref documentation  https://review.opendev.org/c/openstack/manila/+/80165322:25

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