Saturday, 2013-12-07

openstackgerritA change was merged to openstack-infra/config: Mark puppet 3.0 unit tests as non-voting  https://review.openstack.org/6063500:01
*** bnemec has joined #openstack-infra00:02
*** jerryz has quit IRC00:02
openstackgerritRandall Burt proposed a change to openstack-infra/config: Adding non-core plugin tests to Heat gate  https://review.openstack.org/6064200:03
*** melwitt has quit IRC00:05
*** bnemec has quit IRC00:06
sdagueclarkb: wimp :)00:06
sdagueit's going to be a little cold here too, that's what hiking is for00:06
clarkbsdague: -2C is the high for tomorrow00:06
*** herndon has quit IRC00:07
clarkbwe are typically spoiled with warmish winters in the northwest, comes iwth rain but warm00:07
fungiclarkb: jacket weather? in the pacific northwest? crazy00:07
fungi0c is when i put on a jacket. 0f is when i wear a coat. it IS december, after all00:08
sdague37F high tomorrow here00:08
fungii can't complain. got up to 26c (70f) here today00:09
fungierm 69f00:09
fungi79f00:09
sdaguethat's crazy pants00:10
* fungi gives up on keyboards00:10
*** markmcclain has joined #openstack-infra00:10
fungiyes, crazynotdecemberweather here for some reason00:10
*** markmcclain has quit IRC00:10
fungiit's not like we're *that* far from ny. i blame the jet stream00:11
*** randallburt has quit IRC00:12
fungi22c/72f outside right now, well after sundown00:12
*** dims has quit IRC00:12
*** randallburt has joined #openstack-infra00:13
openstackgerritA change was merged to openstack-infra/config: fix alias order for elastic-recheck  https://review.openstack.org/6064000:15
clarkbfungi: that is ridiculous00:15
sdaguefungi: yeh it was pretty warm last night00:17
sdaguehttp://www.wunderground.com/weatherstation/WXDailyHistory.asp?ID=KNYPOUGH700:17
sdaguethe temp drop at 4am is pretty amusing00:18
*** bnemec has joined #openstack-infra00:18
fungithat's when they wash the sensor00:19
sdague:)00:19
clarkbsdague: o_O it is that warm for you too?00:19
sdagueclarkb: in dec, yes00:19
*** zehicle has joined #openstack-infra00:19
clarkbthat acutally isn't too bad00:19
sdague40s are more usual for early dec. 50s is definitely warm.00:19
*** melwitt has joined #openstack-infra00:20
*** zehicle_at_dell has quit IRC00:22
*** bnemec has quit IRC00:24
*** bnemec has joined #openstack-infra00:24
openstackgerritRandall Burt proposed a change to openstack-infra/config: Adding non-core plugin tests to Heat gate  https://review.openstack.org/6064200:28
lifelessgeekinutah: hi00:28
*** rnirmal has quit IRC00:29
lifelessmordred: whats the list-tests issue?00:29
clarkblifeless: two things. whether test discover failing should result in failed tests (apparently it does now, but tempest wasn't doing it right), and whether or not discovering 0 tests successfully should fail00:30
clarkbbecause running 0 tests successfully is never what you want00:30
clarkbexcept for the case that fungi noted00:30
fungi(except sometimes when it is, right)00:31
*** harlowja has joined #openstack-infra00:31
lifelessso, if discovery fails, list-tests should exit non-zero00:31
fungiand seems to00:31
lifelessit wasn't in testtools and thus subunit, I fixed that last week00:31
clarkblifeless: it does, tempest broke it external to testr/discover00:31
lifelessit would fail if you didn't use discover00:31
fungitl;dr, wrappers hard00:31
lifelessthis was a feature in a way, but we needed more introspection00:32
*** pabelanger_ has quit IRC00:32
lifelessso there is a bug upstream about that00:32
*** bnemec has quit IRC00:32
lifelesstestr looks for list-tests exiting non-zero as additional signal for quite some time now00:32
fungii think the only outstanding concern is one which might be met with a --fail-on-empty flag to insist that you really do want to run at least one test and exit nonzero if you don't00:32
lifelesscan I check00:33
lifelessdo you mean 'discover finds 0 tests but doesn't fail'00:33
lifelessor do you mean00:33
lifeless'discover finds lots of tests but the user regex selects 0' ?00:33
fungithat00:33
fungior discover finds 0 tests too, possibly00:34
fungibasically comfort option for people afraid they might fat-finger a filter in automation or run in the wrong directory00:34
fungisafeguard against accidentally not running any tests00:34
lifelessso, I think I've said before I'm open to policy knobs00:35
clarkbpuppet restarted on status.o.o00:35
fungilifeless: right, which is why i said i think it's solvable. and people who are really, really concerned about it could offer up a patch00:35
lifelessyeah00:35
lifelessits a None vs [] thing00:36
lifelessNone is a bug, [] is valid00:36
lifelessI accept that for some people [] is invalid00:36
*** dkliban_ has quit IRC00:36
clarkbI just started another image build in dfw, this one looks like it might actually work00:37
fungilifeless: there is an argument that the chance you meant to run at least once test when invoking the tool is greater than the chance you were okay with running no tests. but from an automation standpoint i think an option to switch that behavior rather than changing the default would work just as well00:38
lifelessclarkb: 09:38 < clarkb> if dicsover discovers 0 tests then you run 0 tests and check passes00:38
lifeless09:38 < sdague> honestly, testr should be handling all this internally00:38
lifelessclarkb: thats plain wrong: if discover finds 0 tests, then you'll still get a subunit stream and can assert whatever policy you want in the pretty layer, if you're doing that.00:39
clarkblifeless: I think you are confusing my statement there00:39
clarkblifeless: it was referring to the old check we had in place that looked at discovered tests and compared to number of tests run00:39
lifelessclarkb: ah, ack.00:39
*** HenryG has quit IRC00:41
lifelessmtreinish: subunit2pyunit should be exiting non-zero on failure:00:41
lifelessif runner.run(test).wasSuccessful():00:41
lifeless    exit_code = 000:41
lifelesselse:00:41
lifeless    exit_code = 100:41
lifelesssys.exit(exit_code)00:41
clarkbI am going to leave that image build going, time now for beer00:41
lifelesssdague: I'm very open to patches to give testr more customisation for peoples needs, my goal is to work well for most folk without specific knobs.00:42
fungiclarkb: enjoy. i'll be around if you need me to check on it00:42
*** pabelanger has joined #openstack-infra00:42
*** heyongli has joined #openstack-infra00:42
lifelesssdague: for the 0 tests thing; I'm open to the idea that discover / testtools should error on no tests found - but thats an upstream python discussion to have00:43
clarkbfungi: it is running in a screen owned by my user, feel free to attach to it00:43
lifelesssdague: For testr itself, I don't think it should second-guess the reported set of tests; and for filtering getting an empty set, as fungi said, 0 is actually fine when you're doing multiple projects with a single regex : but I'm open - as said - to a knob for folk that don't have that use case00:44
fungiclarkb: on nodepool.o.o?00:44
clarkbyup00:44
fungithe only screen session was owned by root00:45
*** oubiwann_ has quit IRC00:45
lifelesssdague: it is a bug that folk are having to write wrapper scripts as much as they are; I've nearly got the infra in place I want to give dynamic feedback on slow tests as they happen, which I think is the key thing to address the data people infer from test output flowing past00:45
funginevermind00:45
fungiSCREEN00:45
fungitmux has me pampered. no upper-case process names00:46
clarkbI just reattached to it, it s there00:46
clarkboh yay you found it00:46
* clarkb &00:46
*** sdake_ has quit IRC00:48
*** sarob has joined #openstack-infra00:52
*** notmyname has quit IRC00:57
*** notmyname has joined #openstack-infra00:59
*** ^d has quit IRC01:00
*** dkliban_ has joined #openstack-infra01:02
*** sarob has quit IRC01:03
mordredoh look. it's a lifeless!01:04
*** krotscheck has quit IRC01:05
mordredjust so that everyone knows - in tel aviv, the hotels not so much with serving cooked food for room service during shabbat01:06
mordredif you do not come from that background, you might find that unexpected01:06
fungii hope you found a bowl of fruit at least01:10
openstackgerritRandall Burt proposed a change to openstack-infra/config: Adding non-core plugin tests to Heat gate  https://review.openstack.org/6064201:11
mordredfungi: well, there was one of those in my room, but I ate it a while ago - along with the box of dates01:12
mordred(I'm going to have weird intestinal responses I'm sure)01:13
jeblairbad dates01:13
mordredthe convenience stores are quite happily open01:13
jeblair^ [movie reference; who gets it?]01:13
mordredjeblair: that was in cairo01:13
*** HenryG has joined #openstack-infra01:13
jeblairmordred: ftw01:13
mordredso I got a bag off ruffled potato chips that are flavored like a word that has letters I don't understand, but they're tasty01:14
mordredand a box of macadamia nuts01:14
mordredDINNER!01:14
fungiif i'd been here for the comment, i'd have felt bad for the monkey01:15
jeblairevil monkey01:16
fungiperhaps the monkey became one of the vengeful spirits in the ark. he had good reason, at least01:16
jeblairfungi: you're trying to trick me into looking at the ark.01:17
fungican't blame me for trying01:17
*** markwash has quit IRC01:18
*** bnemec has joined #openstack-infra01:21
fungiclarkb: if you care, INFO:nodepool.ImageUpdater:Image devstack-precise-check-1386376564.template.openstack.org in rax-dfw is ready01:22
*** bnemec has quit IRC01:23
*** HenryG has quit IRC01:26
*** randallburt has quit IRC01:29
lifelesswhat flavor do we use for d-g nodes today?01:29
fungilifeless: 8gb w/ 4vcpu01:29
*** markwash has joined #openstack-infra01:29
*** dkliban_ has quit IRC01:31
mordredlifeless: chocolate01:32
lifelessfungi: thanks01:34
funginp01:34
*** hogepodge has quit IRC01:38
*** sdake_ has joined #openstack-infra01:39
*** sarob has joined #openstack-infra01:43
*** fifieldt has quit IRC01:43
*** dkliban_ has joined #openstack-infra01:44
*** markwash has quit IRC01:44
openstackgerritA change was merged to openstack-infra/config: add nodepool to jenkins-dev server  https://review.openstack.org/5733301:44
jeblairmordred: when i 'pip install .' in zuul, i don't seem to be getting the latest version of the client in the venv01:45
jeblairmordred: possibly because i've already pip installed the current version?01:45
mordredthat's correct01:45
mordredwait01:45
mordredclient01:46
jeblairmordred: yeah, a setuptools script01:46
mordredI was answering a different question01:46
mordredyou should get the latest version of the client in the venv in that case01:46
jeblairentrypoints console script01:46
mordredyup. with you now01:46
mordredI do not expect the behavior you are seeing01:46
jeblairmordred: even if i have already run 'pip install .' on the current git commit?01:46
jeblairmordred: (of course, i'm continuing to hack so i have unstaged changes that keep changing)01:47
mordredyes. the entrypoints script should just be doing "import zuul.client" blah01:47
mordredso your pip install . in the venv should be putting zuul.client into the python library01:47
mordredsothe import should get it01:47
mordredbtw - if you want the equiv of setup.py develop - you can do pip  install -e .01:47
mordredbut I do not think that should be relevant in this case01:48
*** dkliban_ has quit IRC01:48
jeblairmordred: well, that did make things work.01:48
mordredlet me see if I can reproduce here locally01:48
mordredoh. weird01:48
jeblairmordred: i'm sorry; that may have hurt our ability to debug this.  :(01:48
jeblairlifeless: ^ why i have 'if __name__ == "__main__"' in my console scripts.01:49
openstackgerritJames E. Blair proposed a change to openstack-infra/zuul: Add a promote client command  https://review.openstack.org/6064401:58
mordredooh. I like your new changes to zuul jeblair02:01
mordredalthough like nodepool - I'm starting to think that you're getting close to wanting a rest API and keystone support :)02:02
*** yamahata_ has joined #openstack-infra02:03
*** tma996 has joined #openstack-infra02:07
*** melwitt has quit IRC02:07
*** sarob has quit IRC02:12
*** sarob has joined #openstack-infra02:13
*** jcooley_ has joined #openstack-infra02:15
*** sarob has quit IRC02:17
*** bnemec has joined #openstack-infra02:18
*** rwsu has quit IRC02:25
lifelessjeblair: sorry, I don't quite follow - you use __name__ because pip install . doesn't update as you edit ?02:26
*** pcrews has quit IRC02:29
*** HenryG has joined #openstack-infra02:32
*** wenlock has quit IRC02:34
*** markwash has joined #openstack-infra02:34
*** heyongli has quit IRC02:36
*** rwsu has joined #openstack-infra02:40
*** MarkAtwood has quit IRC02:48
*** nati_ueno has quit IRC02:54
*** mestery has quit IRC03:05
*** mestery has joined #openstack-infra03:10
*** rongze has joined #openstack-infra03:13
*** nati_ueno has joined #openstack-infra03:19
*** changbl has quit IRC03:22
*** esker has joined #openstack-infra03:23
*** changbl has joined #openstack-infra03:25
*** sandywalsh has quit IRC03:32
*** nicedice_ has joined #openstack-infra03:32
*** nicedice has quit IRC03:35
*** markwash has quit IRC03:50
*** dkehn has quit IRC04:05
*** vipul has quit IRC04:06
*** vipul has joined #openstack-infra04:07
*** sandywalsh has joined #openstack-infra04:07
*** sdake_ has quit IRC04:08
*** dkehn has joined #openstack-infra04:17
*** julim has joined #openstack-infra04:19
*** julim has quit IRC04:25
clarkbfungi: ty for watching that04:50
funginp04:51
fungididn't see obvious errors04:51
*** rcleere has joined #openstack-infra04:54
*** rongze has quit IRC05:08
*** SergeyLukjanov has joined #openstack-infra05:21
*** rongze has joined #openstack-infra05:22
*** pete5 has quit IRC05:29
*** vkozhukalov has joined #openstack-infra05:39
*** rongze has quit IRC05:42
*** rcleere has quit IRC05:48
*** michchap_ has joined #openstack-infra06:03
*** dstanek has quit IRC06:03
*** michchap has quit IRC06:03
*** SergeyLukjanov has quit IRC06:16
*** WarrenUsui has quit IRC06:24
*** WarrenUsui has joined #openstack-infra06:25
*** rongze has joined #openstack-infra06:36
*** sdake_ has joined #openstack-infra06:39
*** rongze has quit IRC06:42
*** jcooley_ has quit IRC06:46
*** HenryG has quit IRC06:46
*** rongze has joined #openstack-infra06:47
*** sdake_ has quit IRC06:54
openstackgerritMax Rydahl Andersen proposed a change to openstack-infra/jenkins-job-builder: add private-repository to maven-target  https://review.openstack.org/6016107:15
*** jcooley_ has joined #openstack-infra07:18
*** jcooley_ has quit IRC07:23
*** sdake_ has joined #openstack-infra07:33
*** afazekas has joined #openstack-infra07:44
*** afazekas has quit IRC07:44
*** yolanda has joined #openstack-infra08:06
*** senk has joined #openstack-infra08:09
*** senk1 has joined #openstack-infra08:12
*** sdake_ has quit IRC08:13
*** senk has quit IRC08:13
*** bot_bot has joined #openstack-infra08:16
*** DinaBelova has joined #openstack-infra08:16
openstackgerritMax Rydahl Andersen proposed a change to openstack-infra/jenkins-job-builder: add private-repository and jvmoptions to maven-target  https://review.openstack.org/6016108:17
*** SergeyLukjanov has joined #openstack-infra08:17
openstackgerritMax Rydahl Andersen proposed a change to openstack-infra/jenkins-job-builder: add private-repository, java-opts, settings and global-settings to maven-target  https://review.openstack.org/6016108:30
openstackgerritMax Rydahl Andersen proposed a change to openstack-infra/jenkins-job-builder: add private-repository, java-opts, settings and global-settings to maven-target  https://review.openstack.org/6016108:36
*** SushilKM has joined #openstack-infra08:38
*** SushilKM has quit IRC08:38
*** senk1 has quit IRC08:39
*** bot_bot has quit IRC08:50
*** senk has joined #openstack-infra08:57
*** senk has quit IRC09:01
*** senk has joined #openstack-infra09:01
*** nati_ueno has quit IRC09:10
*** senk has quit IRC09:18
*** zul has quit IRC09:54
*** zul has joined #openstack-infra09:54
*** rongze has quit IRC10:18
*** yassine has joined #openstack-infra10:32
*** tma996 has quit IRC10:35
*** DinaBelova has quit IRC10:37
*** paul-- has joined #openstack-infra10:39
*** DinaBelova has joined #openstack-infra10:40
*** paul-- has quit IRC10:44
*** yassine_ has joined #openstack-infra11:00
*** tma996 has joined #openstack-infra11:06
*** boris-42 has joined #openstack-infra11:11
*** paul-- has joined #openstack-infra11:13
*** rongze has joined #openstack-infra11:20
*** rongze has quit IRC11:27
*** rongze has joined #openstack-infra11:32
*** paul-- has quit IRC11:33
*** GheRivero has joined #openstack-infra11:35
*** tma996 has quit IRC11:37
*** tma996 has joined #openstack-infra11:37
*** tma996 has quit IRC11:41
*** rongze has quit IRC11:57
*** paul-- has joined #openstack-infra11:58
*** tma996 has joined #openstack-infra12:01
*** SushilKM has joined #openstack-infra12:18
*** mika has quit IRC12:20
*** mika has joined #openstack-infra12:21
*** paul-- has quit IRC12:22
*** DinaBelova has quit IRC12:26
*** adalbas has joined #openstack-infra12:28
*** hashar has joined #openstack-infra12:33
*** beagles has quit IRC12:34
*** adalbas has quit IRC12:35
*** SushilKM has quit IRC12:35
*** vkozhukalov has quit IRC12:43
*** paul-- has joined #openstack-infra12:44
*** yolanda has quit IRC12:50
*** yassine_ has quit IRC12:58
*** yassine has quit IRC13:00
*** paul-- has quit IRC13:00
*** afazekas has joined #openstack-infra13:02
*** paul-- has joined #openstack-infra13:03
*** SushilKM has joined #openstack-infra13:16
*** zehicle has quit IRC13:18
*** paul-- has quit IRC13:25
*** elasticio has joined #openstack-infra13:27
*** hashar has quit IRC13:32
*** vkozhukalov has joined #openstack-infra13:40
*** SushilKM has quit IRC13:48
*** che-arne has quit IRC13:48
*** SergeyLukjanov is now known as _SergeyLukjanov13:49
*** che-arne has joined #openstack-infra13:50
*** _SergeyLukjanov is now known as SergeyLukjanov13:53
*** SergeyLukjanov has quit IRC13:59
*** boris-42 has quit IRC14:01
*** ruhe has joined #openstack-infra14:08
*** SushilKM has joined #openstack-infra14:08
*** zul has quit IRC14:12
*** talluri has joined #openstack-infra14:15
*** SushilKM has quit IRC14:22
*** mriedem has joined #openstack-infra14:22
*** elasticio has quit IRC14:26
*** mriedem has quit IRC14:30
*** herndon has joined #openstack-infra14:31
*** mriedem has joined #openstack-infra14:34
*** ruhe is now known as ruhe_14:38
*** ruhe_ has quit IRC14:44
*** prad has joined #openstack-infra15:01
*** yamahata_ has quit IRC15:04
*** pabelanger has quit IRC15:33
*** HenryG has joined #openstack-infra15:34
*** salv-orlando has quit IRC15:40
*** tma996 has quit IRC15:42
*** mika has quit IRC15:42
*** cody-somerville has quit IRC15:42
*** jkyle has quit IRC15:42
*** fbo has quit IRC15:42
*** echohead has quit IRC15:42
*** mtreinish has quit IRC15:42
*** LinuxJedi has quit IRC15:42
*** basic` has quit IRC15:42
*** soren has quit IRC15:42
*** fungi has quit IRC15:42
openstackgerritKei YAMAZAKI proposed a change to openstack-infra/jenkins-job-builder: Fix GitHub pull request builder plugin support  https://review.openstack.org/6067315:48
openstackgerritSergey Kolekonov proposed a change to openstack-infra/jenkins-job-builder: Description Setter Plugin support added  https://review.openstack.org/6067415:48
*** salv-orlando has joined #openstack-infra15:52
*** elasticio has joined #openstack-infra15:56
*** pabelanger has joined #openstack-infra16:05
*** mika has joined #openstack-infra16:08
*** cody-somerville has joined #openstack-infra16:08
*** jkyle has joined #openstack-infra16:08
*** fbo has joined #openstack-infra16:08
*** echohead has joined #openstack-infra16:08
*** mtreinish has joined #openstack-infra16:08
*** LinuxJedi has joined #openstack-infra16:08
*** basic` has joined #openstack-infra16:08
*** soren has joined #openstack-infra16:08
*** fungi has joined #openstack-infra16:08
*** salv-orlando has quit IRC16:09
*** salv-orlando has joined #openstack-infra16:10
*** jcooley_ has joined #openstack-infra16:12
*** jcooley_ has quit IRC16:14
*** changbl has quit IRC16:18
*** pabelanger has quit IRC16:25
*** pabelanger_ has joined #openstack-infra16:25
*** pabelanger_ has quit IRC16:29
*** pabelanger has joined #openstack-infra16:29
*** pcrews has joined #openstack-infra16:30
*** talluri has quit IRC16:42
*** yamahata_ has joined #openstack-infra16:48
*** elasticio has quit IRC16:53
*** elasticio has joined #openstack-infra16:54
*** elasticio_ has joined #openstack-infra16:56
*** pabelanger has quit IRC17:16
*** pabelanger has joined #openstack-infra17:19
*** boris-42 has joined #openstack-infra17:30
*** bnemec has quit IRC17:31
*** bnemec has joined #openstack-infra17:34
*** yamahata_ has quit IRC17:35
*** bnemec has quit IRC17:40
*** bnemec has joined #openstack-infra17:41
*** pcrews has quit IRC17:47
*** bnemec has quit IRC17:47
*** talluri has joined #openstack-infra17:54
*** thedodd has joined #openstack-infra17:55
*** bnemec has joined #openstack-infra17:56
*** talluri has quit IRC17:58
*** pcrews has joined #openstack-infra18:14
*** pcrews has quit IRC18:16
*** pcrews has joined #openstack-infra18:19
*** mestery has quit IRC18:23
*** rcleere has joined #openstack-infra18:24
*** yolanda has joined #openstack-infra18:25
*** vkozhukalov has quit IRC18:28
*** nati_ueno has joined #openstack-infra18:29
*** mestery has joined #openstack-infra18:29
*** rcleere has quit IRC18:43
*** nati_ueno has quit IRC18:45
*** nati_ueno has joined #openstack-infra18:46
*** nati_ueno has quit IRC18:50
*** nati_ueno has joined #openstack-infra18:52
*** nati_ueno has quit IRC19:05
*** prad has quit IRC19:06
*** mriedem has quit IRC19:19
*** senk has joined #openstack-infra19:21
*** nati_ueno has joined #openstack-infra19:22
*** krtaylor has quit IRC19:24
*** senk has quit IRC19:25
*** mestery has quit IRC19:30
*** senk has joined #openstack-infra19:33
*** afazekas has quit IRC19:35
*** mestery has joined #openstack-infra19:36
*** senk has quit IRC19:38
*** Guest27104 has quit IRC19:38
*** pvo has quit IRC19:38
*** herndon has quit IRC19:43
*** senk has joined #openstack-infra19:48
*** paul-- has joined #openstack-infra20:00
*** senk has quit IRC20:10
*** senk has joined #openstack-infra20:13
*** senk has quit IRC20:17
*** senk has joined #openstack-infra20:17
*** paul-- has quit IRC20:20
*** sdake_ has joined #openstack-infra20:25
openstackgerritJoshua Harlow proposed a change to openstack-infra/gerritlib: Add connection attempt limit  https://review.openstack.org/5298620:42
*** elasticio_ has quit IRC20:46
*** elasticio has quit IRC20:46
openstackgerritJoshua Harlow proposed a change to openstack-infra/gerritlib: Add connection attempt limit  https://review.openstack.org/5298620:47
*** elasticio has joined #openstack-infra20:47
*** elasticio_ has joined #openstack-infra20:47
*** HenryG has quit IRC20:48
*** HenryG has joined #openstack-infra20:48
openstackgerritJoshua Harlow proposed a change to openstack-infra/gerritlib: Add connection attempt limit  https://review.openstack.org/5298620:49
openstackgerritJoshua Harlow proposed a change to openstack-infra/gerritlib: Add connection attempt limit  https://review.openstack.org/5298620:51
openstackgerritSergey Lukjanov proposed a change to openstack-infra/config: Unset launchpad project for gearman-plugin  https://review.openstack.org/6069220:58
*** senk has quit IRC21:05
*** sdake_ has quit IRC21:05
*** yolanda has quit IRC21:12
*** jgriffith has quit IRC21:12
openstackgerritA change was merged to openstack-infra/config: Unset launchpad project for gearman-plugin  https://review.openstack.org/6069221:13
*** jgriffith has joined #openstack-infra21:13
*** zul has joined #openstack-infra21:19
*** yolanda has joined #openstack-infra21:24
*** mriedem has joined #openstack-infra21:24
*** elasticio_ has quit IRC21:43
*** elasticio has quit IRC21:43
*** nati_ueno has quit IRC21:47
*** nati_ueno has joined #openstack-infra21:47
*** nati_uen_ has joined #openstack-infra21:48
*** nati_ueno has quit IRC21:52
fungimriedem: bug 1255593 eh?21:55
uvirtbotLaunchpad bug 1255593 in devstack "configuration options from the [DEFAULT] section are not applied to multiple backends" [Undecided,In progress] https://launchpad.net/bugs/125559321:55
fungiif we're working around that anywhere, it'll be in the devstack-gate-wrap.sh in openstack-infra/devstack-gate21:56
mriedemyeah https://review.openstack.org/#/c/60694/21:56
fungibut i'll wager we haven't been21:56
mriedemfungi: i looked in devstack and devstack-gate for 'volume_clear' and only found it in devstack's setup21:57
fungigood to know21:57
mriedemfwiw, i don't agree that it's a 'wishlist' item21:57
mriedemseems busted to me21:57
mriedemin cinder21:58
*** changbl has joined #openstack-infra22:00
mriedemfungi: some numbers: http://paste.openstack.org/show/54646/22:00
mriedemtest_volumes_actions actually got slower for some reason, otherwise pretty good gains in some of the other volumes tests22:00
fungiawesome. i wonder if we'll see any substantial improvements in our tempest runs as a resuly22:01
fungiresult22:01
mriedemjust for the set i have in my paste it's about a net gain of 15 minutes22:03
clarkbcan't we propose a change to devstack and see?22:04
mriedemand we're just running one job per day22:04
mriedemclarkb: https://review.openstack.org/#/c/60694/22:04
clarkbnow we wait I guess :) thanks22:04
mriedemnp22:06
*** elasticio has joined #openstack-infra22:17
*** elasticio has quit IRC22:22
*** pcrews has quit IRC22:35
mriedemclarkb: jenkins passed on that devstack cinder patch, where do we compare results?22:40
clarkbmriedem: grab the subunit logs of tests run on hosts in the same az and compare individual test times22:50
*** sdake has quit IRC22:55
mriedemclarkb: what tells me what host/az the tests are run in? haven't done this before.23:21
clarkbmriedem: at the beginning of the console log is the slave name. In the slave name is the az. eg hpcloud-az223:25
mriedemah, was looking in subunit logs23:25
*** fifieldt has joined #openstack-infra23:25
mriedemBuilding remotely on devstack-precise-hpcloud-az2-81244023:26
mriedemthen i just find that host in jenkins and check other jobs' logs right?23:26
clarkbyou won't find that same host because they are all single use slaves23:27
clarkbbut look for jobs running on other az2 VMs to get the closest 1:1 comparison23:28
fungipro tip: the majority will be on hpcloud az2 at the moment i believe23:30
mordredbackscroll23:31
mriedemsorry, should i be on jenkins.openstack.org or logs.openstack.org?23:38
*** nati_uen_ has quit IRC23:38
*** rcleere has joined #openstack-infra23:40
mriedemfound another hpcloud-az2 job, trying to find the test times23:42
clarkbmriedem: I would go to the list of open changes in gerrit and grab links to tests from there23:42
mriedemjust started going through recent check results on logs.openstack.org23:42
*** paul-- has joined #openstack-infra23:42
clarkbhttp://logs.openstack.org/02/54202/10/check/check-tempest-dsvm-full/5e1ee8e/23:43
mriedemto find the total test time, looking in subunit_log for the diff between start/end time of the test, unless there is an easier way23:43
mriedemyeah, looking at this one http://logs.openstack.org/94/59994/2/check/check-tempest-dsvm-full/b90c3a2/23:43
clarkbhttp://logs.openstack.org/02/54202/10/check/check-tempest-dsvm-postgres-full/1b029ba/23:43
clarkbmriedem: I think you can testr load the file then query it maybe23:43
clarkbhmm maybe not. testr stats doesn't do much yet23:44
mriedemtest_volumes_get was the biggest improvement i saw since i think that creates a few volumes for the test, so trying to diff on that one23:45
*** ywu has quit IRC23:45
*** rcleere has quit IRC23:48
*** paul-- has quit IRC23:50
mriedemhmm, just looking at overall total time in console.html between my devstack cinder patch and 2 other runs on hpcloud-az2, my patch took 28 min for check-tempest-dsvm-full but the others were 23 min and 34 min,23:52
mriedemso i'd probably need a bigger sampling of overall time to run that test suite23:53

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