Friday, 2017-07-21

*** yamamoto has joined #openstack-rally00:03
*** yamamoto has quit IRC00:08
*** kambiz has quit IRC00:10
*** kambiz has joined #openstack-rally00:13
*** itlinux has quit IRC00:17
openstackgerritchenhb proposed openstack/rally master: WIP: add more debug msg to cli tests  https://review.openstack.org/48551900:31
*** LindaWang has joined #openstack-rally00:42
*** dave-mccowan has joined #openstack-rally00:57
*** jkilpatr has quit IRC00:58
*** dave-mcc_ has joined #openstack-rally01:00
*** itlinux has joined #openstack-rally01:02
*** dave-mccowan has quit IRC01:02
openstackgerritzhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndUpdateAttachment scenario  https://review.openstack.org/41817101:28
openstackgerritMa Xinjian proposed openstack/rally master: Add NovaServerGroups.create_and_delete_server_group  https://review.openstack.org/43642901:44
*** ilbot3 has quit IRC01:46
*** ilbot3 has joined #openstack-rally01:49
*** itlinux has quit IRC01:49
*** itlinux has joined #openstack-rally02:04
openstackgerritMa Xinjian proposed openstack/rally master: Add NovaServerGroups.create_and_delete_server_group  https://review.openstack.org/43642902:19
rallydev-bot[From Gitter] shihai1991 : @andreykurilin Hi, andrey. Do you know OpenStack Performance Work-Group's job content?02:33
rallydev-bot[From Gitter] shihai1991 : Do they have the SLO's goal?02:33
*** yamamoto has joined #openstack-rally02:36
*** dave-mcc_ has quit IRC02:42
*** r-daneel has joined #openstack-rally03:07
*** yamamoto has quit IRC03:08
r-daneelhi all, just saw that rally now can run with 'ordinary' users. I created a setup from scratch and added a deployment with --fromenv. do I need to build a configuration file to benefit from that mode ?03:12
r-daneelor can someone point me to a documentation ? (I know the code for this new feature has nerged only a couple of weeks back)03:13
rallydev-bot[From Gitter] shihai1991 : r-daneel: Hi. Using config file or fromenv is the same behavior. Just the input is different.03:30
r-daneelshihai1991, what needs to be changed ? I'm ready to build a file is needed03:31
r-daneels/is/if/03:32
rallydev-bot[From Gitter] shihai1991 : It looks don't effect previous behavior.03:32
rallydev-bot[From Gitter] shihai1991 : About creating deployment from config, we can ref those samples:https://github.com/openstack/rally/tree/master/samples/deployments03:34
r-daneelgreat, that is ok. as for the new feature that requires no admin user, do I just remove the admin section ?03:36
rallydev-bot[From Gitter] shihai1991 : https://review.openstack.org/#/c/474143/11/tests/ci/rally_gate_functions.sh03:43
rallydev-bot[From Gitter] shihai1991 : Looks the config in rally_gate_functions.sh could resolve your probleam.03:45
r-daneellast question: from what version is the admin-less mode supported, I'm on 0.9.1~dev45903:45
rallydev-bot[From Gitter] shihai1991 : looks you are in latest developing master and this patch should be obtained.03:50
r-daneelyou mean, it's included or not ?03:55
r-daneelI just tested, rally deployment check seems to agree, thanks a lot !04:00
boris-42____@r-daneel yep we are going to make soon new release04:24
boris-42____@r-daneel sorry for delays but we need to deprecate some more pieces of rally04:24
boris-42____before we cut the release04:24
r-daneelIt looks great, I was able to run a test successfully. however, seems that cleanup raises an exception still04:25
r-daneel2017-07-21 04:18:50.405 161 WARNING rally.plugins.openstack.cleanup.manager [-] Seems like rally.plugins.openstack.cleanup.resources.NovaServerGroups.list(self) method is broken. It shouldn't raise any exceptions.: NotFound: Not found (HTTP 404) (Request-ID: req-60d18918-be64-4ee3-906c-1ee7f4f19960)04:26
boris-42____@r-daneel hm maybe you just don't have that API?04:26
r-daneelnovaclient receives a 40404:26
boris-42____@r-daneel ya which means that API is not supported04:27
boris-42____@r-daneel we can fix that actually by checking whatever API exists04:27
boris-42____@r-daneel before trying to perform list04:27
boris-42____@r-daneel but it shouldn't actually cause any problem/damage to your cloud04:27
r-daneellist is just a nova list (or openstack server list) I guess ?04:28
r-daneelis it possible that it tries to use servergroups ?04:28
r-daneelI saw that it actually di not fail the rally run, and as it is run as a simple user, it indeed cannot hurt04:29
boris-42____@r-daneel no this is servers group04:29
boris-42____@r-daneel its' no the same as "servers"04:30
boris-42____@r-daneel https://developer.openstack.org/api-ref/compute/04:30
boris-42____https://developer.openstack.org/api-ref/compute/#list-server-groups04:31
boris-42____@r-daneel ^ you see04:31
r-daneelyep, I think we do not support that feature, just sad it triggers an exception04:32
boris-42____@r-daneel wanna fix this/)04:32
r-daneelbut for what I need it for it will be ok :)04:33
boris-42____@r-daneel so wanna fix it?)04:33
boris-42____@r-daneel so you see this is causing the problem https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L164-L16704:35
boris-42____@r-daneel so you need to override this method https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L164-L16704:35
boris-42____@r-daneel that will check that API exists first04:36
boris-42____@r-daneel e.g. if 404 code returned just ingore and return empty list04:36
boris-42____@r-daneel very simple patch =)04:36
r-daneelis there an example where something similar is done ? I really am not a dev, more an op, this will probably take a bit more time for me to delve into04:37
boris-42____@r-daneel I already send you two links where everything is doen04:37
r-daneelit'S twice the same link, no ?04:38
boris-42____https://github.com/openstack/rally/blob/master/rally/plugins/openstack/cleanup/resources.py#L154-L15604:38
boris-42____oh this is second *04:38
boris-42____sorry about that04:38
r-daneel;)04:38
boris-42____@r-daneel so this second one contains list method04:38
boris-42____@r-daneel you basically need to do try - except =)04:38
boris-42____@r-daneel and check if except is related to 404 return empty list04:39
*** yamamoto has joined #openstack-rally04:39
r-daneelboris-42____, so, I buid a try catch around the content of the list method, if I catch an exception, I try to figure out if it's a 404 and return an empty list, right ?04:41
boris-42____@r-daneel ya04:47
boris-42____@r-daneel but you need to make the method in the link 204:47
boris-42____@r-daneel not change that one that exists*04:47
*** yamamoto has quit IRC04:48
r-daneelok, I'll try to check that. it's a bit late now (close to 1 am) but I'll try to check it out on the weekend. thanks for the indication04:49
*** yamamoto has joined #openstack-rally04:51
openstackgerritzhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt  https://review.openstack.org/41824004:52
boris-42____@r-daneel ya sure take your time04:52
boris-42____we don't hurry up =)04:52
r-daneelthanks, good night !04:57
*** r-daneel has quit IRC05:01
*** r-daneel has joined #openstack-rally05:02
*** yamamoto has quit IRC05:15
*** rcernin has quit IRC05:22
*** rcernin has joined #openstack-rally05:36
*** anshul has joined #openstack-rally05:47
*** oanufrii has joined #openstack-rally06:06
openstackgerritBoris Pavlovic proposed openstack/rally master: Improve deprecation warnings  https://review.openstack.org/48598606:22
openstackgerritzhangzhihui proposed openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt  https://review.openstack.org/41824006:41
*** rcernin has quit IRC06:58
*** rcernin has joined #openstack-rally06:58
*** shasha_t_ has quit IRC07:08
*** mpotdar has quit IRC07:08
*** aojea has joined #openstack-rally07:16
*** tesseract has joined #openstack-rally07:16
openstackgerritBoris Pavlovic proposed openstack/rally master: Empty change for testing  https://review.openstack.org/48601707:17
*** oanufrii has quit IRC07:17
*** bhagyashris has quit IRC07:18
openstackgerritBoris Pavlovic proposed openstack/rally master: Empty change for testing  https://review.openstack.org/48601707:18
*** yamamoto has joined #openstack-rally07:20
*** alexchadin has joined #openstack-rally07:26
*** itlinux has quit IRC07:26
*** yamamoto has quit IRC07:42
openstackgerritBoris Pavlovic proposed openstack/rally master: Improve deprecation warnings  https://review.openstack.org/48598608:07
*** serlex has joined #openstack-rally08:28
openstackgerritBoris Pavlovic proposed openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging  https://review.openstack.org/48604508:34
openstackgerritAndrey Kurilin proposed openstack/rally master: [ci] Use not the latest xdist package  https://review.openstack.org/48605008:47
*** bhagyashris has joined #openstack-rally09:19
*** lpetrut has joined #openstack-rally09:23
*** reveller has quit IRC09:38
openstackgerritBoris Pavlovic proposed openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging  https://review.openstack.org/48604509:41
openstackgerritBoris Pavlovic proposed openstack/rally master: Improve deprecation warnings  https://review.openstack.org/48598609:41
*** alexchadin has quit IRC10:11
*** jkilpatr has joined #openstack-rally10:27
*** jkilpatr has quit IRC10:33
*** yamamoto_ has joined #openstack-rally10:48
*** rook has quit IRC10:57
*** sai_ has quit IRC10:57
*** sai has joined #openstack-rally10:58
*** rook has joined #openstack-rally10:58
*** rook is now known as Guest1156210:59
*** jkilpatr has joined #openstack-rally11:09
*** aojea has quit IRC11:22
*** aojea has joined #openstack-rally11:30
*** yamamoto_ has quit IRC11:32
*** aojea has quit IRC11:34
*** aojea has joined #openstack-rally11:39
*** aojea has quit IRC11:43
openstackgerritAndrey Kurilin proposed openstack/rally master: [ci] Use not the latest xdist package  https://review.openstack.org/48605011:47
*** aojea has joined #openstack-rally11:48
*** yamamoto has joined #openstack-rally11:52
*** aojea has quit IRC11:53
*** yamamoto has quit IRC11:56
*** aojea has joined #openstack-rally11:57
*** rallydev-bot2 has joined #openstack-rally11:59
*** rallydev-bot2 has quit IRC12:00
*** rallydev-bot2 has joined #openstack-rally12:00
*** rallydev-bot2 has quit IRC12:00
*** rallydev-bot2 has joined #openstack-rally12:01
*** rallydev-bot2 has quit IRC12:01
*** rallydev-bot2 has joined #openstack-rally12:01
*** aojea has quit IRC12:01
*** rallydev-bot2 has quit IRC12:02
*** rallydev-bot2 has joined #openstack-rally12:02
*** rallydev-bot2 has quit IRC12:03
*** rallydev-bot2 has joined #openstack-rally12:03
*** rallydev-bot2 has quit IRC12:04
*** rallydev-bot2 has joined #openstack-rally12:06
*** aojea has joined #openstack-rally12:06
*** aojea has quit IRC12:09
*** aojea has joined #openstack-rally12:09
*** rallydev-bot2 has quit IRC12:33
*** rallydev-bot2 has joined #openstack-rally12:33
*** rallydev-bot2 has joined #openstack-rally12:34
*** rallydev-bot2 has quit IRC12:35
*** rallydev-bot2 has joined #openstack-rally12:35
*** rallydev-bot2 has quit IRC12:36
*** rallydev-bot2 has joined #openstack-rally12:36
*** rallydev-bot2 has quit IRC12:36
*** rallydev-bot2 has joined #openstack-rally12:36
*** rallydev-bot2 has quit IRC12:40
*** rallydev-bot2 has joined #openstack-rally12:40
*** dave-mccowan has joined #openstack-rally12:41
*** rallydev-bot2 has quit IRC12:41
*** yamamoto has joined #openstack-rally12:42
*** dave-mcc_ has joined #openstack-rally12:46
*** rallydev-bot has quit IRC12:46
*** dave-mccowan has quit IRC12:48
*** yamamoto has quit IRC12:52
*** yamamoto has joined #openstack-rally12:52
*** rallydev-bot has joined #openstack-rally12:57
*** rallydev-bot has quit IRC12:57
*** rallydev-bot has joined #openstack-rally12:58
*** rallydev-bot has quit IRC12:58
*** LindaWang has quit IRC13:02
openstackgerritAndrey Kurilin proposed openstack/rally master: [db] Do not load unused fields  https://review.openstack.org/48225913:08
openstackgerritAndrey Kurilin proposed openstack/rally master: [db] Optimize a db migration  https://review.openstack.org/48443413:08
*** catintheroof has joined #openstack-rally13:25
*** alexchadin has joined #openstack-rally13:25
*** catinthe_ has joined #openstack-rally13:26
*** yamamoto_ has joined #openstack-rally13:28
*** yamamoto_ has quit IRC13:28
*** yamamoto has quit IRC13:28
*** reveller has joined #openstack-rally13:28
*** catintheroof has quit IRC13:30
*** lpetrut has quit IRC13:35
*** anshul has quit IRC13:38
*** alexchadin has quit IRC13:44
*** yamamoto has joined #openstack-rally13:47
*** anshul has joined #openstack-rally14:01
*** anshul has quit IRC14:03
*** anshul has joined #openstack-rally14:03
openstackgerritMerged openstack/rally master: Add nova.BootServerAttachVolumeAndListAttachemnt  https://review.openstack.org/41824014:08
*** Guest11562 is now known as rook14:19
*** r-daneel has quit IRC14:27
*** anshul has quit IRC14:39
*** serlex has quit IRC14:50
*** anshul has joined #openstack-rally14:54
*** itlinux has joined #openstack-rally15:11
*** anshul has quit IRC15:14
*** rcernin has quit IRC15:14
*** r-daneel has joined #openstack-rally15:20
*** aarefiev is now known as aarefiev_afk15:23
*** aojea has quit IRC15:30
*** aojea has joined #openstack-rally15:30
*** anshul has joined #openstack-rally15:31
*** aojea has quit IRC15:35
*** yamamoto has quit IRC15:44
*** yamamoto has joined #openstack-rally15:44
*** yamamoto has quit IRC15:49
*** itlinux has quit IRC16:03
*** anshul has quit IRC16:27
*** itlinux has joined #openstack-rally16:29
*** itlinux has quit IRC16:31
*** lpetrut has joined #openstack-rally16:33
*** anshul has joined #openstack-rally16:42
*** r-daneel has quit IRC16:47
*** dave-mccowan has joined #openstack-rally16:48
*** dave-mcc_ has quit IRC16:50
*** yamamoto has joined #openstack-rally16:50
*** r-daneel has joined #openstack-rally16:59
*** rallydev-bot has joined #openstack-rally17:04
*** rallydev-bot has quit IRC17:05
*** rallydev-bot has joined #openstack-rally17:05
*** yamamoto has quit IRC17:05
rallydev-bot[From Gitter] andreykurilin : test17:06
andreykurilintest17:06
-openstackstatus- NOTICE: Restarting Gerrit for our weekly memory leak cleanup.17:06
*** lpetrut has quit IRC17:16
*** dave-mccowan has quit IRC17:23
*** anshul has quit IRC17:25
*** dave-mccowan has joined #openstack-rally17:26
*** psuriset has quit IRC17:31
*** jkilpatr has quit IRC17:36
*** jkilpatr has joined #openstack-rally17:40
*** rallydev-bot has quit IRC17:42
*** rallydev-bot has joined #openstack-rally17:47
*** rallydev-bot has quit IRC17:47
*** rallydev-bot has joined #openstack-rally17:48
*** psuriset has joined #openstack-rally17:48
openstackgerritMerged openstack/rally master: Improve deprecation warnings  https://review.openstack.org/48598618:31
openstackgerritMerged openstack/rally master: Move tests.unit.test_logging to tests.unit.common.test_logging  https://review.openstack.org/48604518:32
-openstackstatus- NOTICE: docs.o.o is currently broken, we're investigating18:39
*** MasterOfBugs has joined #openstack-rally18:45
*** jkilpatr has quit IRC18:47
*** jkilpatr has joined #openstack-rally18:50
openstackgerritMerged openstack/rally master: [ci] Use not the latest xdist package  https://review.openstack.org/48605019:56
*** catinthe_ has quit IRC19:58
*** aojea has joined #openstack-rally20:01
*** dave-mccowan has quit IRC20:02
*** jkilpatr has quit IRC20:03
*** lpetrut has joined #openstack-rally20:15
*** boris-42____ has quit IRC20:28
*** jkilpatr has joined #openstack-rally20:52
*** lpetrut has quit IRC21:22
openstackgerritBoris Pavlovic proposed openstack/rally master: Rename namespace -> platform in context & validators plugins  https://review.openstack.org/48622921:26
openstackgerritBoris Pavlovic proposed openstack/rally master: Fix Designate job  https://review.openstack.org/48623021:31
*** rallydev-bot has quit IRC21:40
openstackgerritBoris Pavlovic proposed openstack/rally master: Fix Designate job  https://review.openstack.org/48623021:53
openstackgerritBoris Pavlovic proposed openstack/rally master: Rename namespace -> platform in context & validators plugins  https://review.openstack.org/48622922:08
openstackgerritBoris Pavlovic proposed openstack/rally master: Remove namespace from osclient  https://review.openstack.org/48623922:08
openstackgerritBoris Pavlovic proposed openstack/rally master: Remove namespace in osclient module  https://review.openstack.org/48623922:09
*** tesseract has quit IRC22:25
*** aojea has quit IRC22:51
*** aojea has joined #openstack-rally22:52
*** aojea has quit IRC22:56
*** rallydev-bot has joined #openstack-rally23:20
*** rallydev-bot has joined #openstack-rally23:23
*** rallydev-bot has quit IRC23:23
*** rallydev-bot has joined #openstack-rally23:25
*** rallydev-bot has quit IRC23:26
*** rallydev-bot has joined #openstack-rally23:27
*** rallydev-bot has quit IRC23:28
*** rallydev-bot has joined #openstack-rally23:30
*** rallydev-bot has quit IRC23:31
*** r-daneel has quit IRC23:31
*** rallydev-bot has joined #openstack-rally23:34
*** rallydev-bot has joined #openstack-rally23:34
*** rallydev-bot has quit IRC23:35
*** rallydev-bot has joined #openstack-rally23:39
*** catintheroof has joined #openstack-rally23:58

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