Wednesday, 2014-04-16

*** ChanServ changes topic to "OpenStack Queuing and Notification Service || Smile :D || Meetings every Tuesday @ 15:00 UTC || Wiki: https://wiki.openstack.org/wiki/Marconi || Paste: http://paste.openstack.org/ || Send messages and make some noise :D"00:02
*** fifieldt has joined #openstack-marconi01:26
*** ipbabble has quit IRC01:32
*** haomaiw__ has quit IRC01:42
*** haomaiwang has joined #openstack-marconi01:43
*** ipbabble has joined #openstack-marconi01:44
*** haomaiw__ has joined #openstack-marconi02:02
*** haomaiwang has quit IRC02:05
*** flwang has quit IRC02:10
*** norman has joined #openstack-marconi02:57
*** nosnos has quit IRC03:35
*** nosnos has joined #openstack-marconi04:25
*** saju_m has joined #openstack-marconi04:27
*** saju_m has quit IRC04:27
*** chandan_kumar has joined #openstack-marconi05:31
*** mkoderer has joined #openstack-marconi06:33
*** AAzza has joined #openstack-marconi06:44
*** chandan_kumar has quit IRC07:02
*** flaper87|afk is now known as flaper8707:04
*** chandan_kumar has joined #openstack-marconi07:08
*** AAzza has quit IRC07:13
*** norman has quit IRC08:04
*** reed has joined #openstack-marconi08:09
*** chandan_kumar has quit IRC09:06
*** flwang has joined #openstack-marconi09:11
flwangflaper87: morning09:11
flaper87flwang: hey hey09:11
flaper87how are you doing?09:11
flwanggood, trying to set up the 'production level' marconi :)09:12
flaper87flwang: awesome!09:12
flaper87I'll start working on the CLI tools again in a bit09:12
flwanganything I can help?09:12
flaper87I'll push something in a bit, that should be enough to get some help in expanding it09:15
*** chandan_kumar has joined #openstack-marconi09:19
*** flwang has quit IRC09:19
*** chandan_kumar has quit IRC09:26
*** chandan_kumar has joined #openstack-marconi09:26
*** nosnos has quit IRC10:07
*** nosnos has joined #openstack-marconi10:12
*** nosnos has quit IRC10:34
*** nosnos has joined #openstack-marconi10:35
*** nosnos has quit IRC10:39
*** nosnos has joined #openstack-marconi11:06
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Don't stream by default  https://review.openstack.org/8793411:16
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Initial support for openstack-client  https://review.openstack.org/8793711:23
*** tedross has joined #openstack-marconi11:33
openstackgerritFlavio Percoco proposed a change to openstack/marconi: Remove MySQL-python from the dependency list  https://review.openstack.org/8794411:58
flaper87malini_afk: alcabrera|afk Good morning :)12:08
flaper87whenever you're around, I need your eyes on this patch https://review.openstack.org/#/c/87944/12:09
flaper87I also proposed it for milestone-proposed, we don't want to ship marconi icehouse with a mysql dependency, IMHO12:09
*** nosnos has quit IRC12:17
*** norman has joined #openstack-marconi12:23
*** norman has quit IRC12:26
*** sriram has joined #openstack-marconi12:46
*** sriram has quit IRC12:46
*** sriram has joined #openstack-marconi12:46
*** jchai has joined #openstack-marconi12:50
*** Obulpathi has joined #openstack-marconi13:10
*** Obulpathi has quit IRC13:10
*** Obulpathi has joined #openstack-marconi13:11
*** mpanetta has joined #openstack-marconi13:17
*** amitgandhi has joined #openstack-marconi13:34
*** amitgandhi has quit IRC13:35
*** amitgandhi has joined #openstack-marconi13:35
*** malini_afk is now known as malini13:38
maliniGood Morning flaper87!13:38
malinichecking the patch13:39
alcabrera|afkmalini: ha, we +2'd at the same time.13:41
alcabrera|afkI Approved.13:41
alcabrera|afk:P13:41
malini:D13:41
*** alcabrera|afk is now known as alcabrera13:41
alcabreraflaper87, malini: good morning!13:42
flaper87malini: alcabrera thanks :)13:42
flaper87and good morning to both of you13:42
malinihope you are having a good day flaper87!13:42
flaper87I am, thanks. I've been able to do things that keep me happy. -> Working on Marconi13:43
openstackgerritA change was merged to openstack/marconi: Remove MySQL-python from the dependency list  https://review.openstack.org/8794413:44
*** balajiiyer has joined #openstack-marconi13:45
alcabrerahow goes GEB, flaper87?13:45
alcabrerathere. I've +2'd everyone's patches. now we can all go home and take a nap.13:46
malini:D13:47
*** flwang has joined #openstack-marconi13:48
alcabreraflaper87: re: the client streaming patch13:51
flaper87alcabrera: GEB is dense! The preface requires some thinking already :D13:52
flaper87alcabrera: shoot13:52
alcabreraI wonder if there's a cleaner way to handle that. it seems like once you set stream(), you can't change your mind later with that particular iterator13:52
alcabrerawhich might be okay13:52
alcabrerae.g., iter.stream() is a one-way state change13:52
alcabrerahmmm13:55
alcabreraso currently, someone can take advantage of the iterator protocol, e.g., 'for m in client.get_messages():'13:55
alcabreraand that invokes the iterator13:55
alcabrerasimilarly for get_queues13:55
* alcabrera gets all Haskell-y13:56
alcabrerathis is like choosing between a strict and a lazy representation of data13:56
alcabreraflaper87: what if...13:57
* flaper87 reads backlog13:57
alcabrerastream was passed in as a construction time parameter?13:57
alcabrerainstead of being a state-change operation13:57
alcabrera?13:57
alcabreraget_messages(stream=True)13:58
flaper87alcabrera: I wanted to have a construction time parameter, thing is that if I do: client.queues(...), I can't pass it13:58
alcabrerahmmm13:58
flaper87and if we pass `stream=True` that will consue users with API parameters13:58
flaper87as it is now, it can be reverted by doing `.stream(False)`13:58
flaper87it's weird, I agree13:58
flaper87I just couldn't come up with something better :P13:58
alcabrerahehe, no worries. :D13:59
alcabreraI'm given it some thought, too, to see if I can help13:59
flaper87The other way to do this would be to have a separte iterator13:59
alcabrera*given -> giving13:59
flaper87that gets an iterator13:59
flaper87Stream(client.queues(...))13:59
flaper87something like that13:59
flaper87or, client.stream.queues(...)13:59
alcabreraI'll think on it some more through the day.14:01
alcabreraI gotta run for now.14:01
alcabreraKitties need to go to the vet.14:01
alcabrera:)14:01
*** alcabrera is now known as alcabrera|afk14:02
flwangflaper87: do we have any plan to follow the xxx-specs for bp review?14:23
*** fifieldt has quit IRC14:24
flaper87flwang: xxx specs ?14:25
openstackgerritFlavio Percoco proposed a change to openstack/marconi: Disable Metadata write operations on v1.1  https://review.openstack.org/8797914:25
flwangflaper87: https://review.openstack.org/#/q/status:open+project:openstack/nova-specs,n,z14:25
flaper87flwang: ah yeah, those14:25
flaper87not yet14:25
flaper87I don't think we're at the point where we need that14:26
flaper87We'll have to, eventually14:26
flwangflaper87: got it14:31
*** mwagner_lap has quit IRC14:47
openstackgerritA change was merged to openstack/marconi: fix(sharding): deregister queue before delete  https://review.openstack.org/8701515:11
openstackgerritFlavio Percoco proposed a change to openstack/marconi: Disable Metadata write operations on v1.1  https://review.openstack.org/8797915:16
* flaper87 has been forgetting to run pep8 tests15:16
*** kgriffs|afk is now known as kgriffs15:21
kgriffso/15:23
kgriffsI'm recovering from my trip today, so am only partially online. :D15:23
kgriffsI'll be back in the saddle tomorrow.15:24
kgriffsflaper87: I'm now an official PyPy contributor. Took me most of monday to get oriented and figure out hg, but now that I've gone through the process once, it should be a lot easier the next time.15:26
mpanettaThey use mercurial?15:26
flaper87kgriffs: hahahha, funny that the hardest part was figuring out hg15:30
flaper87:D15:30
flaper87mpanetta: yeah, bitbucket15:30
flaper87bitbucket+mercurial that is15:30
mpanettaAh15:33
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Initial support for openstack-client  https://review.openstack.org/8793715:39
openstackgerritFlavio Percoco proposed a change to openstack/python-marconiclient: Don't stream by default  https://review.openstack.org/8793415:39
*** jchai is now known as jchai_afk15:40
*** chandan_kumar has quit IRC15:46
*** mwagner_lap has joined #openstack-marconi15:51
*** vkmc has joined #openstack-marconi15:54
*** vkmc has quit IRC15:54
*** vkmc has joined #openstack-marconi15:54
*** AAzza has joined #openstack-marconi16:30
*** ametts has quit IRC16:39
kgriffsmpanetta: do you have some time to chat about the Marconi ARM cluster?16:41
mpanettakgriffs: I should in about an hr, maybe less.  Is that ok?16:42
*** jchai_afk is now known as jchai16:42
kgriffssure, just ping me16:42
mpanettaAssuming you want uninterrupted chat ;)16:42
mpanettaIf you don't mind 5-10 minute long 'quiet periods'  we can start now16:43
balajiiyerAll pycon videos here - including lightning talks. http://www.leaseweblabs.com/2014/04/pycon-us-2014-full-conference-youtube-138-videos/16:46
balajiiyertime to find your talk kgriffs|afk16:47
*** alcabrera|afk is now known as alcabrera16:47
kgriffsbalajiiyer: looks like sunday evening lightning talks aren't up yet16:49
balajiiyeroooh16:52
*** ipbabble has quit IRC17:11
flaper87guys, btw! The rc2 tag was cut today: https://github.com/openstack/marconi/tree/2014.1.rc217:15
flaper87:)17:15
flaper87we're 1 step closer to the first, official, Marconi release17:15
alcabreraw00t17:15
mpanettaWOOT!!!17:15
maliniyayyy!!17:16
*** AAzza has quit IRC17:20
*** AAzza has joined #openstack-marconi17:20
*** ipbabble has joined #openstack-marconi17:23
*** Obulpathi has quit IRC17:29
kgriffslunch. brb17:31
*** kgriffs is now known as kgriffs|afk17:32
*** AAzza has quit IRC17:37
*** AAzza has joined #openstack-marconi17:37
*** Obulpathi has joined #openstack-marconi17:45
*** kgriffs|afk is now known as kgriffs18:02
*** balajiiyer has quit IRC18:18
*** flwang has quit IRC18:21
*** balajiiyer has joined #openstack-marconi18:25
*** vkmc has quit IRC18:40
*** kgriffs is now known as kgriffs|afk18:44
*** AAzza has quit IRC18:49
*** AAzza has joined #openstack-marconi18:49
*** chandan_kumar has joined #openstack-marconi18:49
*** russellb has quit IRC18:53
*** russellb has joined #openstack-marconi18:55
*** balajiiyer has quit IRC18:57
*** balajiiyer has joined #openstack-marconi18:57
*** AAzza has quit IRC18:59
*** balajiiyer1 has joined #openstack-marconi19:00
*** balajiiyer has quit IRC19:02
*** chandan_kumar has quit IRC19:30
*** Ephur has joined #openstack-marconi19:35
*** malini is now known as malini_afk19:38
*** alcabrera is now known as alcabrera|afk19:52
*** chandan_kumar has joined #openstack-marconi19:56
*** alcabrera|afk is now known as alcabrera19:57
*** sriram has quit IRC20:29
*** mpanetta has quit IRC20:50
*** balajiiyer1 has quit IRC20:55
*** Obulpathi has quit IRC20:57
*** kgriffs|afk is now known as kgriffs21:03
*** kgriffs is now known as kgriffs|afk21:04
*** balajiiyer has joined #openstack-marconi21:08
*** balajiiyer has quit IRC21:23
*** Obulpathi has joined #openstack-marconi21:36
*** mwagner_lap has quit IRC21:38
*** tedross has quit IRC22:05
*** amitgandhi has quit IRC22:05
*** amitgandhi has joined #openstack-marconi22:06
*** jchai has quit IRC22:09
*** amitgandhi has quit IRC22:10
*** Obulpathi has quit IRC22:27
*** reed has quit IRC23:21
*** flaper87 is now known as flaper87|afk23:25
*** mkoderer has quit IRC23:32
*** chandan_kumar has quit IRC23:37
*** Obulpathi has joined #openstack-marconi23:40
*** Obulpathi has quit IRC23:45
*** Obulpathi has joined #openstack-marconi23:55

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