*** prashanthr_ has joined #openstack-marconi | 00:34 | |
*** fifieldt has joined #openstack-marconi | 00:55 | |
*** oz_akan_ has joined #openstack-marconi | 01:15 | |
*** prashanthr_ has quit IRC | 01:38 | |
*** prashanthr_ has joined #openstack-marconi | 01:41 | |
*** nosnos has joined #openstack-marconi | 01:42 | |
*** haomai___ has quit IRC | 01:42 | |
*** haomaiwa_ has joined #openstack-marconi | 01:42 | |
*** flwang_ has joined #openstack-marconi | 01:50 | |
*** flwang_ has quit IRC | 01:55 | |
*** haomai___ has joined #openstack-marconi | 01:58 | |
*** haomaiwa_ has quit IRC | 01:59 | |
*** prashanthr_1 has joined #openstack-marconi | 03:09 | |
*** prashanthr_1 has left #openstack-marconi | 03:09 | |
*** prashanthr_1 has joined #openstack-marconi | 03:09 | |
*** prashanthr_1 is now known as prashanthr_1|afk | 03:09 | |
*** prashanthr_1|afk is now known as prashanthr_1 | 03:10 | |
*** chandan_kumar has joined #openstack-marconi | 03:17 | |
*** oz_akan_ has quit IRC | 03:20 | |
*** nosnos has quit IRC | 03:22 | |
*** chandan_kumar has quit IRC | 03:36 | |
*** chandan_kumar has joined #openstack-marconi | 03:36 | |
*** flwang_ has joined #openstack-marconi | 03:51 | |
*** flwang_ has quit IRC | 03:56 | |
*** prashanthr_ has quit IRC | 04:18 | |
*** prashanthr_ has joined #openstack-marconi | 04:20 | |
*** oz_akan_ has joined #openstack-marconi | 04:21 | |
*** ajc_ has joined #openstack-marconi | 04:25 | |
*** nosnos has joined #openstack-marconi | 04:25 | |
*** oz_akan_ has quit IRC | 04:25 | |
openstackgerrit | Fei Long Wang proposed a change to openstack/marconi: limit=0 in sqlalchemy means 0 instead of unlimited https://review.openstack.org/105353 | 04:53 |
---|---|---|
*** chandan_kumar has quit IRC | 04:58 | |
*** chandan_kumar has joined #openstack-marconi | 05:04 | |
*** chandan_kumar has quit IRC | 05:04 | |
*** chandankumar has joined #openstack-marconi | 05:04 | |
*** prashanthr_1 has quit IRC | 05:14 | |
*** oz_akan_ has joined #openstack-marconi | 05:22 | |
*** oz_akan_ has quit IRC | 05:26 | |
wpf | flwang: ping | 05:50 |
flwang | wpf: pong | 05:50 |
wpf | flwang: is it the convension that limit=0 means unlimited? | 05:53 |
flwang | for mongo, yes, for sqlalchemy, no | 05:53 |
wpf | it seems that in the non-pooled context , in the storage driver for mongo, sqlalchemy ,it really means 0 when unlimit =0 | 05:53 |
flwang | both? | 05:54 |
flwang | even in mongo? | 05:54 |
wpf | I just checked the list of messaages.py of sqlalchemy | 05:55 |
flwang | you confused me | 05:55 |
wpf | if you set limit =0 , then sel.limit(0) | 05:56 |
flwang | I think the issue is only existed in sqlalchemy, but I'm not aware if mongo has the issue, based on my test, no | 05:56 |
flwang | for sqlalchemy? | 05:56 |
wpf | yes | 05:56 |
flwang | yep, it's | 05:56 |
wpf | L192 line of messages.py ofr sqlalchemy | 05:56 |
wpf | so it means 0 ,and it 's valid sql statement althougth does not make sense | 05:57 |
flwang | why it doesn't make sense? | 05:57 |
flwang | you can specify a limit value what you want, why it doesn't make sense? | 05:58 |
wpf | I mean 0 is valid | 05:58 |
wpf | "doesn't make sense" here ,means that no one want limit = 0 | 05:58 |
wpf | and for mongo ,code as below | 05:59 |
wpf | if limit is not None: | 05:59 |
wpf | cursor.limit(limit) | 05:59 |
flwang | IMHO, if you're specifying 0, then it means you don't want to get anything | 05:59 |
wpf | yes, I know | 05:59 |
flwang | yep | 05:59 |
flwang | I can see your point, we may need some check | 05:59 |
wpf | so what I want to say is that why "limit=0" means unlimited | 05:59 |
flwang | http://docs.mongodb.org/manual/reference/method/cursor.limit/ | 06:01 |
flwang | because the original author want to leverage the 0=unlimit in mongodb | 06:01 |
flwang | but after that, we start to support sqlalchemy, then it's used in a wrong way | 06:01 |
wpf | well, cursor.limit(0) means unlimited in mongo? | 06:02 |
wpf | it's out of my knowledges | 06:02 |
flwang | A limit() value of 0 (i.e. .limit(0)) is equivalent to setting no limit. A negative limit is similar to a positive limit, but a negative limit prevents the creation of a cursor such that only a single batch of results is returned. As such, with a negative limit, if the limited result set does not fit into a single batch, the number of documents received will be less than the limit. | 06:03 |
wpf | ok | 06:04 |
flwang | does it answer your question? | 06:05 |
wpf | then we may check the non-pooled sqlalchemy driver also , I thought there 0 means 0 | 06:05 |
flwang | as for if we need a check as for sqlalchemy, I would say hold on | 06:05 |
flwang | hmm... let me think | 06:06 |
flwang | there are some reasons why I saw hold on, because: | 06:07 |
*** reed has quit IRC | 06:07 | |
flwang | 1. the issue I'm fixing is we're the limit of alchemy in a wrong way, and it's causing some bad result, you can't create pool if you're using sql db as the pool management db | 06:08 |
flwang | 2. but as the the non-pool scenario, no code are using the limit=0 intentionally and I don't think end user will do that either, right? | 06:10 |
flwang | 3. sqlalchemy will be removed | 06:11 |
*** prashanthr_ has quit IRC | 06:11 | |
flwang | that's it | 06:11 |
*** prashanthr_ has joined #openstack-marconi | 06:11 | |
wpf | Ok, I will think it more , thanks for the explaination of the limit=0 in mongodb, | 06:12 |
flwang | anytime, as for the non-pool scenario, you can have a chat with the other guys to get more insights. it can be tracked by another patch if it's necessary | 06:13 |
*** oz_akan_ has joined #openstack-marconi | 06:23 | |
*** oz_akan_ has quit IRC | 06:27 | |
*** oz_akan_ has joined #openstack-marconi | 06:52 | |
*** AAzza_afk is now known as AAzza | 06:53 | |
*** oz_akan_ has quit IRC | 06:59 | |
*** ykaplan has joined #openstack-marconi | 07:06 | |
*** haomai___ has quit IRC | 07:17 | |
*** haomaiwang has joined #openstack-marconi | 07:18 | |
*** AAzza is now known as AAzza_afk | 07:23 | |
*** haomai___ has joined #openstack-marconi | 07:33 | |
*** prashanthr_ has quit IRC | 07:34 | |
*** haomaiwang has quit IRC | 07:35 | |
*** prashanthr_ has joined #openstack-marconi | 07:37 | |
*** prashanthr_1 has joined #openstack-marconi | 07:45 | |
*** prashanthr_ has quit IRC | 07:47 | |
*** oz_akan_ has joined #openstack-marconi | 07:56 | |
*** oz_akan_ has quit IRC | 08:00 | |
*** flaper87|afk is now known as flaper87 | 08:06 | |
*** prashanthr_1 has quit IRC | 08:10 | |
*** prashanthr_ has joined #openstack-marconi | 08:13 | |
*** prashanthr_ has quit IRC | 08:16 | |
*** prashanthr_ has joined #openstack-marconi | 08:18 | |
*** flwang_ has joined #openstack-marconi | 08:52 | |
*** oz_akan_ has joined #openstack-marconi | 08:56 | |
*** oz_akan_ has quit IRC | 09:01 | |
*** haomai___ has quit IRC | 09:13 | |
*** haomaiwa_ has joined #openstack-marconi | 09:14 | |
*** ajc_ has quit IRC | 09:20 | |
*** prashanthr_ has quit IRC | 09:30 | |
*** haomaiw__ has joined #openstack-marconi | 09:30 | |
*** haomaiwa_ has quit IRC | 09:32 | |
*** prashanthr_ has joined #openstack-marconi | 09:33 | |
*** oz_akan_ has joined #openstack-marconi | 09:57 | |
*** haomaiw__ has quit IRC | 09:59 | |
*** haomaiwang has joined #openstack-marconi | 09:59 | |
*** oz_akan_ has quit IRC | 10:02 | |
*** haomaiw__ has joined #openstack-marconi | 10:14 | |
*** haomaiwang has quit IRC | 10:18 | |
*** oz_akan_ has joined #openstack-marconi | 10:58 | |
flwang_ | flaper87: ping | 10:58 |
*** AAzza_afk is now known as AAzza | 11:01 | |
*** oz_akan_ has quit IRC | 11:02 | |
flaper87 | flwang_: pong | 11:07 |
flwang_ | so the meeting of this week is after 4 hours, right? | 11:11 |
flwang_ | and have we started the meeting rotate? | 11:11 |
flaper87 | flwang_: we'll do it at the same time this week and we'll probably start rotating starting next week | 11:14 |
flwang_ | btw, seems there are lots of bugs in the sqlalchemy driver, i'm not sure if we should continuelly fix them. do you know any outlook about removing the sqlalchemy driver? | 11:14 |
flaper87 | I haven't shared the time we agreed on with the rest of the team yet | 11:14 |
flaper87 | flwang_: we'll remove the sqlalchemy driver from the messaging API and keep it for the management API | 11:15 |
flaper87 | flwang_: basically you can use sqlalchemy to store the pools info but not messages | 11:15 |
flaper87 | flwang_: does that make sense? | 11:15 |
flwang_ | oh, come on, so I have to fix that one :) | 11:16 |
*** AAzza is now known as AAzza_afk | 11:16 | |
flwang_ | based on current implement, the uniqueconstriant for sqlalchemy on sqlite doesn't work | 11:16 |
flaper87 | flwang_: :P | 11:16 |
flaper87 | flwang_: unique constraints need to be enabled in sqlite, AFAIK | 11:16 |
flaper87 | you should probably navigate the history, I remember fixing that thing once | 11:16 |
flaper87 | flwang_: btw, can you do some reviews on my flavor patches | 11:17 |
flaper87 | we're moving very slow in Marconi | 11:17 |
flaper87 | :( | 11:17 |
flwang_ | flaper87: sure | 11:17 |
*** tedross has joined #openstack-marconi | 11:17 | |
* flwang_ is shame for his performance | 11:18 | |
*** nosnos has quit IRC | 11:23 | |
flwang_ | as for the design of flavor | 11:23 |
flwang_ | I would suggest there is flavor id to avoid name conflict, you know, there maybe a lot of flavors created by differant users | 11:24 |
flwang_ | https://review.openstack.org/#/c/98777/4/marconi/queues/storage/base.py I'm talking about this | 11:25 |
flaper87 | Users can't create flavors | 11:25 |
flaper87 | that's an admin thing | 11:26 |
flwang_ | so we're assuming there won't too much flavors, right? | 11:26 |
flwang_ | and it can be handled by name, is it? | 11:26 |
flaper87 | To create a flavor you need to know what pool that flavor will sit on top of | 11:26 |
flaper87 | flwang_: I'm fine with using ID, I'm just refreshing the whole idea :P | 11:27 |
flwang_ | flaper87: got, thanks for heads up :) | 11:27 |
flaper87 | I thought about that, though. I went with name because it's simpler to remember/write down. | 11:27 |
flaper87 | although, id's would give us less trouble | 11:28 |
flwang_ | we're using name in Catalogue, but I don't really like it | 11:28 |
flwang_ | personally, I would suggest use id besides name to avoid any future potential issues | 11:29 |
flwang_ | thoughts? | 11:29 |
flaper87 | I'm fine with that | 11:31 |
flaper87 | I'll add it for today's meting agenda | 11:31 |
flaper87 | s/for/on/ | 11:31 |
flwang_ | cool, then I will review all the flavor patch tomorrow, deal? | 11:32 |
*** oz_akan_ has joined #openstack-marconi | 11:34 | |
*** prashanthr_ has quit IRC | 11:35 | |
flaper87 | flwang_: deal | 11:36 |
flaper87 | thanks | 11:36 |
flwang_ | thanks, btw, I have a quick question. | 11:37 |
flaper87 | shoot | 11:37 |
flwang_ | about the detailed health, kgriffs suggested to show the message amout for each pool, do you think we should show all the messages including claimed, or just the ^valid^ messages? | 11:38 |
flaper87 | all of them? | 11:41 |
flaper87 | Rabbit shows acquired, ready and total | 11:42 |
flaper87 | acquied == claimed | 11:42 |
flaper87 | ready == free | 11:42 |
flaper87 | total = acquired + free | 11:42 |
flaper87 | Btw, counts are expensive so be careful with that | 11:42 |
flwang_ | yep, I know, so any suggestion? | 11:46 |
flwang_ | and kgriffs said we should provide a time about a whole work flow response time, such as create queue, create messages, claim, etc... | 11:46 |
flwang_ | so as for the count, seems we should talk to database directly to get better performance, right? | 11:46 |
flaper87 | yeah, I'd start with counts for now | 11:48 |
flaper87 | lets get that merged | 11:48 |
flaper87 | and then figure out what to add next | 11:48 |
flaper87 | people will contribute with more stats | 11:49 |
flaper87 | ;) | 11:49 |
flaper87 | brb, lunch | 11:49 |
*** mpanetta has joined #openstack-marconi | 11:54 | |
*** mpanetta_ has joined #openstack-marconi | 11:56 | |
*** mpanetta has quit IRC | 11:56 | |
*** flwang_ has quit IRC | 11:57 | |
*** prashanthr_ has joined #openstack-marconi | 12:40 | |
*** sriram1 has joined #openstack-marconi | 12:42 | |
*** sriram1 has quit IRC | 12:42 | |
*** sriram1 has joined #openstack-marconi | 12:42 | |
*** jmckind has joined #openstack-marconi | 12:53 | |
*** prashanthr_ has quit IRC | 12:54 | |
*** prashanthr_ has joined #openstack-marconi | 12:56 | |
*** tedross has quit IRC | 13:01 | |
*** mpanetta_ is now known as mpanetta | 13:04 | |
*** alcabrera|afk is now known as alcabrera | 13:08 | |
*** abettadapur has joined #openstack-marconi | 13:10 | |
*** jmckind has quit IRC | 13:14 | |
*** tedross has joined #openstack-marconi | 13:16 | |
*** malini has joined #openstack-marconi | 13:22 | |
*** amitgandhi has joined #openstack-marconi | 13:25 | |
*** amitgandhi has quit IRC | 13:25 | |
*** amitgandhi has joined #openstack-marconi | 13:26 | |
*** tedross has quit IRC | 13:37 | |
*** Obulpathi has joined #openstack-marconi | 13:39 | |
*** Obulpathi has quit IRC | 13:40 | |
*** Obulpathi has joined #openstack-marconi | 13:41 | |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Use the class queue_name and project for tests https://review.openstack.org/101172 | 13:46 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Clean up queues created for certain tests https://review.openstack.org/101173 | 13:46 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Fix typos https://review.openstack.org/105457 | 13:46 |
* flaper87 should learn how to pep8 | 13:46 | |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Fix typos https://review.openstack.org/105457 | 13:48 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Use the class queue_name and project for tests https://review.openstack.org/101172 | 13:48 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Clean up queues created for certain tests https://review.openstack.org/101173 | 13:48 |
sriram1 | whoa whoa whoa | 13:49 |
flaper87 | sriram1: go and review | 13:49 |
flaper87 | :D | 13:49 |
flaper87 | also, good morning :P | 13:49 |
flaper87 | very simple patches | 13:49 |
flaper87 | malini: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | 13:49 |
flaper87 | alcabrera: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | 13:49 |
flaper87 | :D | 13:49 |
flaper87 | :D :D :D :D | 13:49 |
sriram1 | sure. | 13:50 |
sriram1 | will you be seeing the football semi-final today? :) | 13:50 |
alcabrera | good morning, all. :) | 13:51 |
flaper87 | probably not, I'm hosting the python meetup today | 13:51 |
flaper87 | alcabrera: gooooood morning my friend | 13:51 |
flaper87 | alcabrera: you're being missed in this channel. I hope everything is going great over there | 13:51 |
mpanetta | Morning all :) | 13:51 |
*** tedross has joined #openstack-marconi | 13:53 | |
alcabrera | flaper87: +2 all the patches! :) | 13:53 |
malini | flaper87: done! | 13:54 |
alcabrera | flaper87: things are going well. I'm continuing my studies in typed-FP, type systems, and making things along the way. :) | 13:54 |
malini | alcabrera: are you already in Austin? | 13:55 |
flaper87 | alcabrera: awesome, so happy to hear that! | 13:55 |
alcabrera | malini: I'm still in GA, up until August 22nd. | 13:55 |
malini | alcabrera: did you ever stop by the office? I saw ur sign on the whiteboard :) | 13:56 |
alcabrera | malini: I did, late one night when I was on my way to McDonalds and Kroger's. I picked up most of my books and left that there. ;) | 13:57 |
malini | alcabrera: so it was the real you ! | 13:58 |
sriram1 | I just noticed it, nice touch alcabrera :) | 13:58 |
alcabrera | haha | 13:58 |
alcabrera | yes, it was | 13:58 |
alcabrera | I made it terribly subtle | 13:59 |
*** prashanthr_1 has joined #openstack-marconi | 14:04 | |
flaper87 | do you guys know if kgriffs will be around today? | 14:07 |
malini | He is supposed to be back today | 14:08 |
flaper87 | I'm heading to the office, I should make it in time for the meeting. If i don't please go ahead w/o me | 14:08 |
flaper87 | malini: ^ | 14:08 |
flaper87 | malini: ok, thanks! | 14:08 |
flaper87 | that d00d is always on vacation | 14:08 |
flaper87 | pssss | 14:09 |
* flaper87 hides and runs away | 14:09 | |
malini | says the conference guy ;) | 14:09 |
ametts | ... who lives in Lake Como | 14:09 |
* ametts thinks flaper87's whole life is a vacation :) | 14:10 | |
flaper87 | ametts: LOL. fair enough | 14:11 |
flaper87 | :P | 14:11 |
flaper87 | kk, bbl | 14:11 |
*** flaper87 is now known as flaper87|afk | 14:11 | |
*** cpallares has joined #openstack-marconi | 14:11 | |
prashanthr_1 | Good morning all :) | 14:12 |
openstackgerrit | Malini Kamalambal proposed a change to openstack/marconi: Implement POP in v1.1 API https://review.openstack.org/90202 | 14:14 |
malini | hello prashanthr_! | 14:14 |
prashanthr_1 | Hello malini ! How you doing ? | 14:14 |
malini | good :) | 14:15 |
*** jmckind has joined #openstack-marconi | 14:18 | |
*** alex7511 has joined #openstack-marconi | 14:22 | |
*** abettadapur has quit IRC | 14:24 | |
*** flaper87|afk is now known as flaper87 | 14:34 | |
* flaper87 is back | 14:38 | |
*** vkmc has joined #openstack-marconi | 14:39 | |
*** vkmc has quit IRC | 14:39 | |
*** vkmc has joined #openstack-marconi | 14:39 | |
flaper87 | vkmc: helloooooooooooo | 14:40 |
*** alcabrera is now known as alcabrera|afk | 14:40 | |
vkmc | flaper87, hiiiiiiiiiiiii | 14:40 |
flaper87 | vkmc: how are you doing? | 14:41 |
flaper87 | did you read Gordon's email? | 14:41 |
flaper87 | Looks he agrees that the best thing to do is to *just* support amqp as-is | 14:41 |
flaper87 | without covering Marconi's API | 14:41 |
flaper87 | which is what we agreed on yday | 14:41 |
vkmc | flaper87, all good around here :) and you? | 14:42 |
flaper87 | vkmc: all great :D | 14:42 |
vkmc | flaper87, I'm reading it yeah, I'm glad he provided some feedback! | 14:42 |
*** mwagner_lap has joined #openstack-marconi | 14:42 | |
vkmc | flaper87, awesome, so let's stick with AMQP | 14:43 |
prashanthr_1 | vkmc, flaper87: good morning ! :) | 14:44 |
vkmc | evening prashanthr_! | 14:45 |
flaper87 | prashanthr_1: moooooorning | 14:45 |
*** alex7511 has quit IRC | 14:45 | |
*** alex7511 has joined #openstack-marconi | 14:47 | |
* flaper87 is in cleanup mode | 14:47 | |
vkmc | flaper87, code level or desktop level? | 14:48 |
openstackgerrit | A change was merged to openstack/marconi: Use the class queue_name and project for tests https://review.openstack.org/101172 | 14:48 |
flaper87 | vkmc: code level | 14:49 |
openstackgerrit | A change was merged to openstack/marconi: Clean up queues created for certain tests https://review.openstack.org/101173 | 14:51 |
vkmc | it was serious | 14:54 |
openstackgerrit | A change was merged to openstack/marconi: Fix typos https://review.openstack.org/105457 | 14:54 |
flaper87 | vkmc: more coming | 14:55 |
* vkmc holds tight | 14:55 | |
flaper87 | google is asking me if I know myself | 14:57 |
flaper87 | when did it became buddist ? | 14:57 |
flaper87 | become* | 14:57 |
malini | meeting???? | 15:00 |
vkmc | meeting \o/ | 15:01 |
malini | we'll resolve all the existential questions there | 15:01 |
*** jmckind has quit IRC | 15:01 | |
malini | flaper87: openstack-meeting-alt | 15:01 |
flaper87 | malini: yup | 15:02 |
*** jmckind has joined #openstack-marconi | 15:05 | |
*** chandankumar has quit IRC | 15:07 | |
*** jmckind has quit IRC | 15:08 | |
*** jmckind has joined #openstack-marconi | 15:13 | |
*** jay-atl has quit IRC | 15:14 | |
*** reed has joined #openstack-marconi | 15:20 | |
malini | oz_akan_: can u join #openstack-meeting-alt? | 15:24 |
*** AAzza_afk is now known as AAzza | 15:25 | |
*** prashanthr_1 has quit IRC | 15:26 | |
vkmc | AAzza, join us in #openstack-meeting-alt :) | 15:29 |
*** jmckind has quit IRC | 15:30 | |
*** prashanthr_ has quit IRC | 15:35 | |
sriram1 | AAzza: can you join us for the meeting :) | 15:36 |
AAzza | yes, course) | 15:37 |
*** jmckind has joined #openstack-marconi | 15:37 | |
openstackgerrit | A change was merged to openstack/marconi: limit=0 in sqlalchemy means 0 instead of unlimited https://review.openstack.org/105353 | 15:43 |
*** jmckind has quit IRC | 15:47 | |
*** flwang_ has joined #openstack-marconi | 15:59 | |
* vkmc picks the minutes | 16:01 | |
malini | thanks vkmc!! | 16:02 |
vkmc | :) np! | 16:02 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Switch over oslo.i18n https://review.openstack.org/105498 | 16:03 |
*** flwang_ has quit IRC | 16:03 | |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Switch over oslo.i18n https://review.openstack.org/105498 | 16:03 |
flaper87 | vkmc: thanks | 16:04 |
vkmc | flaper87, np! | 16:06 |
vkmc | flaper87, in reply to the question 'why Marconi wants to provide support for AMQP transport' | 16:07 |
vkmc | flaper87, 'because we want to provide an messaging service alternative for AMQP clients' | 16:08 |
vkmc | flaper87, is enough? or do you have something else in mind? | 16:08 |
flaper87 | vkmc: there are a couple of reasons. the one you just said is certainly valid | 16:09 |
flaper87 | vkmc: another reason is that the semantics are different and Marconi can provide store-and-forward capabilities for AMQP | 16:10 |
flaper87 | another good reason is why not? | 16:10 |
flaper87 | What if we ask those questions the other way around? | 16:10 |
flaper87 | Why shouldn't we support it? | 16:10 |
vkmc | haha yeah, that's the first thing that came to my mind | 16:10 |
flaper87 | What would the benefit of not having this transport be? | 16:10 |
flaper87 | (besides from just having 1) | 16:10 |
flaper87 | does the above make sense? | 16:11 |
vkmc | yeah it does | 16:11 |
vkmc | since Marconi is a messaging system then having support for more than one transport it's certainly a good quality | 16:13 |
flaper87 | not necessarily a good qulity but it definitely makes sense | 16:13 |
flaper87 | it allows marconi to support a broader set of use-cases | 16:13 |
flaper87 | I really don't like when people just drop questions on emails without providing actual feedback | 16:14 |
openstackgerrit | A change was merged to openstack/marconi: Wrong param order when using errors.QueueNotMapped https://review.openstack.org/103730 | 16:14 |
vkmc | well yeah... it is not very constructive | 16:14 |
vkmc | I don't know what reply he is expecting | 16:15 |
vkmc | flaper87, thanks for the feedback | 16:17 |
flaper87 | vkmc: in those cases just give your best based on what you would expect and also provide feedback on his email | 16:17 |
*** chandankumar has joined #openstack-marconi | 16:17 | |
flaper87 | it's perfectly ok to say: "Next time be more explicit and constructive" | 16:18 |
flaper87 | "P.S: Stop top-posting" | 16:18 |
* flaper87 forgot to turn off jerk-mode | 16:18 | |
vkmc | lol | 16:18 |
*** oz_akan_ has quit IRC | 16:29 | |
*** alcabrera|afk is now known as alcabrera | 16:29 | |
flaper87 | malini: can I get reviews here? https://review.openstack.org/#/c/98777/ | 16:30 |
flaper87 | since we agreed on using name | 16:30 |
openstackgerrit | Flavio Percoco proposed a change to openstack/marconi: Switch over oslo.i18n https://review.openstack.org/105498 | 16:45 |
*** mkoderer has quit IRC | 16:52 | |
*** flaper87 is now known as flaper87|afk | 17:00 | |
*** oz_akan_ has joined #openstack-marconi | 17:13 | |
*** chandankumar has quit IRC | 17:13 | |
malini | w.r.t https://review.openstack.org/#/c/98777/ , we had some feedback during the summit abt some use cases tht might need to set queue metadata etc. What is our final decision on tht? | 17:38 |
sriram1 | I think we decided to keep it right? | 17:39 |
sriram1 | flaper87|afk: ^ | 17:39 |
malini | sriram1: tht's what I though too | 17:40 |
*** sriram1 is now known as sriram | 17:40 | |
* sriram drives away sriram1 | 17:40 | |
malini | :D | 17:40 |
malini | I don't drive away any of my selves | 17:41 |
sriram | oh, you should try it out.. sriram1 is most probably on vacation now. :P | 17:41 |
* sriram shouldnt have driven him away :O | 17:41 | |
*** oz_akan_ has quit IRC | 17:42 | |
*** oz_akan_ has joined #openstack-marconi | 17:43 | |
*** AAzza is now known as AAzza_afk | 17:45 | |
*** flwang_ has joined #openstack-marconi | 18:00 | |
*** AAzza_afk is now known as AAzza | 18:03 | |
*** flwang_ has quit IRC | 18:04 | |
*** ykaplan has quit IRC | 18:09 | |
*** keith_newstadt has quit IRC | 18:10 | |
*** ametts has quit IRC | 18:11 | |
*** mkoderer has joined #openstack-marconi | 18:22 | |
*** ametts has joined #openstack-marconi | 18:24 | |
*** AAzza is now known as AAzza_afk | 18:37 | |
openstackgerrit | Malini Kamalambal proposed a change to openstack/marconi: Implement POP in v1.1 API https://review.openstack.org/90202 | 18:39 |
*** alcabrera is now known as alcabrera|afk | 18:46 | |
Obulpathi | kgriffs, flaper87, malini, sriram, vkmc, balajiiyer: A Proof of concept for notifications: https://etherpad.rax.io/p/notifications | 19:02 |
Obulpathi | Please take a look and give your feedback | 19:02 |
malini | Obulpathi: Can you paste this in https://etherpad.openstack.org/ ? | 19:03 |
Obulpathi | malini: sure | 19:03 |
Obulpathi | Sorry .. the link on etherpad: https://etherpad.openstack.org/p/container-notifications | 19:07 |
Obulpathi | kgriffs, flaper87, malini, sriram, vkmc, balajiiyer: A Proof of concept for notifications: https://etherpad.openstack.org/p/container-notifications | 19:07 |
*** malini has quit IRC | 19:28 | |
*** keith_newstadt has joined #openstack-marconi | 19:40 | |
*** flwang_ has joined #openstack-marconi | 20:01 | |
*** flwang_ has quit IRC | 20:05 | |
*** flwang_ has joined #openstack-marconi | 20:12 | |
*** sriram has quit IRC | 20:15 | |
*** fifieldt has quit IRC | 20:15 | |
*** sriram has joined #openstack-marconi | 20:15 | |
*** sriram has quit IRC | 20:17 | |
*** sriram has joined #openstack-marconi | 20:20 | |
*** amitgandhi has quit IRC | 20:23 | |
*** fifieldt has joined #openstack-marconi | 20:28 | |
*** flwang_ has quit IRC | 20:33 | |
*** alex7511 has quit IRC | 20:33 | |
*** amitgandhi has joined #openstack-marconi | 20:41 | |
*** mkoderer has quit IRC | 20:42 | |
*** keith_newstadt has quit IRC | 20:44 | |
*** amitgandhi has quit IRC | 20:45 | |
*** mpanetta has quit IRC | 20:52 | |
*** AAzza_afk is now known as AAzza | 21:05 | |
*** AAzza is now known as AAzza_afk | 21:13 | |
*** tedross has quit IRC | 21:16 | |
*** Obulpathi has quit IRC | 21:28 | |
*** malini has joined #openstack-marconi | 21:43 | |
*** malini has quit IRC | 21:43 | |
*** malini has joined #openstack-marconi | 21:43 | |
*** malini has left #openstack-marconi | 21:44 | |
*** sriram has quit IRC | 21:48 | |
*** flwang has quit IRC | 22:01 | |
*** malini|afk is now known as malini | 22:12 | |
*** flwang has joined #openstack-marconi | 22:14 | |
*** malini is now known as malini|afk | 22:22 | |
*** cpallares has quit IRC | 22:26 | |
*** flwang_ has joined #openstack-marconi | 22:34 | |
*** oz_akan__ has joined #openstack-marconi | 22:37 | |
*** oz_akan_ has quit IRC | 22:38 | |
*** flwang_ has quit IRC | 22:39 | |
*** oz_akan__ has quit IRC | 23:18 | |
*** reed has quit IRC | 23:27 | |
*** reed_ has joined #openstack-marconi | 23:27 | |
*** mwagner_lap has quit IRC | 23:28 | |
*** reed_ is now known as reed | 23:28 | |
*** reed has quit IRC | 23:29 | |
*** reed has joined #openstack-marconi | 23:29 | |
*** amalagon has joined #openstack-marconi | 23:31 | |
*** amalagon_ has quit IRC | 23:33 | |
*** tonytan4ever has joined #openstack-marconi | 23:34 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!