Friday, 2015-03-13

*** harshs has joined #openstack-dev00:00
*** yamamoto has quit IRC00:00
*** btulchinsky has joined #openstack-dev00:00
morganfainbergthough apache could be [i think] configured to add that info00:00
morganfainbergeasily00:00
clarkbapache will log them right00:00
clarkbyup00:00
morganfainbergyay not implementing things cause we get them for free ;)00:00
jogoahh https://httpd.apache.org/docs/2.2/mod/mod_log_config.html00:01
morganfainbergjogo, yep, was just about to go looking for that page for ya00:02
morganfainbergjogo, just had to finish a code review.00:02
*** annegentle has quit IRC00:02
*** markvoelker has quit IRC00:03
jogomorganfainberg: not sure where to throw that in devstack my apache foo is weak00:03
jogodo you know?00:03
morganfainbergjogo, yeah one sec.00:03
jogomorganfainberg: thanks00:03
*** achanda has quit IRC00:03
morganfainbergjogo, just going to take me a moment to find it since i'm context switching from keystone code to devstack00:05
jogomorganfainberg: thanks00:05
morganfainbergjogo, ok so you probably want to figure out where you want that info, but the idea would be %D added https://github.com/openstack-dev/devstack/blob/master/files/apache-keystone.template#L11 and https://github.com/openstack-dev/devstack/blob/master/files/apache-keystone.template#L2700:07
morganfainbergi think00:07
morganfainbergjogo, wherever you put the %D will turn that into microseconds to serve the request00:07
*** markvoelker has joined #openstack-dev00:08
morganfainbergjogo, %T would be in seconds00:08
*** dimtruck is now known as zz_dimtruck00:09
morganfainberginterestingly that feels like the wrong place now that i think about it00:09
jogomorganfainberg: trying that now00:09
morganfainbergjogo, that might need to go in the custom_log lines for the access_log00:09
morganfainberginstead of the error_logs00:09
jogomorganfainberg: yeah  I was going to say00:10
morganfainbergbecause error_logs are printed more often/more-cases [all keystone logging] than access is00:10
morganfainbergyeah put it in customlog lines00:10
morganfainbergand that'll then show in the keystone_access.log00:10
morganfainbergputting it in the errorlog might be interesting but way less useful.00:10
jogoso what line do  Iadd?00:10
morganfainbergooh sec. forgot we're using "combined"00:11
morganfainbergso, you want to replace the CustomLog lines in that template i linked with: CustomLog /var/log/%APACHE_NAME%/keystone_access.log "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\""00:13
morganfainbergyou'll need to add the %T or %D somewhere in that format string00:13
morganfainbergwherever you want the time to serve request to be encoded.00:14
*** reed has joined #openstack-dev00:14
morganfainbergwe can make it more generic if this is more than a 1-off thing. but to start that should get you the information.00:15
morganfainbergjogo, ^00:15
*** Marga_ has quit IRC00:15
*** amuller has quit IRC00:15
jogomorganfainberg: I think we should log this in general so yes to more generic00:16
jogofor now I am just curios on how fast keystone is00:16
morganfainbergwould you want horizon to also contain this info?00:16
morganfainbergwe could change the combined log format if so.00:16
morganfainbergif not, we can just define a keystone format and use it.00:16
jogomeh just keystone00:16
morganfainbergok00:17
jogosince its way more key to the system00:17
morganfainbergyeah00:17
jogoslow keystone slows everything way dooown00:17
morganfainberglet me remember how to configure this ;)00:17
morganfainberg>.>00:17
morganfainbergok so where do you want the time to serve data? last element of the log?00:18
*** Longgeek has joined #openstack-dev00:18
*** angdraug has quit IRC00:18
jogomorganfainberg: sure00:18
jogoplaying around with how this looks now00:18
morganfainbergok so in https://github.com/openstack-dev/devstack/blob/master/files/apache-keystone.template00:19
morganfainbergactually let me do this in a paste00:20
*** claudiub has quit IRC00:20
*** asalkeld has left #openstack-dev00:20
jogo%T is no good00:20
morganfainbergjogo, http://paste.openstack.org/show/191985/ something like that?00:21
morganfainbergjogo, that'd be microseconds, probably more interesting than %T00:22
jogocan we do microseconds/100000:22
jogoto get a float that is seconds00:22
*** pradeep has joined #openstack-dev00:23
morganfainbergi don't think youc an do math in the formatter string here00:23
morganfainbergi think it's either %D or %T00:23
jogogrr00:23
jogothat looks good00:23
jogoyou won't like the results though00:24
morganfainberghaha i know we have performance issues00:24
morganfainberg:(00:24
morganfainbergand we're very chatty to the backned [a big issue that causes performance issues]00:24
morganfainbergalso remember the first few requests to a new server takes extra long because the wsgi's need to be spun up [in devstack case]00:24
jogomorganfainberg: I think a large part of why devstack is slow is .... you00:25
jogo:)00:25
morganfainbergjogo, if we did some extra tweaking to make devstack behave more production like i think we could drastically improve00:26
*** jp_at_hp has joined #openstack-dev00:26
morganfainbergjogo, but it's on a long list of need to get major scale issues down first. e.g. fernet tokens in [no more token storage should help a lot of people]00:26
jogomorganfainberg: +++ to devstack more like production00:26
morganfainbergjogo, sure but we might need more memory to do it.00:27
*** pixelbeat has quit IRC00:27
*** Marga_ has joined #openstack-dev00:27
*** ybathia has quit IRC00:27
morganfainbergjogo, because most people utilize memcache to help with these issues [a reason we added caching in]00:27
jogo10.0.0.58 - - [13/Mar/2015:00:27:00 +0000] "GET /v2.0/OS-KSADM/services HTTP/1.1" 200 25 6600(s) "-" "python-keystoneclient"00:27
jogololz00:27
jogoerr ms00:27
jogous00:27
morganfainbergso send 30 requests to keystone00:27
morganfainbergthen check00:27
morganfainbergthe first ones do take seconds because mod_Wsgi has to spin up the processes00:28
jogo10.0.0.58 - - [13/Mar/2015:00:26:58 +0000] "GET /v3/domains/default HTTP/1.1" 200 215 132991(us) "-" "python-keystoneclient"00:28
jogoright00:28
*** leeantho has quit IRC00:28
morganfainbergok that is better.00:28
jogostack.shing now00:28
morganfainberg++00:28
jogothat was a typo 6600us00:28
morganfainbergoh00:28
jogo13 seconds00:28
jogois not better :/00:29
jogobut may be the first one00:29
*** tnovacik has quit IRC00:29
morganfainbergyeah.00:29
jogo devstack is really slow these days00:29
jogopart is wheel stuff (25% in fact)00:29
jogoand the rest is ????00:29
jogoAFAIK half is setting up openstack00:29
jogoso some of that may be keysteone00:29
morganfainbergmight be.00:29
jogowhich is what I am testing00:29
morganfainbergi think we run 4 or 5 workers00:30
jogomorganfainberg: I take it your posting the change from your paste above?00:30
morganfainbergjogo, not yet. but i can.00:30
morganfainbergi want to poke at a couple things and possibly submit a couple changes at once if i'm doing "make things more production-y"00:31
*** sputnik13 has quit IRC00:31
jogowoops 132991 is .13 seconds00:31
*** cooldeep__ has joined #openstack-dev00:31
jogomorganfainberg: nice00:31
*** dims has joined #openstack-dev00:32
jogomorganfainberg: http://paste.ubuntu.com/10588444/00:32
jogologs00:32
*** pradeep1 has joined #openstack-dev00:32
*** Longgeek has quit IRC00:32
morganfainbergyeah .13 sec is not *terrible*00:32
morganfainbergit's not good.00:32
*** ho has joined #openstack-dev00:33
morganfainbergi'm ok with most of these being in: 5581(us) range or so00:33
morganfainbergthis is expected: /v2.0/tenants/ae81c3535c964a65989f0ea06f7362c0/users/0f0f67d961a949d88c9974db4ef3bc3a/roles HTTP/1.1" 200 13 19905(us) "-" "python-keystoneclient"00:33
*** pradeep has quit IRC00:33
morganfainbergthat is a brutal set of querieds00:34
jogothis is output of devstack running00:34
morganfainbergright00:34
morganfainbergit's standup00:34
*** cooldeep_ has quit IRC00:35
morganfainberg"POST /v3/groups HTTP/1.1" 201 225 2761931(us) "-" "python-keystoneclient" that i guess is a new process spinning up00:35
morganfainbergjust a hunch00:35
morganfainbergor not.00:36
morganfainberggod.00:36
morganfainbergouch00:36
morganfainbergnot write optimised.00:36
morganfainbergok i'll poke at this some and get those changes proposed up.00:37
morganfainberglet me finish the current code review chain i'm on.00:37
*** SumitNaiksatam has quit IRC00:39
jogomorganfainberg: thanks!00:40
*** harshs has left #openstack-dev00:40
*** yamamoto has joined #openstack-dev00:41
*** pal has joined #openstack-dev00:42
*** marun has quit IRC00:42
jogomorganfainberg: http://paste.ubuntu.com/10588467/00:43
jogowent back to %T and filtered out things that were over a second00:43
jogonot too many at least00:43
morganfainbergah ok00:43
jogobut there are some00:43
morganfainbergright00:43
jogodtroyer: ping00:43
morganfainbergjogo, i'd say that isn't terrible, not great/exciting, but not "omg what the hell is this" awful00:44
morganfainbergjogo, so would you prefer %T or %D?00:44
morganfainbergi think %D is more useful in general00:44
morganfainbergbut it's a lot of extra digits00:45
jogo%D00:45
morganfainberg++00:45
jogomore useful in general00:45
morganfainbergaye00:45
jogodtroyer: --timing os broken in OSC00:45
*** jaypipes has quit IRC00:45
jogodtroyer: also why so slow http://paste.openstack.org/show/191986/00:45
jogomorganfainberg:  ^ slow may be client side00:46
*** dsirrine has quit IRC00:46
jogoover a second to do nothing00:46
jogo$ time openstack user00:46
jogoERROR: openstack Unknown command ['user']00:46
jogoreal    0m1.161s00:46
jogouser    0m0.410s00:46
jogosys     0m0.394s00:46
morganfainbergjogo, expensive calls00:46
morganfainbergjogo, :(00:46
*** gargola_ has quit IRC00:47
jogokeypair list00:47
jogo0.2 seconds on nova00:47
jogo2.5 in oSC00:47
jogo2 to 2.500:48
jogowow novaclient isn't much better00:48
jogo1.6 seconds for the same thing00:48
*** bdpayne has quit IRC00:51
*** radez is now known as radez_g0n300:51
*** Qiming has joined #openstack-dev00:51
*** topshare has joined #openstack-dev00:52
*** tiswanso has joined #openstack-dev00:52
jogomorganfainberg: so looks like most of the time is spent client side00:52
morganfainberggood to know00:53
*** mwagner_lap has quit IRC00:53
*** tiswanso has quit IRC00:53
*** tiswanso has joined #openstack-dev00:54
*** HoloIRCUser2 has joined #openstack-dev00:54
*** Lee1092 has joined #openstack-dev00:56
*** gatuus has joined #openstack-dev00:56
*** annegentle has joined #openstack-dev00:58
*** kacieee has joined #openstack-dev00:58
*** PingKuo has joined #openstack-dev00:59
*** gatuus has quit IRC00:59
*** kevinbenton has quit IRC00:59
*** asettle is now known as asettle-mtg01:00
*** evgenyf has joined #openstack-dev01:01
*** dsirrine has joined #openstack-dev01:02
*** ijw has joined #openstack-dev01:03
*** annegentle has quit IRC01:03
*** amitgandhinz has joined #openstack-dev01:05
*** ijw has quit IRC01:05
*** sarob has joined #openstack-dev01:05
*** ijw has joined #openstack-dev01:05
*** kacieee has quit IRC01:06
*** ayoung has joined #openstack-dev01:06
*** kacieee has joined #openstack-dev01:06
*** _cjones_ has quit IRC01:07
*** bpokorny has quit IRC01:07
*** baoli has joined #openstack-dev01:07
*** promulo__ has joined #openstack-dev01:09
*** _cjones_ has joined #openstack-dev01:09
*** zz_dimtruck is now known as dimtruck01:09
*** SumitNaiksatam has joined #openstack-dev01:09
*** ncoghlan has joined #openstack-dev01:09
*** sarob has quit IRC01:09
*** ghostpl_ has joined #openstack-dev01:10
stevemarjogo, can you try `time keystone user-list` on the same machine?01:11
stevemarand add it to here: https://bugs.launchpad.net/python-openstackclient/+bug/143164901:11
openstackLaunchpad bug 1431649 in python-openstackclient "openstackclient is really slow" [Undecided,New]01:11
*** promulo has quit IRC01:12
*** rwsu is now known as rwsu-afk01:13
*** xarses has quit IRC01:14
*** ghostpl_ has quit IRC01:15
*** Mandell has quit IRC01:17
*** _cjones_ has quit IRC01:18
*** pradeep has joined #openstack-dev01:19
*** pradeep has left #openstack-dev01:19
*** annashen has quit IRC01:19
*** dsirrine has quit IRC01:20
*** pradeep1 has quit IRC01:21
*** dkranz has joined #openstack-dev01:24
*** klindgren has joined #openstack-dev01:24
*** enikanorov__ has joined #openstack-dev01:24
klindgrendims, you there?01:24
dimsaye klindgren01:24
klindgrenI am trying out: https://review.openstack.org/#/c/146047/2801:25
klindgrenin our test environment01:25
dimsah nice01:25
klindgrenwe have cells configured - and it doesn't seem to help?01:25
*** enikanorov_ has quit IRC01:26
dimswhat is your symptom now?01:26
dimswas it the same symptom as before the patch?01:26
klindgrenI restarted haproxy that was fronting rabbitmq - got a ton of errors ass expected - then from the api cel -> compute cell the api cell nova instance was throw errors every 2 minutes trying to send a message01:27
*** otter768 has joined #openstack-dev01:27
*** vicky_ has joined #openstack-dev01:27
dimsdoes it stabilize or continue to fail?01:28
klindgrencontinue to fail01:28
*** jp_at_hp has quit IRC01:29
dimsis the haproxy back up?01:29
klindgrenit is01:29
dimsrabbitmq status still good?01:29
klindgrenyep01:30
klindgrenI fixed it by restart nova-api on the api cell01:30
klindgrenerrors went away01:30
*** cference has quit IRC01:30
klindgrentrying to look in the code for what gets logged when it find something is broken and attmepts to reconnect01:30
*** evgenyf has quit IRC01:30
*** stanzgy has joined #openstack-dev01:30
*** stanzgy_ has joined #openstack-dev01:31
klindgrenbut not finding anything01:31
dimsdo you see [Errno 32] Broken pipe or [Errno 61] ECONNREFUSED01:31
dims"got a ton of errors ass expected" - was from which log?01:32
dtroyerjogo: yes, all python clients are slow to load.  that sucks.  yet another reason to use statically linked lcients.01:32
*** otter768 has quit IRC01:32
dtroyerbut more importantly, one of the reasons I want so badly to eliminate as many dependencies from osc as I can01:32
*** sarob has joined #openstack-dev01:32
dtroyerI know —timing is broke, it never really was finished properly, and the fix will enable it for all calls through the Session that OSC manages, not just nova01:33
dimsklindgren: still there? :)01:33
klindgrendims the errors are all over the place - let me gist some stuff up01:33
klindgrenmostly I see: Failed to publish message to topic 'cells': [Errno 1] _ssl.c:1302: error:1409F07F:SSL routines:SSL3_WRITE_PENDING:bad write retry01:33
*** yamahata has quit IRC01:33
klindgrenNeutron errors with Broken Pipe [Error 32]01:34
jogodtroyer: re fix for timing, awesome01:34
jogodtroyer: as for slow client have you spent a few hours with cprofile on it?01:35
*** pradeep has joined #openstack-dev01:35
jogoI wonder if there is low hanging fruit01:35
dtroyerI have done no profiling, what little I did when working on timing the load times were all less than the turnaround times for API requests.01:36
*** sarob has quit IRC01:36
dtroyerthere are still probably places where unnecessary server calls are being made, I know we haven't cleaned all of that up yet either01:36
jogoso without --timing working I don't know if that is true :)01:36
*** pradeep has quit IRC01:36
jogodoing a no-op call is slow too though01:36
dtroyeralso, you'll like this, I'm finally working on the caching layer01:37
jogohttps://bugs.launchpad.net/python-openstackclient/+bug/143164901:37
openstackLaunchpad bug 1431649 in python-openstackclient "openstackclient is really slow" [Undecided,New]01:37
dtroyernot sure how much that'll help in the devstack use cases though01:37
jogodtroyer: \o/01:37
*** snewpy has quit IRC01:37
jogowell one thing that would help prob is token caching01:37
jogoso less round trips for all commands01:37
dimsklindgren: as much logs as you can share would be great!01:38
dtroyera lot of the account setup stuff in devstack uses url/token auth so there are no auth requests at all.01:38
dtroyerbut that changed recently, I'm not sure if that is true for all projects still01:38
dimsklindgren: so the scenario mehdi and i were trying did not have HAProxy in between, so that's a new wrinkle01:38
*** snewpy has joined #openstack-dev01:38
jogodtroyer: neat01:38
*** annashen has joined #openstack-dev01:39
jogodtroyer: try running openstack user01:39
jogowhich isn't a valid command and should fail01:39
jogobut fails slowly01:39
*** amotoki has joined #openstack-dev01:39
dtroyeror just run openstack.  getting to the interactive prompt does no auth and is a dog01:39
dtroyerit needs attention for sure01:39
jogo python -m cProfile -s cumtime /usr/local/bin/openstack user01:40
*** HoloIRCUser2 has quit IRC01:42
dtroyerthe first big hitters are the regex parsing and module loading01:42
jogohttp://paste.ubuntu.com/10588633/01:42
jogoyeah01:42
*** ChuckC has joined #openstack-dev01:42
jogowhy do you load all the modules?01:42
*** baoli has quit IRC01:42
dtroyerI don't.  we go to great lengths to not load things until required.01:43
*** baoli has joined #openstack-dev01:43
dtroyerbut OSC has >20 package dependencies, due to the proliferation of all of the project libs01:43
jogo time python -c 'from openstackclient.common import clientmanager'01:43
jogo0.4 seconds01:43
jogoand it logs a novaclient warning01:43
jogo/usr/local/lib/python2.7/dist-packages/novaclient/v1_1/__init__.py:30: UserWarning: Module novaclient.v1_1 is deprecated (taken as a basis for novaclient.v2). The preferable way to get client class or object you can find in novaclient.client module.01:43
dtroyerwhat release of OSC are you using?01:44
*** amotoki has quit IRC01:44
dtroyerwe've recently reworked part of that01:44
jogooh wait01:44
jogostill 0.4 seconds01:44
jogotimeit.timeit('from openstackclient.common import clientmanager',number=1)01:45
jogo0.4267799854278564501:45
jogoon trunk01:45
*** gokrokve has joined #openstack-dev01:45
jogoanyway have to run, dinner time01:46
*** ChuckC has quit IRC01:46
*** ChuckC has joined #openstack-dev01:47
*** gokrokve_ has quit IRC01:49
*** gokrokve has quit IRC01:50
jogoeven worse when I run that in a venv on trunk01:50
jogo$ python -c "import timeit ; print timeit.timeit('from openstackclient.common import clientmanager',number=1)"01:50
jogo1.1170868873601:50
*** tsekiyama has joined #openstack-dev01:52
dtroyertime python -c "pass"  : 0m0.028s01:52
dtroyertime python -c "import timeit; timeit.timeit('from keystoneclient import session',number=1)"  : 0m0.528s01:52
*** xarses has joined #openstack-dev01:52
dtroyerI'm building a table01:52
jogomorganfainberg: !01:52
jogojamielennox: !01:52
jamielennoxthat's high01:53
* morganfainberg lets jamielennox poke at this.01:53
*** alanf-mc has quit IRC01:53
*** bswartz has joined #openstack-dev01:53
*** Marga_ has quit IRC01:53
* jamielennox is supposed to be doing stuff01:53
dtroyerit'll only be meaningful relatively, my Air isn't the fasted thing around01:53
jamielennoxso the weird bit for me is that session is not that big a class in terms of import01:54
jamielennoxlike lots of things import session, but it doesn't import much01:54
*** kacieee has quit IRC01:55
jogojamielennox: cprofile FTW01:55
jogoand other profilers01:55
jamielennoxtoday is still fighting apache day01:56
jogodtroyer: thanks for looking into this01:56
clarkbI have had good luck with yappi01:56
*** kevinbenton has joined #openstack-dev01:57
jamielennoxi think it's measuring the import system01:57
dtroyerjamielennox: yup, it is, but just loading OSC to do nothing takes over a second01:58
dtroyerkeystone takes just under a second01:58
jamielennoxyea, i got 4 seconds on first then 0.8 after that01:59
morganfainberginitial compile to .pyc?01:59
*** annegentle has joined #openstack-dev01:59
jamielennoxthere'd be some OS caching and other things for running it twice in a row like that02:00
dtroyerI'm running them all at least three times and taking the lowest02:00
jamielennoxmeaninful benchmarks are hard02:00
dtroyerbut outliers should be visible02:01
*** macjack has joined #openstack-dev02:01
*** patrickeast has quit IRC02:02
*** kacieee has joined #openstack-dev02:02
*** Marga_ has joined #openstack-dev02:03
*** annegentle has quit IRC02:04
*** hdd_ has joined #openstack-dev02:06
*** gongysh has joined #openstack-dev02:06
*** harlowja is now known as harlowja_away02:07
*** asselin has quit IRC02:09
*** rhagarty has quit IRC02:09
*** rhagarty_ has quit IRC02:09
*** rhagarty has joined #openstack-dev02:10
*** rhagarty_ has joined #openstack-dev02:10
*** asselin has joined #openstack-dev02:10
*** dustins has quit IRC02:11
*** dustins has joined #openstack-dev02:12
*** asettle-mtg has quit IRC02:13
*** galstrom_zzz is now known as galstrom02:14
*** dims has quit IRC02:14
*** marun has joined #openstack-dev02:16
*** Longgeek has joined #openstack-dev02:18
*** unicell has quit IRC02:19
*** annegentle has joined #openstack-dev02:19
*** andreykurilin has quit IRC02:22
*** andreykurilin has joined #openstack-dev02:22
*** marun has quit IRC02:22
*** ijw has quit IRC02:22
*** kudryashova has quit IRC02:23
*** kudryashova has joined #openstack-dev02:23
*** novas0x2a|laptop has quit IRC02:24
*** annegentle has quit IRC02:25
*** tsekiyama has quit IRC02:26
*** annegentle has joined #openstack-dev02:26
*** tsekiyama has joined #openstack-dev02:27
*** ijw has joined #openstack-dev02:28
*** ijw has quit IRC02:29
*** ijw has joined #openstack-dev02:30
*** cooldeep_ has joined #openstack-dev02:31
*** baoli has quit IRC02:32
*** baoli has joined #openstack-dev02:32
*** reed has quit IRC02:33
*** dims has joined #openstack-dev02:34
*** Longgeek has quit IRC02:35
*** cooldeep__ has quit IRC02:35
*** tsekiyama has quit IRC02:36
*** sivy has joined #openstack-dev02:36
*** haomaiwang has joined #openstack-dev02:38
*** pal has quit IRC02:39
*** dims has quit IRC02:39
*** sigmavirus24_awa is now known as sigmavirus2402:42
*** devlaps has quit IRC02:43
*** achanda has joined #openstack-dev02:44
*** HoloIRCUser1 has joined #openstack-dev02:45
*** annegentle has quit IRC02:46
*** carl_baldwin has quit IRC02:48
*** harshs has joined #openstack-dev02:51
*** ignacio-scopetta has quit IRC02:52
*** ignacio-scopetta has joined #openstack-dev02:52
*** baoli has quit IRC02:54
*** jmccrory has joined #openstack-dev02:55
*** amotoki has joined #openstack-dev02:55
*** ignacio-scopetta has quit IRC02:57
*** tonyha has joined #openstack-dev02:59
*** ghostpl_ has joined #openstack-dev02:59
*** amotoki has quit IRC03:00
*** ghostpl_ has quit IRC03:04
*** TrevorV has quit IRC03:04
*** bdpayne has joined #openstack-dev03:05
*** annashen has quit IRC03:05
*** bdpayne has quit IRC03:06
*** HoloIRCUser1 has quit IRC03:06
*** ptoohill has quit IRC03:06
*** annashen has joined #openstack-dev03:07
*** TrevorV has joined #openstack-dev03:11
*** ptoohill has joined #openstack-dev03:11
*** pradeep has joined #openstack-dev03:12
*** amitgandhinz has quit IRC03:13
*** pradeep1 has joined #openstack-dev03:15
*** pradeep has quit IRC03:17
*** harshs has left #openstack-dev03:17
*** annashen has quit IRC03:18
*** jaypipes has joined #openstack-dev03:18
*** nelsnelson has joined #openstack-dev03:19
*** tonyha has quit IRC03:19
*** annashen has joined #openstack-dev03:19
*** ptoohill has quit IRC03:20
*** TrevorV has quit IRC03:22
*** TrevorV has joined #openstack-dev03:23
*** gyee has quit IRC03:23
*** galstrom is now known as galstrom_zzz03:23
*** ptoohill has joined #openstack-dev03:23
*** jmccrory has quit IRC03:23
*** jmccrory has joined #openstack-dev03:24
*** pradeep1 has quit IRC03:24
*** dimtruck is now known as zz_dimtruck03:24
*** spzala has quit IRC03:25
*** ptoohill has quit IRC03:26
*** TrevorV has quit IRC03:26
*** otter768 has joined #openstack-dev03:28
*** annashen has quit IRC03:30
*** Longgeek has joined #openstack-dev03:31
*** tiswanso has quit IRC03:32
*** otter768 has quit IRC03:33
*** gongysh has quit IRC03:33
*** TrevorV has joined #openstack-dev03:35
*** ptoohill has joined #openstack-dev03:35
*** ijw has quit IRC03:36
*** diegows has quit IRC03:38
jogojamielennox: got some numbers that may be useful03:38
jogohttp://paste.openstack.org/show/192008/03:39
*** zzzeek has quit IRC03:40
*** annashen has joined #openstack-dev03:40
jogoso it looks like keystoneclient/__init__.py is slowwww03:40
*** ajmiller has joined #openstack-dev03:41
jogowhich is coming from keystoneclient/discover being slow03:41
jamielennoxwhy would discover be slow03:41
jamielennoxoh, because it's a stupid circular thing and discover often ends up importing the whole client03:41
*** Longgeek has quit IRC03:41
jogothat makes sense03:42
*** asettle has joined #openstack-dev03:42
*** annashen has quit IRC03:43
jogojamielennox: I565c78ef8910353c4e1ce1641b42fba7cdbd77d8 may be it03:43
*** annashen has joined #openstack-dev03:44
*** gongysh has joined #openstack-dev03:45
jamielennoxi guess that's just making everything available if you just "import keystoneclient"03:45
*** annashen has quit IRC03:47
*** tsekiyama has joined #openstack-dev03:49
*** annashen has joined #openstack-dev03:49
*** ijw has joined #openstack-dev03:51
*** amalagon has quit IRC03:52
*** Longgeek has joined #openstack-dev03:52
*** gokrokve has joined #openstack-dev03:53
*** ijw has quit IRC03:53
*** tsekiyama has quit IRC03:53
*** ijw has joined #openstack-dev03:53
*** jckasper has quit IRC03:54
jogojamielennox: https://review.openstack.org/16406603:55
jogojamielennox: can you confirm the timing03:55
jamielennoxjogo: i'm pretty sure that'll get -1ed from breaking compatibility03:55
jogothe original patch just warned about build errors03:56
jogothe original patch just warned about build warnings*03:56
jogoso meh03:56
jogobut yeah you may be right03:56
*** nelsnelson has quit IRC03:57
*** diogogmt has joined #openstack-dev03:57
jogoso on my current box, before: 0.16 seconds03:57
jogoafter: 0.10 seconds03:58
jogoand scale those times up for slow devstack boxes03:58
*** zaitcev has quit IRC03:58
*** annashen has quit IRC03:59
*** rushiagr_away is now known as rushiagr03:59
*** jmccrory has quit IRC03:59
jogomorganfainberg dtroyer:  ^04:00
morganfainbergjogo: o/04:00
jogohttps://review.openstack.org/164066 should make things suck less04:00
jogospeed wise04:00
*** nijaba has quit IRC04:01
morganfainbergjogo: so I want to split session into its own lib like. Now.04:01
jogomorganfainberg: that works too04:01
dtroyermorganfainberg: Please!??!!??!!?!?!!!??????!!!!!!!!!04:02
morganfainbergjogo: keystonecommon. I could probably spin up the change tomorrow. But it would require tc approval and a g-r sync and then updating a lot of clients.04:02
jogohmm now you have some regex that are compiling somewhere04:02
*** diogogmt has quit IRC04:02
jogohttp://paste.openstack.org/show/192009/04:02
clarkbya please dont that will create a ton of work right before release...04:03
morganfainbergclarkb: that is def my concern.04:03
jogomorganfainberg: what about my patch?04:03
morganfainbergjogo: looking. It might be a non-starter but I'm looking now.04:03
morganfainbergClarkb but maybe first think liberty session split out. If we're too close to release for your comfort.04:04
*** annashen has joined #openstack-dev04:04
morganfainbergjogo: yep that is compatibility :(04:04
clarkbwell I dont quite understand why you need another lib at all but in general add lib to central thing right before release is :(04:04
jogomorganfainberg: why?04:05
morganfainbergjogo: ksc has to stay silly levels of compatible.04:05
dtroyerwe need to split it out WITHOUT the compatibility bits.  Or pull that part out of the SDK.  Something without all the crap that we've been carrying along04:05
jogooriginal patch https://review.openstack.org/#/c/99745/04:05
morganfainbergI think that's compat support at least.04:05
jogoImports to fix build warnings04:05
*** annashen has quit IRC04:06
morganfainbergOh maybe it wasn't.04:06
morganfainbergOk sure.04:06
morganfainbergLet me finish dinner. And a drink.04:06
morganfainbergdtroyer: let's plan for liberty.04:06
jogomorganfainberg dtroyer: think getting OSC load time down to under 0.5 seconds for Kilo is a good goal to have04:06
*** bhunter71 has quit IRC04:06
*** kacieee has quit IRC04:06
morganfainbergdtroyer: well once dust is settled for kilo that is.04:06
*** nijaba has joined #openstack-dev04:07
*** nijaba has quit IRC04:07
*** nijaba has joined #openstack-dev04:07
morganfainbergBut I think that revert can probably go in then jogo let me take a closer look post dinner.04:07
dtroyerI've done the part I think we need to do twice already, this isn't rocket science.  but it'll be worthless if there is any compatibility stuff brought along.  that's what keeps killing everything04:08
morganfainbergdtroyer: that's part of the issue. But I think we can make a new lib session no compat Magic and have the compat Magic in ksc.04:08
jogomorganfainberg: :) enjoy the food04:08
*** gokrokve has quit IRC04:09
*** sivy has quit IRC04:09
morganfainbergjogo: turkey bacon and jalapeño :)04:09
dtroyerI'd leave the old stuff alone.  why bother?  how much time has been wasted trying to keep it going?04:09
morganfainbergSorry turkey, bacon, jalapeño04:09
*** sivy has joined #openstack-dev04:09
morganfainbergdtroyer: to not break people while they move over. ;)04:09
*** garyh has quit IRC04:09
morganfainbergClient is kind of a thorn because of so much compat.04:10
*** sivy has quit IRC04:10
*** sivy has joined #openstack-dev04:10
morganfainbergI really want common code out of ksc. So ksc is really just a lib for keystone's api not for the auth bits.04:10
* dtroyer stops beating head on desk now04:10
*** amotoki has joined #openstack-dev04:11
dtroyerexactly.04:11
*** annashen has joined #openstack-dev04:11
*** diogogmt has joined #openstack-dev04:11
dtroyerand it's been done already.04:11
morganfainbergbut we carry a lot of compat code because we break people in bad ways otherwise. If we offer a clean interface that lightens that load great. But compat has to exist because $client_works_with_all_versions04:11
dtroyerold client does that04:12
morganfainbergdtroyer: so keystonecommon becomes clean no compat. Ksc holds compat layers.04:12
dtroyerstart the F#@% over04:12
*** BharatK has joined #openstack-dev04:12
morganfainbergI can't do that yet. If we do stable clients issue is 100% gone. You're going to see rejoicing from me.04:12
dtroyerwe have a low-level API outline in OSC.  we have an SDK with a full ORM04:12
dtroyerand we're still spending $HOURS propping up the old stuff04:13
morganfainbergBut part of why I keep telling people go use OSC is for this very reason.04:13
morganfainbergAnd why I drew a hard line on no more cli for ksc.04:13
dtroyeryes.  thanks for that.  but it still totally depends on keystoneclient.  that as only the CLI04:13
morganfainbergBut we still support in theory grizzly with ksc04:14
dtroyerthis is why I stay up late at night trying to replace as much of the old sh!t as possible04:14
morganfainbergClients are a problem.04:14
dtroyerthe old clients don't go anyhere.   we supprot old APIs, not old libs04:14
morganfainbergI only say grizzly cause I don't think anyone actually runs Folsom or Essex still.04:14
dtroyerREAT APIs04:14
dtroyercrap04:14
dtroyerREST APIs04:15
morganfainbergThat wasn't the contract made at the time of ksc inception.04:15
dtroyerso it becomes a this or that choice, not a forced migration04:15
morganfainbergWe would need ksc204:15
morganfainbergWhere that isn't the issue anymore.04:15
dtroyerno, and that's what I am trying to say.04:15
*** amotoki has quit IRC04:15
jamielennoxcan someone please come up with a better name than keystonecommon for this04:16
dtroyerstop spending time propping up the old crap.  build new.  build clean.04:16
jamielennoxif we pull out session and the base auth then there's nothing keystone about it04:16
morganfainbergjamielennox: name tbd04:16
*** Marga_ has quit IRC04:16
dtroyerI'd love to remove keystone altogether, but that's just me.  authlib?04:16
jamielennoxthis has really been my main hold off for having done it already04:16
*** pal has joined #openstack-dev04:16
jamielennoxbecause once that's extracted SDK can use all this session stuff04:16
dtroyer+++++++++++++++++++++++04:17
morganfainbergdtroyer: I asked and was told put this in sdk don't break ksc compat04:17
*** deepthi has joined #openstack-dev04:17
dtroyerthis is what the low layer of the SDK was supposed to be04:17
dtroyerit isn't04:17
dtroyerwe don't break ksc.  leave it there.04:17
* dtroyer done. youse guys are the choir04:18
morganfainbergHehe04:19
jogoohh I generated a call graph for keystoneclient session04:20
jamielennoxoh o04:20
*** yatin has joined #openstack-dev04:21
*** jckasper has joined #openstack-dev04:22
*** annashen has quit IRC04:23
*** unicell has joined #openstack-dev04:23
jogomorganfainberg: jamielennox http://i.imgur.com/nkD3Thh.png?104:25
jogohttp://i.imgur.com/nkD3Thh.png04:25
jogojsonutils is slooow04:25
morganfainbergjogo: yeah looks like it.04:25
jamielennoxthat will pull in requests and a bunch of other stuff04:27
jamielennoxoh yea - jsonutils has all that dynamic loading of stuff on import04:27
morganfainbergI wonder if we can go super basic there and use basic json module for this in Python04:28
morganfainbergRather than the jsonutils stuff.04:28
jogohmm removing it doesn't make a big difference04:29
jogoother things are pulling in slow regex04:29
jogo        1    0.002    0.002    0.039    0.039 /home/jogo/Develop/openstack/python-keystoneclient/.tox/venv/local/lib/python2.7/site-packages/pbr/version.py:19(<module>)04:29
morganfainbergjogo: part of the problem here is... Python04:29
morganfainbergNot unsolvable just a common issue.04:30
morganfainbergEsp. With the kind of lib deps we end up with.04:30
*** pradeep has joined #openstack-dev04:30
jogomorganfainberg: yeah your right04:31
jogo$ python -c "import timeit; print timeit.timeit('from pbr import version',number=1)"04:31
jogo0.088661909103404:31
jogoand I think everything imports pbr.version somehow04:31
morganfainbergYep.04:32
dtroyerso how about for devstack we wrap up a bunch of the specific api calls with curl?  most of what evstack does is create users and projects, leave the long-running bits alone (image upload)04:32
jogoahh keystoneclient/__init__.py:import pbr.version04:32
morganfainbergShort of making pbr c-lib you're going to keep hitting these issue. Other libs similar04:32
jogomordred: keystoneclient/__init__.py:import pbr.version04:32
morganfainbergThough making pbr c bindings may not be the worst idea.04:32
jogomordred: $ python -c "import timeit; print timeit.timeit('from pbr import version',number=1)"04:33
jogo0.088661909103404:33
jogoyour slow04:33
jogoanyway I have one down the profiling rabbit hole far enough for one night04:33
jogowe at least have one clear win from this04:33
jogohttps://review.openstack.org/#/c/164066/04:33
morganfainbergjogo: hehe. First rule of optimization: don't except when it is stupid not to.04:34
jogo?04:34
jogoand I have hunch that we can keep banging on why OSC is slow we will find other hopefully easy things04:34
morganfainbergIt's better to optimize after the fact than prematurely. This is the after the fact.04:34
jogoahh, yup04:35
morganfainbergdtroyer: we could also write everything in c against libcurl for clients.04:35
*** kobis has joined #openstack-dev04:35
dtroyerI started doing that 3 years ago, believe it or not04:35
dtroyerwas my first choice04:35
morganfainbergdtroyer: I get the feeling curl will make people cry more.04:36
morganfainbergdtroyer: just a hunch.04:36
*** zz_dimtruck is now known as dimtruck04:36
dtroyerJesse convinved me to switch to go.  I still have working code04:36
*** hdd_ has quit IRC04:37
jogoheh removing the pbr line from __init__04:37
*** sarob has joined #openstack-dev04:37
*** Marga_ has joined #openstack-dev04:37
dtroyerit was the JSON handling that became a total pain04:37
jogotakes import keystoneclient from 0.036 to 0.0003304:37
morganfainbergjogo: making pbr c bindings is not the worst idea ever.04:37
morganfainbergOr at least expensive parts.04:37
jogomorganfainberg: well $ time python -c ''04:38
jogoreal 0m0.017s04:38
morganfainbergRight. But we pay that anyway.04:39
jamielennoxthe expensive parts of pbr is all of it right? it does a lot of guessing and looking for files04:39
*** annashen has joined #openstack-dev04:39
morganfainbergjamielennox: not in all cases. But yeah.04:39
morganfainbergAfaik04:39
morganfainbergI haven't looked at it recently.04:39
*** yeylon has joined #openstack-dev04:39
jogotime ls: real0m0.002s04:39
*** vuntz_ has quit IRC04:40
morganfainbergjogo: I read that as "time is real". Duh time is a real number in posix04:40
*** panini has joined #openstack-dev04:40
dtroyerremember, you're still chasing things that are one or more orders of magnitude smaller than a single REST round trip04:40
*** sarob has quit IRC04:41
morganfainbergdtroyer: I'm actually looking at enabling some bootstrap of keystone via keystone-manage vs needing rest. But rest is never optimized for speed.04:41
morganfainbergIt's optimized for usability (we might miss that somewhat in our Apis too)04:42
*** sputnik13 has joined #openstack-dev04:43
dtroyerthen why stew over the import time of pbr?04:43
*** paninime66 has joined #openstack-dev04:43
jogodtroyer: that is a good point nova takes about .1 or so at least04:43
jogodtroyer: can you try my patch on your slowish macbook air?04:43
jogohttps://review.openstack.org/#/c/164066/04:43
jogoas I think that saves the right order of magnitude04:44
*** panini has quit IRC04:44
*** panini has joined #openstack-dev04:44
*** vuntz has joined #openstack-dev04:47
*** paninime66 has quit IRC04:47
*** Longgeek has quit IRC04:47
*** kobis has quit IRC04:47
*** ayoung has quit IRC04:47
*** kobis has joined #openstack-dev04:47
dtroyerjogo: https://etherpad.openstack.org/p/osc-timing   at the bottom are the first three I ran, not much change so far04:47
*** paninime66 has joined #openstack-dev04:48
*** ghostpl_ has joined #openstack-dev04:48
dtroyerkeystoneclient.session got a bit better04:48
dtroyerosc's clientmanager got about the same amount worse04:48
*** panini has quit IRC04:48
morganfainbergLol04:49
*** panini has joined #openstack-dev04:49
morganfainbergdtroyer: because client  mgr didn't have it pre imported04:50
*** YorikSar has quit IRC04:50
dtroyerso they need to be impoted one way or another.04:51
*** SumitNaiksatam has quit IRC04:51
morganfainbergYeah. But not for all clients04:51
morganfainbergMight be a moderate savings where only session is needed.04:52
morganfainbergOSC will net a wash.04:52
*** ghostpl_ has quit IRC04:52
*** paninime66 has quit IRC04:52
*** SumitNaiksatam has joined #openstack-dev04:52
dtroyerthat timeit import test fdoesn't even actually instantiate any of the stuff OSC dynamically loads, like all of the clients04:53
*** panini has quit IRC04:53
* jogo calls it a night04:53
dtroyerso yeah, it'lll was for anything using a non-identity client04:53
*** panini has joined #openstack-dev04:54
*** annashen has quit IRC04:54
morganfainbergExpect a net wash regardless. Unless we rewrite in c against libcurl were hitting Python-isms. In my opinion.04:55
dtroyerexactly. and the only way to reduce this time is to eliminate the need to load so frixking much stuff04:55
morganfainbergYanno. Libcurl could be worse ideas.04:56
dtroyerI'd be happy to finish my go client.  can you distract vishy for me for a couple of weeks?04:56
*** annashen has joined #openstack-dev04:56
morganfainbergI could probably distract vishy but you'd probably be unhappy with how I'd distract him :P04:57
morganfainbergCause it wouldn't net you spare time *shiftyeyes*04:58
*** panini has quit IRC04:58
dtroyerthe sad thing, all this work isn't going to make user experiences that much better.  and never will fix installing these clients on windows04:59
*** ujuc has joined #openstack-dev04:59
clarkbare there major issues with that other than say lxml?05:00
clarkbinstall on windows05:00
*** buzztrol_ has quit IRC05:00
dtroyerpyopenssl, other c binaries required.  general packaging05:00
dtroyerplus, which runtime?05:01
*** YorikSar has joined #openstack-dev05:01
clarkbI thought lxml was the only thing that needed C last I looked05:02
morganfainbergclarkb: don't hurt me lxml is a pita :(05:02
clarkb(which is why I wanted to kill it)05:02
morganfainbergHelp me kill it. Plz.05:02
dtroyerwhen I last did that ~18 months ago, I think I needed to find at least three binary packages that matched the runtime to do the install05:02
morganfainbergActually that is on my list to kill.05:03
dstufftYou could probably make things import faster by not pulling things from pkg_resources05:03
dtroyerthis is all pre-wheels05:03
dstufftand instead bake the version number into the thing at sdist build time05:03
dstuffte.g. just generate a .py file or something05:03
*** buzztroll has joined #openstack-dev05:03
dtroyerdstufft: agreed.  that seems to take a non-trivial amount of our load time05:03
morganfainbergdstufft: fair point.05:03
dtroyerbut still, shaving three tenths to still wait for 1-2 seconds anyway?  I have other interesting things to do05:04
dstufftimporting pkg_resources walks the entire sys.path, IIRC y'all don't use console script wrappers because of how heavy the pkg_resources import is05:04
dstufft(which is kind of funny if you then go and trigger a pkg_resources in __init__.py anyways)05:05
morganfainbergdstufft: we do so much with entrypoints I don't think there is a big win to be had there.05:05
*** gnuoy has quit IRC05:05
*** jamespage has quit IRC05:05
*** ijw has quit IRC05:05
morganfainbergAnd we consciously moved down that path.05:05
*** gnuoy has joined #openstack-dev05:05
*** jamespage has joined #openstack-dev05:05
dstufftit wouldn't be very hard to make an entrypoints library that didn't rely on pkg_resources, though at some point you pretty much have to walk the sys.path for entry points, but you'd still cut out the import time walking05:06
*** YorikSar has quit IRC05:06
morganfainbergdtroyer: you have me wondering if we would see a real benefit if we had a nice framework to result in portable c/c++ clients05:06
*** Mandell has joined #openstack-dev05:06
clarkbportable C lol05:07
dstufftYou probably don't want to rely on C for the clients05:07
dtroyeragreed on that too05:07
dstuffteven though openstacksdk techincally already does :( because oslo.utils pulls in netifaces05:07
dstufftbut that can be fixed05:07
morganfainbergclarkb: shh. I worked for a game company that did a lot of Linux / windows portability.05:07
dtroyergo, pascal (shows my age), anything that produces a static or near-static binary05:07
morganfainbergIt's amazing how well it works if you spend a bit of time early on.05:08
dstufftIf you have pure Python you can pretty easily make a "binary" that only relies on Python being installed ahead of time05:08
morganfainbergSorry Linux/Mac/windows portability.05:08
dtroyerdstufft: I tried that with OSC during our first shark week.  entry points kills us dead there.05:09
dstufft(and there are things you can do to remove the need to have Python pre-installed on Windows too, which leaves OSX and Linux)05:09
morganfainbergdtroyer: I only was thinking c/c++ for the benefit of libcurl. Cause I don't want wrappers. But I admit I have ignored go05:09
dstufftdtroyer: you didn't have me :) As I recall there's nothing stopping entry points from working05:09
morganfainbergdstufft: os x is useless in Python land. They have so many badly dated libs in ways brew can't fix it. :(05:10
dstufftmorganfainberg: meh, system Python would work fine for a "static" client binary05:10
clarkbI dunno if its not abi incompatibility its compiler differences or its arch differences and thats just one version of linux05:10
morganfainbergSo anything that has any c binding has a 50/50 and getting worse chance of working.05:10
*** garyh has joined #openstack-dev05:10
*** sputnik13 has quit IRC05:11
dstufftoh you mean for C things05:11
morganfainbergI'm about to write os x off as a worse desktop to write code for than windows.05:11
dstufftyea C is bad, sometimes you need it, but you make htings a lot harder for people05:11
clarkbI really enjoy C but its not my choice for portable anything05:11
morganfainbergIf you aren't using objective c they don't care. And that is sad.05:11
dstufftmorganfainberg: heh, I use OS X fulltime, but pyenv Python instead of system python, and homebrew all the things05:11
morganfainbergdstufft: I was hard core os x fanboy (I still use a 15" MBP) but Yosemite has made me want something else.05:12
clarkbits great for making airplane radios or brewery controllers though05:12
morganfainbergThe oss libs are bad.05:12
morganfainbergAnd I rely on them a lot. And brew only is fixing 60% now. And each release is getting worse.05:13
dstufftmorganfainberg: I just install new versions of them with homebrew *shrug*, at least the UX more or less works05:13
*** yeylon has quit IRC05:13
dstufft(I don't *like* any OS, I just hate them less :D)05:13
dtroyerdstufft: sounds like you haven't tried VMS?05:14
* dtroyer ducks05:14
*** coolsvap|afk is now known as coolsvap05:14
*** exploreshaifali has joined #openstack-dev05:14
morganfainbergI'm starting to think Linux is a better desktop. Maybe mordred's views are making more sense because apple has been making my life less fun. Also the bugs in their basic software. God. Mail is broken. Among other things.05:14
dstufftmorganfainberg: last time I tried Linux was when I still hated Apple more than I hated Linux on the desktop heh05:15
dstufftI switched from Windows to Linux, I lasted about a month before i tossed my ~$2k computer and bought a new ~$4k computer :V05:15
morganfainbergNow I just need a machine that matches: 16gb ram, high-res ips display, 1tb ssd, 12" or smaller form factor, non-crappy plastic case, and a real processor for 8-12hrs of life.05:16
clarkbjoin us :)05:16
morganfainbergI was so hopeful at the 12" macbook with Linux on it. Then I saw core-m and was sad.05:16
dtroyerI just want a scratch pad that doesn't suck05:16
dstufftI'm "lucky" at least in that I basically only use a non-laptop as my primary machine05:16
clarkblinux is not without warts but you replace them with other warts05:17
morganfainbergclarkb: if I can find a machine that meets my needs I'm over to Linux.05:17
morganfainbergSold. Done. Problem is finding the hardware. I can't sacrifice the MBP yet, so I need something else to start.05:17
clarkbthe new lenovos are pretty nice05:18
StevenKmorganfainberg: I want an X series with 16 or 32G05:18
StevenKThen I would be totally sold05:18
morganfainberg13" MBP with Linux is looking like the best bet, but.. It's not there.05:18
clarkbbut only 8gb ram which is partly an intel problem aiui05:18
nibalizermorganfainberg: i've had the mba with linux05:18
dstufftclarkb: heh, Linux kept having xorg peg my CPU once every 2-3 hours, requiring me to kill xorg (which broke all the things, requiring a reboot). Then a reboot cause dme to have to force my intel NIC to use a different driver or I got bandwidth measured in bits. The bug tracker told me to custom compile xorg with some patch and I said "f this" and bought my iMac05:18
morganfainbergStevenK: dude yes. Not just yes but <curse word> yes.05:18
nibalizernot actually very good05:18
StevenKmorganfainberg: YES05:18
dstuffthaving to reboot my computer every 3 hours sucked05:18
nibalizersuper bad battery life because the drivers in linux aren't any good05:19
morganfainbergStevenK: even 16gb and new 4-channel PCI ssd05:19
*** kobis has quit IRC05:19
clarkbdstufft niw you can wayland/mir05:19
StevenKYup05:19
clarkbdstufft different warts05:19
StevenKI'm hoping Skylake will fix it05:19
morganfainbergStevenK: sadly I am not hopeful05:19
StevenKI'm not either05:19
StevenKBut I can dream05:19
morganfainbergStevenK: actually I want the new Google chrome pixel but with a real storage option.05:20
StevenKNot interested.05:20
StevenKI want some actual compute power :-P05:20
morganfainbergDude I'd install Linux and lose chromeos05:20
morganfainbergIt's an i705:20
morganfainberg16gb of ram05:20
morganfainbergJust 64gb of crappy ssd05:20
morganfainbergAnd afaict not upgradable.05:21
StevenKOh, I keep forgetting about the Pixel05:21
clarkbsoldered05:21
clarkbya not upgradeable05:21
dstufftclarkb: http://mjg59.dreamwidth.org/31714.html has some thoughts that match mine (and some that don't)05:21
morganfainbergIf they offered real ssd options like 4channel PCI ssd at 512gb or 1tb I'd buy one tomorrow.05:21
morganfainbergBut they opted for crap for storage cause chrome05:22
morganfainberg$1200 for 64gb of ssd is worse than a core-m processor05:22
StevenKCannonlake is going to be *very* interesting, thinking about Skylake.05:23
*** vigneshvar has joined #openstack-dev05:24
dstufftWhat I really want is the iMac with the 5k display :3 but $$$05:24
clarkbdstufft ya I recognize I am weird but I linux all the things just fine with a diverse set of hardware. though most slightly older. hell even my brother runs it now and upgrades without help05:25
*** kobis has joined #openstack-dev05:25
clarkbthe only major hiccup I have had recently was intel wireless nic would kill atheros wap05:25
*** asettle has quit IRC05:26
StevenKHm05:26
morganfainbergdstufft: wait for thunderbolt 3 otherwise you can't use it as a target as thunderbolt 2 doesn't have then bandwidth for 5k (why we don't have retina thunderbolt displays)05:26
StevenKThis Ivy Bridge desktop is probably getting close to 3 years old05:26
dstufftmorganfainberg: my 2011 iMac still works fine, so I probably won't be getting one anytime soon, I just want one05:27
morganfainbergI almost got one. Hell I might get a new MacBook if people show core-m on linux can work with that hardware. I was ultraportable now. But a non sucky one and the x-1 is too big with crappy ram.05:28
*** sivy has quit IRC05:28
StevenKdstufft: I keep thinking of http://www.tvfanatic.com/quotes/aw-twenty-dollars-i-wanted-a-peanut-twenty-dollars-can-buy/05:28
*** dimtruck is now known as zz_dimtruck05:28
*** sivy has joined #openstack-dev05:28
dstufftlol05:29
* morganfainberg is probably going to get a 13" MBP, send it to colorware to rip out the apple logo, and install Linux on it.05:29
*** otter768 has joined #openstack-dev05:29
morganfainbergStevenK: any word on if broadwell i5/i7 are any good?05:30
morganfainbergI just haven't seen much info on them.05:30
clarkbits hit and miss05:31
clarkbI think long answer is yes if you like battery life no if you want to zoom zoom05:31
clarkber short answer05:31
*** ghostpl_ has joined #openstack-dev05:32
*** sivy has quit IRC05:33
*** kobis has quit IRC05:33
morganfainbergclarkb: don't get me wrong I like cloud resources but that is lame :(05:33
StevenKWhat about desktop Broadwell?05:33
clarkbhave those arrived yet?05:33
morganfainbergclarkb: iirc yes.05:33
*** otter768 has quit IRC05:34
morganfainbergBut very new.05:34
*** kbrierly has quit IRC05:34
StevenKWikipedia for Broadwell only shows U processors05:35
*** Mandell has quit IRC05:36
StevenKDesktop processors tend to have more like 45W TDP, not 15-2805:36
morganfainbergStevenK: I might be wrong I'm willing to admit it ;). I thought I saw some out.05:36
*** annashen has quit IRC05:37
*** Mandell has joined #openstack-dev05:38
*** exploreshaifali has quit IRC05:38
StevenKBroadwell K processors should be out this quarter. Broadwell-E is Q3 this year05:39
StevenKOh, delayed until mid 201505:40
StevenKJust in time for Skylake :-P05:40
*** annashen has joined #openstack-dev05:40
*** Nikolay_St has quit IRC05:41
*** kso has quit IRC05:41
*** annashen has quit IRC05:44
*** exploreshaifali has joined #openstack-dev05:47
*** Longgeek has joined #openstack-dev05:48
*** kbrierly has joined #openstack-dev05:48
*** annashen has joined #openstack-dev05:53
*** unicell has quit IRC05:53
*** lpetrut has joined #openstack-dev05:54
*** unicell has joined #openstack-dev05:54
*** YorikSar has joined #openstack-dev05:54
*** exploreshaifali has quit IRC05:55
morganfainbergHaha06:01
*** numan has joined #openstack-dev06:01
*** xingchao_ has joined #openstack-dev06:06
*** achanda has quit IRC06:10
*** xingcha__ has quit IRC06:10
*** markvoelker has quit IRC06:11
*** annashen has quit IRC06:11
*** markvoelker has joined #openstack-dev06:12
*** achanda has joined #openstack-dev06:13
*** markvoelker has quit IRC06:16
*** sdake_ has quit IRC06:17
*** Sukhdev has joined #openstack-dev06:18
*** vigneshvar has quit IRC06:19
*** sdake_ has joined #openstack-dev06:21
*** Longgeek has quit IRC06:21
*** stevemar has quit IRC06:22
*** cooldeep__ has joined #openstack-dev06:22
*** amotoki has joined #openstack-dev06:23
*** yatin has quit IRC06:23
*** armax has quit IRC06:25
*** cooldeep_ has quit IRC06:26
*** achanda has quit IRC06:28
*** oro_ has joined #openstack-dev06:29
*** oro has joined #openstack-dev06:29
*** AnilV4 has joined #openstack-dev06:31
*** gongysh has quit IRC06:32
*** achanda has joined #openstack-dev06:34
*** SridharG1 has joined #openstack-dev06:35
*** stevemar has joined #openstack-dev06:35
*** harshs has joined #openstack-dev06:36
*** yatin has joined #openstack-dev06:37
*** skraynev has joined #openstack-dev06:37
*** achanda has quit IRC06:38
*** eghobo has joined #openstack-dev06:38
*** michchap has quit IRC06:38
dtroyerjogo: https://review.openstack.org/164091 should get OSC's —timing close, although jamielennox will still hate it as much as he did last time ;)  Maybe I can make it pretty in the morning06:38
* dtroyer sleeps now06:39
*** markvoelker has joined #openstack-dev06:42
*** Sukhdev has quit IRC06:43
*** stevemar has quit IRC06:44
*** aveek has joined #openstack-dev06:45
*** rushiagr is now known as rushiagr_away06:45
*** markvoelker has quit IRC06:47
*** pal has quit IRC06:49
*** xarses has quit IRC06:50
*** k4n0 has joined #openstack-dev06:50
*** jichen has joined #openstack-dev06:50
*** jcoufal has joined #openstack-dev06:51
*** pal has joined #openstack-dev06:52
*** ncoghlan has quit IRC06:53
*** coolsvap is now known as coolsvap|afk06:54
*** nshaikh has joined #openstack-dev06:55
*** Mandell has quit IRC06:55
*** cooldeep__ has quit IRC06:55
*** MasterPiece has joined #openstack-dev06:56
*** michchap has joined #openstack-dev06:58
*** mrunge has quit IRC07:00
*** sivy has joined #openstack-dev07:00
*** mrunge has joined #openstack-dev07:01
*** xarses has joined #openstack-dev07:04
*** afazekas has joined #openstack-dev07:04
*** aveek has quit IRC07:04
*** scheuran has joined #openstack-dev07:05
*** bobmel has joined #openstack-dev07:06
*** eghobo has quit IRC07:07
*** pkoniszewski has joined #openstack-dev07:07
*** eghobo has joined #openstack-dev07:08
*** coolsvap has joined #openstack-dev07:09
*** bobmel_ has quit IRC07:09
*** SumitNaiksatam has quit IRC07:09
*** Mandell has joined #openstack-dev07:14
*** sivy has quit IRC07:14
*** Longgeek has joined #openstack-dev07:18
*** yatin has quit IRC07:22
*** dims has joined #openstack-dev07:23
*** Qiming has quit IRC07:23
*** Qiming has joined #openstack-dev07:23
*** tnovacik has joined #openstack-dev07:27
*** dims has quit IRC07:27
*** cfriesen has quit IRC07:28
*** otter768 has joined #openstack-dev07:30
*** sahid has joined #openstack-dev07:30
*** jamielennox has quit IRC07:31
*** oro_ has quit IRC07:32
*** oro has quit IRC07:32
*** jamielennox has joined #openstack-dev07:34
*** ijw has joined #openstack-dev07:34
*** otter768 has quit IRC07:35
*** ijw has quit IRC07:35
*** ijw has joined #openstack-dev07:36
*** ijw has quit IRC07:38
*** ijw has joined #openstack-dev07:39
*** jamielennox has quit IRC07:39
*** mpavone has joined #openstack-dev07:39
*** Nikolay_St has joined #openstack-dev07:40
*** Longgeek has quit IRC07:41
*** Longgeek has joined #openstack-dev07:41
*** MasterPiece has quit IRC07:41
*** athomas has joined #openstack-dev07:42
*** markvoelker has joined #openstack-dev07:43
*** lpetrut has quit IRC07:43
*** topshare has quit IRC07:45
*** topshare has joined #openstack-dev07:46
*** buzztrol_ has joined #openstack-dev07:46
*** HoloIRCUser has joined #openstack-dev07:47
*** buzztroll has quit IRC07:48
*** markvoelker has quit IRC07:48
*** exploreshaifali has joined #openstack-dev07:48
*** jprovazn has joined #openstack-dev07:50
*** pal has quit IRC07:52
*** jamielennox|away has joined #openstack-dev07:55
*** pal has joined #openstack-dev07:55
*** jamielennox|away is now known as jamielennox07:55
*** coolsvap has quit IRC07:59
*** markus_z has joined #openstack-dev08:00
*** HoloIRCUser has quit IRC08:03
*** topshare has quit IRC08:04
*** jtomasek has joined #openstack-dev08:05
*** topshare has joined #openstack-dev08:06
*** dulek has joined #openstack-dev08:09
*** jistr has joined #openstack-dev08:12
*** eghobo has quit IRC08:14
*** pnavarro|off has joined #openstack-dev08:17
*** safchain has joined #openstack-dev08:19
*** vishwanathj has quit IRC08:21
*** matrohon has joined #openstack-dev08:21
*** gfidente has joined #openstack-dev08:23
*** gfidente has quit IRC08:23
*** gfidente has joined #openstack-dev08:23
*** topshare has quit IRC08:25
*** topshare has joined #openstack-dev08:26
*** pal has quit IRC08:28
*** harshs has quit IRC08:30
*** ihrachyshka has joined #openstack-dev08:30
*** pal has joined #openstack-dev08:36
*** numan has quit IRC08:37
*** YorikSar has quit IRC08:37
*** lpetrut has joined #openstack-dev08:39
*** obondarev_ has quit IRC08:42
*** obondarev has joined #openstack-dev08:42
*** YorikSar has joined #openstack-dev08:43
*** markvoelker has joined #openstack-dev08:44
*** jistr has quit IRC08:46
*** ihrachyshka has quit IRC08:48
*** vivekd has joined #openstack-dev08:48
*** markvoelker has quit IRC08:48
*** buzztrol_ has quit IRC08:49
*** sivy has joined #openstack-dev08:49
*** lpetrut has quit IRC08:53
*** andreykurilin_ has joined #openstack-dev08:53
*** buzztroll has joined #openstack-dev08:54
*** sivy has quit IRC08:54
*** amotoki has quit IRC08:57
*** Mandell has quit IRC08:58
*** comay has quit IRC08:59
*** jistr has joined #openstack-dev09:04
*** yolanda has joined #openstack-dev09:05
*** yaguang_ has joined #openstack-dev09:06
*** corXi has joined #openstack-dev09:09
*** SridharG1 has left #openstack-dev09:09
*** ygbo has joined #openstack-dev09:12
*** ndipanov has joined #openstack-dev09:12
*** hichihara has quit IRC09:16
*** jordanP has joined #openstack-dev09:16
*** Longgeek has quit IRC09:16
*** vicky_ has quit IRC09:17
*** yaguang_ has quit IRC09:18
*** mhorban has quit IRC09:20
*** amotoki has joined #openstack-dev09:20
*** lpetrut has joined #openstack-dev09:20
*** numan has joined #openstack-dev09:21
*** sigmavirus24 is now known as sigmavirus24_awa09:24
*** bnemec has quit IRC09:24
*** bnemec has joined #openstack-dev09:25
*** eghobo has joined #openstack-dev09:28
*** zz_johnthetubagu is now known as johnthetubaguy09:29
*** SridharG1 has joined #openstack-dev09:29
*** otter768 has joined #openstack-dev09:31
*** andreykurilin_ has quit IRC09:31
*** andreykurilin_ has joined #openstack-dev09:32
*** vivekd has quit IRC09:34
*** otter768 has quit IRC09:35
*** lpetrut has quit IRC09:42
*** dims has joined #openstack-dev09:42
*** lpetrut has joined #openstack-dev09:42
*** lpetrut has quit IRC09:43
*** buzztroll has quit IRC09:43
*** markvoelker has joined #openstack-dev09:45
*** buzztroll has joined #openstack-dev09:46
*** dims has quit IRC09:47
ttxsdague: done09:47
*** vigneshvar has joined #openstack-dev09:47
*** markvoelker has quit IRC09:49
*** Qiming has quit IRC09:50
*** eglynn has joined #openstack-dev09:54
*** dims has joined #openstack-dev09:54
*** franred has joined #openstack-dev09:55
*** lpetrut has joined #openstack-dev09:56
*** Ala has joined #openstack-dev09:56
*** derekh has joined #openstack-dev09:57
*** SridharG has quit IRC09:58
*** prazumovsky has joined #openstack-dev10:00
*** SridharG has joined #openstack-dev10:00
*** btulchinsky has quit IRC10:01
*** eghobo_ has joined #openstack-dev10:01
*** bobmel has quit IRC10:01
*** ujuc has quit IRC10:02
*** bobmel has joined #openstack-dev10:02
*** eghobo has quit IRC10:04
*** buzztroll has quit IRC10:05
*** kibad has joined #openstack-dev10:08
*** ihrachyshka has joined #openstack-dev10:08
*** sluo_wfh has quit IRC10:08
kibadcan we log utf-8 characters in cinder log?10:09
kibadI meant using openstack logs10:09
kibad*logger10:09
*** yamamoto has quit IRC10:11
*** igordcard_ has joined #openstack-dev10:13
*** jp_at_hp has joined #openstack-dev10:15
*** nellysmitt has joined #openstack-dev10:17
*** tkammer has joined #openstack-dev10:17
*** Longgeek has joined #openstack-dev10:17
*** linuxmaniac has quit IRC10:19
*** skraynev has quit IRC10:19
*** vigneshvar has quit IRC10:19
*** skraynev has joined #openstack-dev10:19
*** linuxmaniac has joined #openstack-dev10:19
*** rtheis has joined #openstack-dev10:20
*** lpetrut has quit IRC10:21
*** eghobo_ has quit IRC10:22
*** HoloIRCUser2 has joined #openstack-dev10:26
*** pc_m has joined #openstack-dev10:29
*** stanzgy has quit IRC10:31
*** stanzgy_ has quit IRC10:31
*** Longgeek has quit IRC10:32
*** pradeep has quit IRC10:33
*** athomas has quit IRC10:34
*** yamamoto has joined #openstack-dev10:37
*** sivy has joined #openstack-dev10:38
*** MattMan has quit IRC10:38
*** pradeep has joined #openstack-dev10:38
*** kolesovdv has joined #openstack-dev10:39
*** andreykurilin_ has quit IRC10:39
*** Ephur_ has quit IRC10:39
*** vigneshvar has joined #openstack-dev10:40
*** sivy has quit IRC10:42
*** aix has joined #openstack-dev10:44
sdaguettx: thanks10:44
*** HoloIRCUser2 has quit IRC10:45
*** pelix has joined #openstack-dev10:45
*** markvoelker has joined #openstack-dev10:46
*** athomas has joined #openstack-dev10:50
*** markvoelker has quit IRC10:50
*** lpetrut has joined #openstack-dev10:50
*** topshare_ has joined #openstack-dev10:53
*** MattMan has joined #openstack-dev10:53
*** jamielennox has quit IRC10:55
*** topshare has quit IRC10:55
*** MasterPiece has joined #openstack-dev10:56
*** pixelbeat has joined #openstack-dev10:56
*** harlowja_away has quit IRC10:59
*** dulek_ has joined #openstack-dev11:00
*** erlon has joined #openstack-dev11:01
*** jamielennox|away has joined #openstack-dev11:02
*** jamielennox|away is now known as jamielennox11:02
*** dulek has quit IRC11:03
*** exploreshaifali has quit IRC11:03
*** mpaolino has joined #openstack-dev11:06
*** egafford has joined #openstack-dev11:06
*** kibad has quit IRC11:07
*** bhunter71 has joined #openstack-dev11:11
*** aysyd has joined #openstack-dev11:13
*** jamielennox has quit IRC11:14
*** MasterPiece has quit IRC11:15
*** marcusvrn has joined #openstack-dev11:19
*** aysyd has quit IRC11:20
*** athomas_ has joined #openstack-dev11:21
*** lpetrut has quit IRC11:21
*** btulchinsky has joined #openstack-dev11:21
*** thrash|g0ne is now known as thrash11:21
*** athomas has quit IRC11:21
*** marcusvrn1 has joined #openstack-dev11:22
*** Qiming has joined #openstack-dev11:23
*** jamielennox|away has joined #openstack-dev11:24
*** jamielennox|away is now known as jamielennox11:24
*** marcusvrn has quit IRC11:25
*** Qiming_ has joined #openstack-dev11:25
*** Qiming__ has joined #openstack-dev11:28
*** Qiming has quit IRC11:28
*** otter768 has joined #openstack-dev11:32
*** Qiming_ has quit IRC11:32
*** bauzas is now known as bauwser11:32
*** akrivoka has joined #openstack-dev11:33
*** pal has quit IRC11:35
*** otter768 has quit IRC11:36
*** xingchao_ has quit IRC11:37
*** haomaiwang has quit IRC11:37
*** athomas_ is now known as athomas11:38
*** jedimike has joined #openstack-dev11:39
*** athomas has quit IRC11:40
*** baoli has joined #openstack-dev11:41
*** pradeep has quit IRC11:43
*** pradeep1 has joined #openstack-dev11:43
*** athomas has joined #openstack-dev11:43
*** baoli has quit IRC11:44
*** cdent has joined #openstack-dev11:44
*** baoli has joined #openstack-dev11:44
*** exploreshaifali has joined #openstack-dev11:45
*** jcoufal_ has joined #openstack-dev11:45
*** ho has quit IRC11:46
*** markvoelker has joined #openstack-dev11:46
*** topshare_ has quit IRC11:47
*** deepthi has quit IRC11:47
*** ujuc has joined #openstack-dev11:48
*** jcoufal has quit IRC11:49
*** vigneshvar has quit IRC11:51
*** markvoelker has quit IRC11:51
*** dulek___ has joined #openstack-dev11:53
*** dulek_ has quit IRC11:56
*** mwagner_lap has joined #openstack-dev11:57
*** diegows has joined #openstack-dev11:57
*** mpaolino has quit IRC12:00
*** lpetrut has joined #openstack-dev12:02
*** ujuc has quit IRC12:02
*** aysyd has joined #openstack-dev12:04
*** ndipanov is now known as ndipanoff12:04
*** igordcard_ has quit IRC12:05
*** Ala has quit IRC12:06
*** markvoelker has joined #openstack-dev12:07
*** morazi has joined #openstack-dev12:11
*** ujuc has joined #openstack-dev12:11
*** btulchinsky has quit IRC12:12
*** lpetrut has quit IRC12:13
*** xingchao has quit IRC12:13
*** cooldeep has joined #openstack-dev12:14
*** PingKuo has quit IRC12:14
*** Longgeek has joined #openstack-dev12:15
*** bswartz has quit IRC12:16
*** xingchao has joined #openstack-dev12:16
*** vladikr has joined #openstack-dev12:18
*** pradeep1 has quit IRC12:19
*** bknudson has joined #openstack-dev12:21
*** radez_g0n3 is now known as radez12:22
*** exploreshaifali has quit IRC12:23
*** Marga_ has quit IRC12:24
*** galstrom_zzz is now known as galstrom12:24
*** edleafe is now known as figleaf12:25
*** sulrich has quit IRC12:25
*** sivy has joined #openstack-dev12:26
*** sulrich has joined #openstack-dev12:26
*** tochi has quit IRC12:27
*** raildo has joined #openstack-dev12:28
*** aveek has joined #openstack-dev12:29
*** ajmiller has quit IRC12:29
*** lpetrut has joined #openstack-dev12:30
*** Longgeek has quit IRC12:31
*** sivy has quit IRC12:31
*** macjack has quit IRC12:32
*** Qiming_ has joined #openstack-dev12:33
*** lpetrut has quit IRC12:35
*** Qiming__ has quit IRC12:36
*** yamamoto has quit IRC12:37
*** cooldeep_ has joined #openstack-dev12:37
*** cooldeep has quit IRC12:39
*** yamamoto has joined #openstack-dev12:41
*** dprince has joined #openstack-dev12:42
*** Networkn3rd has quit IRC12:43
*** cooldeep has joined #openstack-dev12:43
*** cooldeep_ has quit IRC12:44
*** yaguang_ has joined #openstack-dev12:44
*** Qiming__ has joined #openstack-dev12:46
*** k4n0 has quit IRC12:46
*** hdd_ has joined #openstack-dev12:47
*** kaufer has joined #openstack-dev12:49
*** Qiming_ has quit IRC12:49
*** kgiusti has joined #openstack-dev12:54
*** markmc has joined #openstack-dev12:56
*** marcusvrn has joined #openstack-dev12:57
*** Mandell has joined #openstack-dev12:58
*** mriedem_away is now known as mriedem12:58
*** cooldeep_ has joined #openstack-dev12:59
*** bswartz has joined #openstack-dev13:00
*** dulek has joined #openstack-dev13:01
*** b3nt_pin is now known as seagulls13:01
*** jkugel has joined #openstack-dev13:01
*** marcusvrn1 has quit IRC13:01
*** dulek___ has quit IRC13:02
*** cooldeep has quit IRC13:02
*** mattfarina has joined #openstack-dev13:02
*** aveek has quit IRC13:03
*** ujuc has quit IRC13:03
*** Mandell has quit IRC13:03
*** dulek has quit IRC13:04
*** dulek_ has joined #openstack-dev13:04
*** marcusvrn1 has joined #openstack-dev13:04
*** Nikolay_St has quit IRC13:05
*** READ10 has joined #openstack-dev13:06
*** eharney has joined #openstack-dev13:06
*** yaguang_ has quit IRC13:06
*** galstrom is now known as galstrom_zzz13:06
*** marcusvrn1 has quit IRC13:06
*** marcusvrn1 has joined #openstack-dev13:07
*** marcusvrn has quit IRC13:07
*** mmagr has joined #openstack-dev13:08
*** ijw has quit IRC13:09
*** exploreshaifali has joined #openstack-dev13:10
*** radez is now known as radez_g0n313:10
*** kolesovdv has quit IRC13:13
*** neelashah has joined #openstack-dev13:14
*** yaguang_ has joined #openstack-dev13:14
*** vigneshvar has joined #openstack-dev13:15
*** rfolco has joined #openstack-dev13:15
*** markvoelker has quit IRC13:16
*** lpetrut has joined #openstack-dev13:16
*** markvoelker has joined #openstack-dev13:17
*** dsirrine has joined #openstack-dev13:18
*** scheuran has quit IRC13:19
*** neelashah has quit IRC13:21
*** marcusvrn1 has quit IRC13:21
*** marcusvrn has joined #openstack-dev13:22
*** Marga_ has joined #openstack-dev13:23
*** mpaolino has joined #openstack-dev13:24
*** jdennis has quit IRC13:25
*** tiswanso has joined #openstack-dev13:26
*** neelashah has joined #openstack-dev13:27
*** yamamoto has quit IRC13:27
*** bobmel has quit IRC13:27
*** bobmel has joined #openstack-dev13:28
*** jprovazn has quit IRC13:28
*** cfriesen has joined #openstack-dev13:28
*** cooldeep__ has joined #openstack-dev13:30
*** mpaolino has quit IRC13:31
*** dulek has joined #openstack-dev13:32
*** kso has joined #openstack-dev13:32
*** jdennis has joined #openstack-dev13:32
*** otter768 has joined #openstack-dev13:33
*** dulek_ has quit IRC13:33
*** cooldeep_ has quit IRC13:33
*** ujuc has joined #openstack-dev13:34
*** TrevorV|Home has joined #openstack-dev13:36
*** otter768 has quit IRC13:37
*** BharatK has quit IRC13:39
*** FunnyLookinHat has joined #openstack-dev13:39
*** Qiming__ is now known as Qiming13:39
*** jmckind has joined #openstack-dev13:41
*** spzala has joined #openstack-dev13:42
*** kbringard has joined #openstack-dev13:42
*** thomasem has joined #openstack-dev13:43
*** _gryf is now known as _gryf|afk13:44
*** TrevorV|Home has quit IRC13:45
*** sirushti has quit IRC13:45
*** thomasem has quit IRC13:45
*** thomasem has joined #openstack-dev13:46
*** ujuc has quit IRC13:49
*** amuller has joined #openstack-dev13:52
*** sirushti has joined #openstack-dev13:52
*** yaguang_ has quit IRC13:54
*** cooldeep__ has quit IRC13:56
*** cooldeep has joined #openstack-dev13:57
*** utlemming has joined #openstack-dev13:58
*** utlemming has joined #openstack-dev13:58
*** utlemming has quit IRC13:59
*** dansmith is now known as superdan13:59
*** thangp has joined #openstack-dev13:59
*** amitgandhinz has joined #openstack-dev14:02
*** radez_g0n3 is now known as radez14:02
*** blinky42 has quit IRC14:02
*** jprovazn has joined #openstack-dev14:03
*** jecarey has joined #openstack-dev14:03
*** Nikolay_St has joined #openstack-dev14:05
*** striker has joined #openstack-dev14:05
*** dims has quit IRC14:06
*** jaypipes is now known as leakypipes14:07
*** mattamizer has joined #openstack-dev14:07
*** dims has joined #openstack-dev14:07
*** kso has quit IRC14:07
*** kso has joined #openstack-dev14:07
*** mattamizer has quit IRC14:08
*** TrevorV|Home has joined #openstack-dev14:10
*** yamamoto has joined #openstack-dev14:11
*** pkoniszewski has quit IRC14:12
*** mikeoutland has joined #openstack-dev14:13
*** jp_at_hp has quit IRC14:13
*** sivy has joined #openstack-dev14:14
*** Longgeek has joined #openstack-dev14:15
*** Ananci has joined #openstack-dev14:16
*** nelsnelson has joined #openstack-dev14:16
*** amotoki has quit IRC14:16
*** nelsnelson has quit IRC14:16
*** ChuckC_ has joined #openstack-dev14:16
*** ChuckC has quit IRC14:17
*** afazekas has quit IRC14:18
*** vigneshvar has quit IRC14:18
*** sivy has quit IRC14:19
*** markmc has quit IRC14:19
*** SridharG has quit IRC14:20
*** nelsnelson has joined #openstack-dev14:21
*** prazumovsky has quit IRC14:21
*** dims is now known as dimsum__14:21
*** carl_baldwin has joined #openstack-dev14:22
*** ChuckC_ has quit IRC14:23
*** Nikolay_St has quit IRC14:23
*** Mandell has joined #openstack-dev14:23
*** sagar_nikam has joined #openstack-dev14:25
*** eghobo has joined #openstack-dev14:29
*** AnilV4 has quit IRC14:30
*** aysyd has quit IRC14:32
*** CrackerJackMack has quit IRC14:33
*** pradeep has joined #openstack-dev14:35
*** mikeoutland has quit IRC14:35
*** gsagie has joined #openstack-dev14:35
*** aysyd has joined #openstack-dev14:36
elarsonis there an openstack flake8 config out there I can use for dev?14:36
*** thedodd has joined #openstack-dev14:36
*** Networkn3rd has joined #openstack-dev14:36
*** CrackerJackMack has joined #openstack-dev14:38
*** tdruiva has joined #openstack-dev14:39
*** cbader has joined #openstack-dev14:40
*** Nikolay_St has joined #openstack-dev14:40
*** spzala has quit IRC14:41
*** exploreshaifali has quit IRC14:42
*** diogogmt has quit IRC14:42
*** pal has joined #openstack-dev14:45
*** galstrom_zzz is now known as galstrom14:45
*** yeylon has joined #openstack-dev14:45
*** amotoki has joined #openstack-dev14:46
*** shaohe_feng1 has joined #openstack-dev14:46
*** alaski is now known as lascii14:48
*** thedodd has quit IRC14:48
*** Longgeek has quit IRC14:49
*** pradeep has quit IRC14:49
*** pradeep has joined #openstack-dev14:50
*** thedodd has joined #openstack-dev14:53
*** subscope has quit IRC14:53
*** SridharG1 has quit IRC14:54
*** SridharG has joined #openstack-dev14:56
*** pal_ has joined #openstack-dev14:57
*** pal has quit IRC14:57
*** sivy has joined #openstack-dev14:57
*** carl_baldwin_ has joined #openstack-dev14:58
*** carl_baldwin has quit IRC14:58
*** carl_baldwin_ is now known as carl_baldwin14:58
*** thangp has quit IRC14:59
*** kacieee has joined #openstack-dev14:59
*** kacieee has quit IRC15:00
*** kacieee has joined #openstack-dev15:00
*** radez is now known as radez_g0n315:02
*** corXi has quit IRC15:03
*** mriedem has quit IRC15:04
*** gokrokve has joined #openstack-dev15:04
*** xingchao has quit IRC15:04
*** lcurtis has joined #openstack-dev15:04
*** pixelbeat has quit IRC15:05
*** radez_g0n3 is now known as radez15:05
*** thedodd has quit IRC15:06
*** ChuckC_ has joined #openstack-dev15:07
*** pixelb has joined #openstack-dev15:08
*** marcusvrn has quit IRC15:09
*** bswartz has quit IRC15:10
*** _cjones_ has joined #openstack-dev15:10
*** Marga_ has quit IRC15:10
*** erlon has quit IRC15:11
*** nellysmitt has quit IRC15:12
*** bknudson has quit IRC15:13
*** jgrimm has quit IRC15:13
*** jprovazn has quit IRC15:13
*** jgrimm has joined #openstack-dev15:14
*** tnovacik has quit IRC15:14
*** viktors has quit IRC15:16
*** pradeep1 has joined #openstack-dev15:16
*** pradeep has quit IRC15:16
ttxjeblair: around? re: next TC meeting agenda15:17
*** MasterPiece has joined #openstack-dev15:18
ttxjeblair: I was wondering what exactly we should discuss on the new projects application section. You deferred some topics so I don't want to overrule your decisions on that15:18
*** stevemar has joined #openstack-dev15:19
jeblairoh hi15:20
ttxjeblair: in absolute terms we have https://wiki.openstack.org/wiki/Meetings/TechnicalCommittee, but some topics have been deferred last meeting, and some others shouold be (not enough time)15:20
jeblairttx: my main goal was to avoid talking about magnum again15:20
ttxso we could delay 7 and 9 and discuss 6 and 8 ?15:21
*** bswartz has joined #openstack-dev15:21
jeblairttx: because we're having too much of a meta-discussion.  i think people are generally okay with magnum and i don't want them to feel there is an undue negative focus.15:21
jeblairttx: that sounds good. i do think we should talk about at least one new project though; openstackclient will be fine15:22
ttxjeblair: ok, fixing15:22
*** Qiming_ has joined #openstack-dev15:22
ttxjeblair: in related news, I approved the things that were discussed and got enough YES15:23
ttxThat doesn't include https://review.openstack.org/159930 (IRC policies) yet15:23
ttxthough I'm comfortable approving it now if you can get a 7th15:24
jeblair:/  the amendment lost some votes15:24
ttx(and therefore remove it from the docket for next week)15:24
jeblairsdague: https://review.openstack.org/#/c/159930/15:24
*** Qiming has quit IRC15:25
jeblairsdague: you were +1 on that before the ammendment (and were also +1 on the ammendment); would you mind re-adding your vote? :)15:25
*** mmagr has quit IRC15:26
*** thangp has joined #openstack-dev15:27
*** tsekiyama has joined #openstack-dev15:28
*** pradeep has joined #openstack-dev15:29
*** erlon has joined #openstack-dev15:29
*** pradeep1 has quit IRC15:29
*** sputnik13 has joined #openstack-dev15:30
*** jdurgin1 has joined #openstack-dev15:30
*** zz_dimtruck is now known as dimtruck15:31
*** daniel3_ has joined #openstack-dev15:32
*** nshaikh has left #openstack-dev15:32
*** YorikSar has quit IRC15:32
elarsonbtw, if anyone was on the edge of their seat regarding a flake8 config, I got wise and copied the tox.ini config to my .config/flake8... duh15:32
*** eghobo_ has joined #openstack-dev15:32
*** david-lyle_afk is now known as david-lyle15:33
sdaguejeblair: yep, with the rationale, I'm happily +1 on it now15:33
*** otter768 has joined #openstack-dev15:33
ttxapproval in the pipe15:34
*** mriedem has joined #openstack-dev15:34
sdagueelarson: realize that most projects have different flake8 configs (different rules they ignore)15:34
sdagueelarson: I built this to address those differences (and integrate into emacs) - https://github.com/sdague/fly-hack15:35
*** DaSchab has joined #openstack-dev15:35
*** zzzeek has joined #openstack-dev15:35
*** eghobo has quit IRC15:36
sdaguejeblair: fyi, that code might be of interest to you as well15:36
sdagueas one of the few other visible emacs people :)15:37
elarsonsdague: ah cool. I'll take a look!15:37
*** Mandell has quit IRC15:37
*** sputnik13 has quit IRC15:38
elarsonsdague, jeblair: not sure if you guys use magit-gerrit, but if you ever try it out I wrote a quick blog about setting it up http://ionrock.org/2015/03/05/setting_up_magit_gerrit_in_emacs.html15:38
*** otter768 has quit IRC15:38
elarsonsdague, jeblair: I also wrote a lodgeit pastebin package https://github.com/ionrock/lodgeit-el15:39
* elarson is still waiting for that to be accepted to melpa15:39
*** reed has joined #openstack-dev15:39
*** bpokorny has joined #openstack-dev15:39
*** thedodd has joined #openstack-dev15:39
sdagueelarson: oh, so be careful, I might ask you for elisp help. :)15:41
sdaguemy elisp is terrible15:42
*** jcoufal_ has quit IRC15:42
elarsonsdague: my elisp is terrible too! but I'm hoping to get better, so ask away :)15:42
*** arunkant has joined #openstack-dev15:43
*** spzala has joined #openstack-dev15:43
sdagueover the weekend hopefully I'll get my run tests for openstack project lib into a working state, I'll post that and probably ask for your help to make it less terrible15:43
*** mikeoutland has joined #openstack-dev15:44
jeblairelarson: oh neat, if i'd known about that a year ago i might have used it; my elisp isn't nearly good enough to write that though, so i wrote gertty instead: https://pypi.python.org/pypi/gertty15:44
*** ayoung has joined #openstack-dev15:44
elarsonjeblair: I had planned on using gertty if I couldn't sort out magit-gerrit15:44
*** bknudson has joined #openstack-dev15:45
*** exploreshaifali has joined #openstack-dev15:46
*** eghobo_ has quit IRC15:46
*** Nikolay_St has quit IRC15:47
*** harshs has joined #openstack-dev15:48
*** ChuckC_ has quit IRC15:49
*** thedodd has quit IRC15:49
*** DaSchab has quit IRC15:51
*** armax has joined #openstack-dev15:52
*** unicell1 has joined #openstack-dev15:52
*** harshs has quit IRC15:52
*** xarses has quit IRC15:52
*** unicell has quit IRC15:53
*** ghostpl_ has quit IRC15:53
*** pradeep1 has joined #openstack-dev15:53
*** ChuckC has joined #openstack-dev15:53
*** marun has joined #openstack-dev15:53
*** logan2 has joined #openstack-dev15:54
*** georgelorch has quit IRC15:55
*** georgelorch has joined #openstack-dev15:55
*** pradeep has quit IRC15:55
*** amotoki has quit IRC15:56
*** yeylon has quit IRC15:56
*** Krin has quit IRC15:56
*** thedodd has joined #openstack-dev15:57
*** yamamoto has quit IRC15:57
*** Sukhdev has joined #openstack-dev15:59
*** amotoki has joined #openstack-dev16:00
*** Krin has joined #openstack-dev16:05
*** mikeoutland has quit IRC16:07
*** xingchao has joined #openstack-dev16:09
*** jdurgin1 has quit IRC16:10
*** amotoki has quit IRC16:10
*** egafford has quit IRC16:12
*** Qiming_ has quit IRC16:14
*** sivy has quit IRC16:14
*** SridharG has left #openstack-dev16:14
*** sivy has joined #openstack-dev16:14
*** rwsu-afk is now known as rwsu16:15
*** sivy has quit IRC16:19
*** vishwanathj has joined #openstack-dev16:20
*** amotoki has joined #openstack-dev16:22
*** jogo is now known as flashgordon16:22
*** pradeep has joined #openstack-dev16:23
*** pradeep1 has quit IRC16:25
*** tkammer has quit IRC16:26
*** amotoki has quit IRC16:27
*** sahid has quit IRC16:27
*** xarses has joined #openstack-dev16:28
*** pradeep1 has joined #openstack-dev16:28
*** jmccrory has joined #openstack-dev16:29
*** pradeep has quit IRC16:29
*** gsagie has quit IRC16:32
*** jichen has quit IRC16:33
*** akanksha has joined #openstack-dev16:34
*** Longgeek has joined #openstack-dev16:34
*** dulek has quit IRC16:34
*** lpetrut has quit IRC16:37
*** MasterPiece has quit IRC16:38
*** pkoniszewski has joined #openstack-dev16:39
*** melwitt has joined #openstack-dev16:41
*** kaufer has quit IRC16:41
*** mikeoutland has joined #openstack-dev16:43
*** joffter has quit IRC16:43
*** joffter has joined #openstack-dev16:43
*** ttx has quit IRC16:43
*** ttx has joined #openstack-dev16:43
*** buzztroll has joined #openstack-dev16:45
*** Marga_ has joined #openstack-dev16:46
*** pkoniszewski has quit IRC16:46
*** YorikSar has joined #openstack-dev16:47
*** matrohon has quit IRC16:49
*** dsneddon is now known as dsneddon_afk16:49
*** gsagie has joined #openstack-dev16:50
*** mestery has quit IRC16:50
*** mpaolino has joined #openstack-dev16:50
*** mestery has joined #openstack-dev16:51
*** safchain has quit IRC16:51
*** enterprisedc has quit IRC16:51
*** kerpan has quit IRC16:52
*** ghostpl_ has joined #openstack-dev16:53
*** enterprisedc has joined #openstack-dev16:54
*** alanf-mc has joined #openstack-dev16:55
*** cooldeep_ has joined #openstack-dev16:55
*** ygbo has quit IRC16:55
*** alanf-mc has quit IRC16:55
*** alanf-mc has joined #openstack-dev16:56
*** Longgeek has quit IRC16:56
*** pradeep has joined #openstack-dev16:56
*** harlowja has joined #openstack-dev16:57
*** vishwana_ has joined #openstack-dev16:57
*** pradeep1 has quit IRC16:57
*** joffter has quit IRC16:57
*** ghostpl_ has quit IRC16:58
*** ujuc has joined #openstack-dev16:58
*** cooldeep has quit IRC16:59
*** vishwanathj has quit IRC16:59
*** dustins_ has joined #openstack-dev16:59
*** pradeep1 has joined #openstack-dev17:00
*** pradeep has quit IRC17:00
*** TrevorV|Home has quit IRC17:01
*** kaufer has joined #openstack-dev17:01
*** sahid has joined #openstack-dev17:02
*** Networkn3rd has quit IRC17:03
*** dustins has quit IRC17:03
*** sputnik13 has joined #openstack-dev17:03
*** ignacio-scopetta has joined #openstack-dev17:04
*** ujuc_ has joined #openstack-dev17:04
*** _cjones_ has quit IRC17:05
*** Networkn3rd has joined #openstack-dev17:06
*** pradeep1 has quit IRC17:07
*** mpavone has quit IRC17:07
*** ujuc has quit IRC17:07
*** Networkn3rd has quit IRC17:09
*** mpaolino has quit IRC17:11
flashgordonttx: why don't I have power to WIP my own patch https://review.openstack.org/#/c/162789/117:11
mtreinishflashgordon: normals like us don't have permissions to do anything on governance: https://review.openstack.org/#/admin/projects/openstack/governance,access17:12
*** gsagie has quit IRC17:13
mtreinishit looks like only ttx can wip it17:13
*** Networkn3rd has joined #openstack-dev17:13
ttxyeah, it's a bit weird17:13
clarkbflashgordon: mtreinish in particular the workflow permissions are marked exclusive there, so you need to have an explicit allow for change owner to -117:14
clarkbthe all-projects acl does ^ but any exclsive acls override that17:14
ttxThat sounds like a thing owners should be able to do17:14
ttxflashgordon: while the ACL gets fixed, I consider anything prefixed [WIP] as not being up for TC consideration/vote just yet17:15
*** annashen has joined #openstack-dev17:15
*** Networkn3rd has quit IRC17:15
flashgordonttx: ahh, that is a lot more cumbersome then just fixing the ACLs17:15
flashgordonanteaya: btw. I looked over your election tooling etherpad, and it looks really good!17:16
anteayaflashgordon: thank you17:16
*** patrickeast has joined #openstack-dev17:16
*** Trevor_V has joined #openstack-dev17:16
*** mpaolino has joined #openstack-dev17:16
flashgordonanteaya: one thing for the openstack namespace though, after elections we update the governance repo with the results17:17
flashgordon(who current PTLs are)17:17
flashgordonso maybe the elections stuff just goes into governance? just an idea I want to throw out there17:17
*** _cjones_ has joined #openstack-dev17:18
*** pelix has quit IRC17:18
*** jordanP has quit IRC17:18
*** tdruiva has quit IRC17:18
anteayaflashgordon: the governance repo acl has no space for access by the world17:18
*** cooldeep_ has quit IRC17:19
anteayaflashgordon: the repo in quetions needs to have acl access like a sandbox to accomodate the world17:19
*** Networkn3rd has joined #openstack-dev17:19
anteayaflashgordon: this is one of the motivations for creating new tooling in the first place17:19
anteayaaccomodating the world17:19
anteayabecause hey isn't that what we are expected to be doing?17:20
*** cooldeep_ has joined #openstack-dev17:20
flashgordonahh yeah the sandbox clause, why not just have the election officials do the merging to he candidate page as a sign they pass the candidate rules17:20
flashgordonanyway just wondering, the etherpad looks great as si17:20
flashgordonis17:20
*** markus_z has quit IRC17:20
*** Networkn3rd has quit IRC17:21
flashgordonoh I see you answered that question17:21
*** oro_ has joined #openstack-dev17:21
*** oro has joined #openstack-dev17:21
anteayayes17:21
anteayathanks for reading that far17:21
*** dsneddon_afk is now known as dsneddon17:22
ttxflashgordon: I could mark it WIP but then I'm not sure you could unWIP it17:23
flashgordonIf there are more then one candidates for a specific PTL, where do the candidates explain their platform?17:23
ttxand I'd rather not block it17:23
flashgordonttx: or just fix the ACLs?17:23
ttxflashgordon: sure, if that can be done quickly17:23
anteayaflashgordon: the self nomination file acts like a replacement for the nomination email17:23
anteayain the current process, the nomination email is linked from the wikipage17:24
anteayain the new process a confirmed candidate would have their file linked from the index page of the page for that election17:25
*** Networkn3rd has joined #openstack-dev17:26
*** Networkn3rd has quit IRC17:26
*** sagar_nikam has quit IRC17:26
*** Networkn3rd has joined #openstack-dev17:26
*** gsagie has joined #openstack-dev17:27
flashgordonahh nice, the details that a candidate submits a file with their platform etc. could be made more explicit in the etherpad17:27
*** numan has quit IRC17:27
*** tdruiva has joined #openstack-dev17:27
anteayawell since that is the current workflow, and the ehterpad is about differences to the current workflow, it never crossed my mind17:29
anteayaflashgordon: but it being an etherpad you are welcome to expand any point doesn't come across clearly for you17:29
*** eharney has quit IRC17:30
*** bdpayne has joined #openstack-dev17:31
*** erlon has quit IRC17:31
*** jistr has quit IRC17:31
*** achanda has joined #openstack-dev17:33
*** dustins_ has quit IRC17:33
flashgordonanteaya: added a comment.17:34
anteayaflashgordon: thank you17:34
*** otter768 has joined #openstack-dev17:34
*** saju_m has joined #openstack-dev17:35
*** ayoung has quit IRC17:36
*** vishwana_ has quit IRC17:37
*** vishwanathj has joined #openstack-dev17:38
*** otter768 has quit IRC17:39
*** Marga_ has quit IRC17:40
*** Marga_ has joined #openstack-dev17:41
*** johnthetubaguy is now known as zz_johnthetubagu17:42
*** eglynn has quit IRC17:42
*** eharney has joined #openstack-dev17:42
*** ayoung has joined #openstack-dev17:43
*** dustins has joined #openstack-dev17:44
*** zhenq has joined #openstack-dev17:44
*** derekh has quit IRC17:45
*** ChuckC has quit IRC17:45
*** ybathia has joined #openstack-dev17:46
*** Marga_ has quit IRC17:46
*** prad has joined #openstack-dev17:47
*** signed8bit has joined #openstack-dev17:48
*** angdraug has joined #openstack-dev17:48
*** jobewan has joined #openstack-dev17:49
*** sahid has quit IRC17:49
*** sarob has joined #openstack-dev17:51
*** annashen has quit IRC17:51
*** rushiagr_away is now known as rushiagr17:51
*** Sukhdev has quit IRC17:52
*** lpetrut has joined #openstack-dev17:52
*** Krin has quit IRC17:53
*** Longgeek has joined #openstack-dev17:53
*** gokrokve has quit IRC17:54
*** ghostpl_ has joined #openstack-dev17:54
*** dprince has quit IRC17:56
*** omnibus7 is now known as davidlenwell17:57
*** Mandell has joined #openstack-dev17:58
*** sarob has quit IRC17:59
*** alexpilotti has joined #openstack-dev18:00
*** gokrokve has joined #openstack-dev18:01
*** alexpilotti has quit IRC18:01
*** ghostpl_ has quit IRC18:02
*** alexpilotti has joined #openstack-dev18:02
*** sarob has joined #openstack-dev18:02
*** cdub has quit IRC18:05
*** ajmiller has joined #openstack-dev18:05
*** tdruiva has quit IRC18:09
*** mattamizer has joined #openstack-dev18:10
*** mpaolino has quit IRC18:12
*** sarob has quit IRC18:12
*** sarob has joined #openstack-dev18:16
*** Tross has left #openstack-dev18:17
*** mwang2 has joined #openstack-dev18:19
*** fandi has joined #openstack-dev18:20
*** bswartz has quit IRC18:20
*** FunnyLookinHat has quit IRC18:21
*** fandi has quit IRC18:21
*** sivy has joined #openstack-dev18:21
*** Longgeek has quit IRC18:22
*** sarob has quit IRC18:22
*** shardy has quit IRC18:24
*** sivy has quit IRC18:24
*** ignacio-scopetta has quit IRC18:24
*** sivy has joined #openstack-dev18:25
*** MattMan has quit IRC18:28
*** pal_ has quit IRC18:29
*** Marga_ has joined #openstack-dev18:29
*** sivy has quit IRC18:30
*** bswartz has joined #openstack-dev18:31
*** eharney has quit IRC18:32
*** Sukhdev has joined #openstack-dev18:35
*** etoews has quit IRC18:39
*** cooldeep__ has joined #openstack-dev18:39
*** drjones has joined #openstack-dev18:42
*** shaohe_feng1 has quit IRC18:42
*** cooldeep_ has quit IRC18:42
*** ayoung has quit IRC18:42
*** FunnyLookinHat has joined #openstack-dev18:42
*** shaohe_feng1 has joined #openstack-dev18:43
*** ayoung has joined #openstack-dev18:43
*** _cjones_ has quit IRC18:43
*** ignacio-scopetta has joined #openstack-dev18:44
*** comay has joined #openstack-dev18:44
*** ijw has joined #openstack-dev18:45
*** athomas has quit IRC18:45
*** lpetrut has quit IRC18:46
*** andreykurilin_ has joined #openstack-dev18:49
*** drjones has quit IRC18:49
*** tdruiva has joined #openstack-dev18:49
*** _cjones_ has joined #openstack-dev18:50
*** eglynn has joined #openstack-dev18:51
*** oro_ has quit IRC18:51
*** oro has quit IRC18:52
*** annashen has joined #openstack-dev18:52
*** saju_m has quit IRC18:53
*** ndipanoff has quit IRC18:55
*** pixelb has quit IRC18:56
*** sivy has joined #openstack-dev18:56
*** annashen has quit IRC18:56
*** zaitcev has joined #openstack-dev18:57
*** ghostpl_ has joined #openstack-dev18:58
*** hdd_ has quit IRC19:00
*** dprince has joined #openstack-dev19:01
*** jordanP has joined #openstack-dev19:03
*** jordanP has quit IRC19:03
*** ghostpl_ has quit IRC19:05
*** bobmel_ has joined #openstack-dev19:06
*** gfidente has quit IRC19:07
*** bobmel has quit IRC19:09
*** dustins has quit IRC19:10
*** jaosorior has joined #openstack-dev19:10
*** thedodd has quit IRC19:12
*** dustins has joined #openstack-dev19:12
*** Nikolay_St has joined #openstack-dev19:12
*** kobis has joined #openstack-dev19:13
*** Mandell has quit IRC19:14
*** eglynn has quit IRC19:14
*** rawl has joined #openstack-dev19:17
*** zul has quit IRC19:19
*** annashen has joined #openstack-dev19:21
*** kobis has quit IRC19:22
*** rawl has quit IRC19:22
*** gsagie has quit IRC19:23
*** amuller has quit IRC19:26
*** leeantho has joined #openstack-dev19:26
*** akanksha has quit IRC19:27
*** ujuc_ has quit IRC19:31
*** akrivoka has quit IRC19:33
*** cfriesen_ has joined #openstack-dev19:35
*** cfriesen has quit IRC19:35
*** otter768 has joined #openstack-dev19:35
*** dustins has quit IRC19:39
*** cooldeep_ has joined #openstack-dev19:39
*** otter768 has quit IRC19:40
*** radez is now known as radez_g0n319:40
*** lpetrut has joined #openstack-dev19:41
*** jedimike has quit IRC19:41
*** cooldeep__ has quit IRC19:43
*** rawl has joined #openstack-dev19:44
*** Longgeek has joined #openstack-dev19:50
*** Lee1092 has quit IRC19:50
*** kobis has joined #openstack-dev19:51
*** thedodd has joined #openstack-dev19:53
*** stevemar has quit IRC19:56
*** ajmiller_ has joined #openstack-dev19:56
*** rushiagr is now known as rushiagr_away19:57
*** kobis has quit IRC19:57
*** novas0x2a|laptop has joined #openstack-dev19:58
*** sivy has quit IRC19:59
*** ajmiller has quit IRC20:00
*** sivy has joined #openstack-dev20:00
*** hdd_ has joined #openstack-dev20:03
*** sivy has quit IRC20:04
*** jichen has joined #openstack-dev20:06
*** achanda has quit IRC20:06
*** kobis has joined #openstack-dev20:06
*** spzala has quit IRC20:08
*** yamahata has joined #openstack-dev20:09
*** kgriffs|afk is now known as kgriffs20:09
*** cooldeep__ has joined #openstack-dev20:10
*** Mandell has joined #openstack-dev20:10
*** achanda has joined #openstack-dev20:11
*** utlemming has joined #openstack-dev20:12
*** utlemming has joined #openstack-dev20:12
*** galstrom is now known as galstrom_zzz20:13
*** pritesh has joined #openstack-dev20:13
*** cooldeep_ has quit IRC20:13
*** kobis has quit IRC20:13
*** buzztrol_ has joined #openstack-dev20:16
*** buzztroll has quit IRC20:16
*** eghobo has joined #openstack-dev20:18
*** Longgeek has quit IRC20:18
*** yeylon has joined #openstack-dev20:19
*** mikeoutland has quit IRC20:24
*** achanda has quit IRC20:25
*** pixelb has joined #openstack-dev20:25
*** vuntz has quit IRC20:26
*** akanksha has joined #openstack-dev20:27
*** henrique_ has quit IRC20:28
*** utlemming has quit IRC20:28
*** vuntz has joined #openstack-dev20:30
*** buzztrol_ has quit IRC20:30
*** jdurgin has quit IRC20:31
*** tnovacik has joined #openstack-dev20:31
*** oro_ has joined #openstack-dev20:34
*** oro has joined #openstack-dev20:34
*** yeylon has quit IRC20:34
*** Trevor__V has joined #openstack-dev20:35
*** Sukhdev has quit IRC20:35
*** BharatK has joined #openstack-dev20:35
*** alexpilotti has quit IRC20:37
*** thangp has quit IRC20:37
*** eharney has joined #openstack-dev20:37
*** pixelb has quit IRC20:38
*** Trevor_V has quit IRC20:38
*** kgriffs is now known as kgriffs|afk20:38
*** mattamizer has quit IRC20:39
*** kaufer has quit IRC20:39
*** mikeoutland has joined #openstack-dev20:41
*** annashen has quit IRC20:42
*** Trevor__V has quit IRC20:45
*** exploreshaifali has quit IRC20:46
*** kobis has joined #openstack-dev20:46
*** buzztroll has joined #openstack-dev20:48
*** annashen has joined #openstack-dev20:49
*** rawl has quit IRC20:49
*** ghostpl_ has joined #openstack-dev20:49
*** kaufer has joined #openstack-dev20:50
*** stevemar has joined #openstack-dev20:52
*** oro has quit IRC20:53
*** oro_ has quit IRC20:54
*** bswartz has quit IRC20:54
*** exploreshaifali has joined #openstack-dev20:56
*** ghostpl_ has quit IRC20:56
*** exploreshaifali has quit IRC20:57
*** achanda has joined #openstack-dev20:57
*** melwitt has quit IRC20:58
*** buzztroll has quit IRC20:59
*** rfolco has quit IRC20:59
*** melwitt has joined #openstack-dev21:00
*** Mandell has quit IRC21:00
*** harlowja has quit IRC21:00
*** melwitt has quit IRC21:00
*** jedimike has joined #openstack-dev21:02
*** buzztroll has joined #openstack-dev21:03
*** raildo has quit IRC21:05
*** buzztroll has quit IRC21:05
*** buzztrol_ has joined #openstack-dev21:05
*** harlowja has joined #openstack-dev21:06
*** melwitt has joined #openstack-dev21:07
*** Mandell has joined #openstack-dev21:07
*** kgriffs|afk is now known as kgriffs21:09
*** alanf-mc has quit IRC21:11
*** marun has quit IRC21:14
*** diegows has quit IRC21:14
*** leeantho_ has joined #openstack-dev21:14
*** mattfarina has quit IRC21:15
*** pc_m has quit IRC21:16
*** leeantho has quit IRC21:17
*** Networkn3rd has quit IRC21:18
*** jedimike has quit IRC21:20
*** annashen has quit IRC21:22
*** annashen has joined #openstack-dev21:22
*** andreykurilin_ has quit IRC21:23
*** andreykurilin_ has joined #openstack-dev21:23
*** cdub has joined #openstack-dev21:26
*** achanda has quit IRC21:27
*** alanf-mc has joined #openstack-dev21:27
*** mrunge has quit IRC21:29
*** jmckind has quit IRC21:29
*** tnovacik has quit IRC21:29
*** vuntz has quit IRC21:30
*** kgiusti has left #openstack-dev21:31
*** cbader has quit IRC21:31
*** kbringard has quit IRC21:33
*** achanda has joined #openstack-dev21:33
*** jgrimm_ has joined #openstack-dev21:34
*** timello_ has joined #openstack-dev21:35
*** lascii is now known as alaski21:35
*** maurosr has quit IRC21:35
*** bknudson has quit IRC21:35
*** timello has quit IRC21:36
*** ekhugen has quit IRC21:36
*** ekhugen has joined #openstack-dev21:36
*** jgrimm- has joined #openstack-dev21:36
*** otter768 has joined #openstack-dev21:36
*** jgrimm has quit IRC21:36
*** maurosr has joined #openstack-dev21:36
*** vijendar has joined #openstack-dev21:37
*** timello has joined #openstack-dev21:37
*** rtheis has quit IRC21:38
*** annashen has quit IRC21:39
*** neelashah has quit IRC21:39
*** jgrimm_ has quit IRC21:39
*** timello_ has quit IRC21:39
*** ijw has quit IRC21:40
*** bknudson has joined #openstack-dev21:41
*** otter768 has quit IRC21:41
*** tiswanso has quit IRC21:41
*** annashen has joined #openstack-dev21:41
*** andreykurilin_ has quit IRC21:41
*** andreykurilin_ has joined #openstack-dev21:42
*** vijendar has quit IRC21:42
*** nelsnelson has quit IRC21:43
*** rushiagr_away is now known as rushiagr21:44
*** marun has joined #openstack-dev21:44
*** daniel3_ has quit IRC21:45
*** kobis has quit IRC21:45
*** sivy has joined #openstack-dev21:45
*** dprince has quit IRC21:46
*** prad has quit IRC21:46
*** leeantho__ has joined #openstack-dev21:50
*** leeantho__ has quit IRC21:52
*** leeantho__ has joined #openstack-dev21:52
*** Mandell has quit IRC21:54
*** leeantho_ has quit IRC21:54
*** mwang2 has quit IRC21:56
*** annashen has quit IRC21:56
*** cdub has quit IRC21:57
*** btulchinsky has joined #openstack-dev21:57
*** sivy has quit IRC21:58
*** annashen has joined #openstack-dev22:00
*** rwsu has quit IRC22:00
*** carl_baldwin has quit IRC22:01
*** SumitNaiksatam has joined #openstack-dev22:01
*** lpetrut has quit IRC22:01
*** carl_baldwin has joined #openstack-dev22:01
*** Longgeek has joined #openstack-dev22:03
*** harlowja has quit IRC22:04
*** jecarey has quit IRC22:04
*** tiswanso has joined #openstack-dev22:04
*** gokrokve has quit IRC22:05
*** gokrokve has joined #openstack-dev22:05
*** harlowja has joined #openstack-dev22:06
*** gokrokve has quit IRC22:06
*** harlowja has quit IRC22:06
*** gokrokve has joined #openstack-dev22:06
*** harlowja has joined #openstack-dev22:06
*** leeantho__ has quit IRC22:09
*** pnavarro|off has quit IRC22:10
*** kacieee has quit IRC22:10
*** jkugel has quit IRC22:12
*** jdurgin has joined #openstack-dev22:13
*** nelsnelson has joined #openstack-dev22:13
*** cdent has quit IRC22:13
*** melwitt has quit IRC22:15
*** melwitt has joined #openstack-dev22:16
*** Mandell has joined #openstack-dev22:17
*** ihrachyshka has quit IRC22:19
*** melwitt has quit IRC22:19
*** melwitt has joined #openstack-dev22:19
*** sarob has joined #openstack-dev22:21
*** amitgandhinz has quit IRC22:23
*** stevemar has quit IRC22:24
*** sgran has quit IRC22:25
*** Longgeek has quit IRC22:25
*** dvorak is now known as clayton22:28
*** melwitt has quit IRC22:28
*** clayton is now known as dvorak22:28
*** figleaf is now known as edleafe22:28
*** dimtruck is now known as zz_dimtruck22:30
*** tdruiva has quit IRC22:30
*** btang has joined #openstack-dev22:30
*** jichen has quit IRC22:31
*** btang has joined #openstack-dev22:31
*** novas0x2a|laptop has quit IRC22:31
*** novas0x2a|laptop has joined #openstack-dev22:32
*** kaufer has quit IRC22:32
*** zhenq has quit IRC22:33
*** rwsu has joined #openstack-dev22:33
*** bauwser is now known as bauzas22:34
*** thrash is now known as thrash|wknd22:37
*** tiswanso has quit IRC22:39
*** tiswanso has joined #openstack-dev22:39
*** ghostpl_ has joined #openstack-dev22:41
*** jedimike has joined #openstack-dev22:42
*** sgran has joined #openstack-dev22:42
*** thedodd has quit IRC22:43
*** FunnyLookinHat has quit IRC22:45
*** buzztrol_ has quit IRC22:46
*** spzala has joined #openstack-dev22:47
*** ghostpl_ has quit IRC22:49
*** beisner has quit IRC22:49
*** eghobo_ has joined #openstack-dev22:50
*** sarob has quit IRC22:50
*** jedimike has quit IRC22:50
*** beisner has joined #openstack-dev22:52
*** tsekiyam_ has joined #openstack-dev22:52
*** eghobo has quit IRC22:53
*** pritesh has quit IRC22:55
*** tsekiyama has quit IRC22:56
*** markvoelker has quit IRC22:56
*** tsekiyam_ has quit IRC22:56
*** striker has quit IRC22:59
*** jobewan has quit IRC22:59
*** btang has quit IRC23:01
*** spzala_ has joined #openstack-dev23:02
*** noslzzp has quit IRC23:04
*** spzala has quit IRC23:04
*** spzala_ is now known as spzala23:04
*** nelsnelson has quit IRC23:05
*** hdd_ has quit IRC23:06
*** tiswanso has quit IRC23:11
*** tiswanso has joined #openstack-dev23:11
*** sivy has joined #openstack-dev23:12
*** bswartz has joined #openstack-dev23:12
*** buzztroll has joined #openstack-dev23:13
*** spzala has quit IRC23:13
*** aysyd has quit IRC23:13
*** tiswanso has quit IRC23:15
*** annashen has quit IRC23:18
*** annashen has joined #openstack-dev23:20
*** _cjones_ has quit IRC23:24
*** SumitNaiksatam has quit IRC23:24
*** eghobo_ has quit IRC23:25
*** eghobo has joined #openstack-dev23:27
*** lcurtis has quit IRC23:27
*** david-lyle is now known as david-lyle_afk23:29
*** eghobo has quit IRC23:29
*** annashen has quit IRC23:29
*** Mandell has quit IRC23:30
*** patrickeast has quit IRC23:32
*** zz_dimtruck is now known as dimtruck23:32
*** jaosorior has quit IRC23:32
*** Mandell has joined #openstack-dev23:32
*** rwsu has quit IRC23:35
*** ajmiller_ has quit IRC23:37
*** otter768 has joined #openstack-dev23:37
*** rwsu has joined #openstack-dev23:38
*** ChuckC has joined #openstack-dev23:41
*** bdpayne has quit IRC23:41
*** bdpayne has joined #openstack-dev23:41
*** otter768 has quit IRC23:42
*** dimtruck is now known as zz_dimtruck23:42
*** tdruiva has joined #openstack-dev23:44
*** kbrierly has quit IRC23:44
*** kbrierly has joined #openstack-dev23:45
*** sarob has joined #openstack-dev23:45
*** btulchinsky has quit IRC23:46
*** buzztroll has quit IRC23:46
*** Mandell has quit IRC23:47
*** Mandell has joined #openstack-dev23:48
*** Mandell has quit IRC23:48
*** buzztroll has joined #openstack-dev23:49
*** melwitt has joined #openstack-dev23:49
*** dimsum__ has quit IRC23:52
*** _cjones_ has joined #openstack-dev23:53
*** _cjones_ has quit IRC23:55
*** dims_ has joined #openstack-dev23:55
*** Mandell has joined #openstack-dev23:56
*** topol has joined #openstack-dev23:56
*** markvoelker has joined #openstack-dev23:57
*** dims_ has quit IRC23:57
*** dims_ has joined #openstack-dev23:57
*** thomasem has quit IRC23:59
*** mattamizer has joined #openstack-dev23:59

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