*** JAHoagie has quit IRC | 00:41 | |
*** JAHoagie has joined #openstack-zaqar | 00:56 | |
*** amitgandhinz has joined #openstack-zaqar | 00:56 | |
*** amitgandhinz has quit IRC | 01:00 | |
*** JAHoagie has quit IRC | 01:14 | |
*** zhenq has joined #openstack-zaqar | 01:22 | |
*** kgriffs is now known as kgriffs|afk | 01:42 | |
*** achanda has quit IRC | 02:33 | |
*** achanda has joined #openstack-zaqar | 02:42 | |
*** achanda has quit IRC | 02:46 | |
*** achanda has joined #openstack-zaqar | 03:02 | |
*** amitgandhinz has joined #openstack-zaqar | 03:15 | |
*** amalagon has joined #openstack-zaqar | 03:19 | |
*** amalagon has quit IRC | 03:19 | |
*** amalagon has joined #openstack-zaqar | 03:20 | |
*** amalagon has joined #openstack-zaqar | 03:21 | |
*** achanda has quit IRC | 03:45 | |
*** achanda has joined #openstack-zaqar | 03:52 | |
*** JAHoagie has joined #openstack-zaqar | 04:15 | |
*** achanda has quit IRC | 04:16 | |
*** amalagon has quit IRC | 04:39 | |
*** amalagon has joined #openstack-zaqar | 04:40 | |
*** miqui has joined #openstack-zaqar | 04:42 | |
*** flwang1 has quit IRC | 04:43 | |
*** amitgandhinz has quit IRC | 04:52 | |
*** miqui has quit IRC | 04:52 | |
*** miqui has joined #openstack-zaqar | 04:53 | |
*** achanda has joined #openstack-zaqar | 05:16 | |
*** achanda has quit IRC | 05:18 | |
*** achanda has joined #openstack-zaqar | 05:18 | |
*** achanda has quit IRC | 05:45 | |
*** JAHoagie has quit IRC | 05:46 | |
*** echevemaster has quit IRC | 05:47 | |
*** exploreshaifali has joined #openstack-zaqar | 05:53 | |
*** achanda has joined #openstack-zaqar | 05:56 | |
openstackgerrit | OpenStack Proposal Bot proposed openstack/zaqar: Imported Translations from Transifex https://review.openstack.org/156896 | 06:03 |
---|---|---|
*** miqui has quit IRC | 06:26 | |
*** JAHoagie has joined #openstack-zaqar | 07:08 | |
*** JAHoagie has quit IRC | 07:12 | |
*** zhenq has quit IRC | 07:16 | |
*** exploreshaifali has quit IRC | 07:44 | |
*** exploreshaifali has joined #openstack-zaqar | 08:08 | |
exploreshaifali | flaper87, gooood morning | 08:18 |
exploreshaifali | please review https://review.openstack.org/#/c/144340/ if you get a bit of time | 08:19 |
*** achanda has quit IRC | 08:29 | |
*** achanda has joined #openstack-zaqar | 08:29 | |
*** achanda has quit IRC | 08:30 | |
*** JAHoagie has joined #openstack-zaqar | 09:08 | |
*** JAHoagie has quit IRC | 09:13 | |
*** diga has joined #openstack-zaqar | 09:44 | |
*** exploreshaifali has quit IRC | 10:05 | |
*** exploreshaifali has joined #openstack-zaqar | 10:58 | |
exploreshaifali | flaper87, around ? | 11:05 |
flaper87 | exploreshaifali: yup | 11:08 |
*** JAHoagie has joined #openstack-zaqar | 11:08 | |
flaper87 | exploreshaifali: reviewing now | 11:08 |
flaper87 | :) | 11:08 |
exploreshaifali | flaper87, :D | 11:09 |
exploreshaifali | flaper87, Thanks!! | 11:09 |
flaper87 | exploreshaifali: so, in order to use the pipeline, you need to change the config file, I don't think that's something we want for a part as critical as this handler | 11:11 |
flaper87 | so, here's the thing | 11:12 |
flaper87 | we have 2 options: | 11:12 |
flaper87 | We either hard-code it (as in we import the handler and add it to the pipeline" | 11:12 |
flaper87 | or we create a namespace for "internal handlers" | 11:12 |
*** JAHoagie has quit IRC | 11:12 | |
flaper87 | exploreshaifali: A namespace is an entry-point namespace | 11:13 |
exploreshaifali | okay | 11:13 |
flaper87 | exploreshaifali: you used zaqar.storage.message_queue_handler | 11:13 |
flaper87 | it should actually be: zaqar.storage.stages for it to work | 11:13 |
flaper87 | I think it'd be better to use an "internal" namespace | 11:14 |
flaper87 | just because hard-coding stuff is not nice | 11:14 |
exploreshaifali | okay so instead of zaqar.storage.message_queue_handler I will use "zaqar.storage.stages" | 11:16 |
exploreshaifali | but will it work automatically ? | 11:16 |
flaper87 | it won't work automatically, there's a bit of code to write. | 11:17 |
exploreshaifali | I mean what I did is just made an entry in setup.cfg | 11:17 |
flaper87 | zaqar.storage.stages is what you are supposed to be using already | 11:17 |
flaper87 | what I'd like to introduce is a `zaqar.storage.builtin.stages` | 11:17 |
flaper87 | or something like that | 11:18 |
flaper87 | these stages will *always* be loaded | 11:18 |
exploreshaifali | flaper87, ok, so after making entry in setup.cfg where should I write code for making things work ? | 11:27 |
flaper87 | exploreshaifali: so, we need something like: https://review.openstack.org/#/c/144340/17/zaqar/storage/pipeline.py,cm L74 | 11:28 |
flaper87 | but instead of reading the list of configs from the config object | 11:28 |
flaper87 | we need it to iterate over the available entry-points under the built-in namespace | 11:29 |
flaper87 | you can do that using the Namespace driver instead of the DriverManager | 11:29 |
flaper87 | I've an example of that | 11:29 |
flaper87 | exploreshaifali: https://review.openstack.org/#/c/156249/3/glance/async/flows/base_import.py,cm L226 | 11:30 |
flaper87 | The ExtensionManager gets a namespace and iterates over the entry-points listed there | 11:30 |
flaper87 | we need a function that basically does that and returns the list of entry-points | 11:31 |
exploreshaifali | flaper87, okay so there is nothing like extensionManager in Zaqar we have..... | 11:39 |
exploreshaifali | I need to create a function as you mentioned above | 11:39 |
exploreshaifali | and that function should be placed where? | 11:40 |
exploreshaifali | inside pipeline itself ? | 11:41 |
flaper87 | exploreshaifali: yes, in pipeline itself | 11:42 |
flaper87 | also, ExtensionManager is provided by stevedore, which we already use | 11:43 |
exploreshaifali | flaper87, where did we used ExtensionManager in Zaqar? | 11:44 |
*** exploreshaifali has quit IRC | 11:55 | |
*** JAHoagie has joined #openstack-zaqar | 12:08 | |
*** JAHoagie has quit IRC | 12:13 | |
vkmc | morningg | 12:15 |
flaper87 | vkmc: moooorning | 12:40 |
flaper87 | ah shaifali left :( | 12:40 |
*** exploreshaifali has joined #openstack-zaqar | 12:58 | |
vkmc | give some love to this https://review.openstack.org/#/c/156982/ | 13:01 |
* kragniz sends his meaningless love | 13:05 | |
*** JAHoagie has joined #openstack-zaqar | 13:08 | |
vkmc | thanks kragniz :) | 13:08 |
*** JAHoagie has quit IRC | 13:12 | |
*** dynarro has joined #openstack-zaqar | 13:47 | |
*** exploreshaifali has quit IRC | 13:55 | |
*** zhenq has joined #openstack-zaqar | 13:58 | |
*** JAHoagie has joined #openstack-zaqar | 14:08 | |
*** JAHoagie has quit IRC | 14:13 | |
*** diga_ has joined #openstack-zaqar | 14:14 | |
*** sriram has joined #openstack-zaqar | 14:15 | |
*** diga_ has quit IRC | 14:15 | |
*** JAHoagie has joined #openstack-zaqar | 14:17 | |
*** diga_ has joined #openstack-zaqar | 14:17 | |
diga_ | flaper87: Hi | 14:31 |
flaper87 | diga_: hey | 14:32 |
diga_ | after running zaqar-server -v | 14:32 |
diga_ | hi | 14:32 |
diga_ | it give me error - http://paste.openstack.org/show/177670/ | 14:32 |
diga_ | check this logs | 14:32 |
flaper87 | diga_: sounds like mongodb is not running | 14:33 |
diga_ | okk | 14:33 |
diga_ | let me check | 14:33 |
flaper87 | diga_: is it running ? Did you configure zaqar with the right mongodb options? | 14:33 |
flaper87 | sure | 14:33 |
* flaper87 is here | 14:33 | |
*** mpanetta has joined #openstack-zaqar | 14:33 | |
diga_ | yes, not sure | 14:33 |
diga_ | I just followed the steps | 14:33 |
*** csoukup has joined #openstack-zaqar | 14:34 | |
diga_ | I think its not running because I never ran it manually | 14:34 |
vkmc | diga_, can you paste your zaqar.conf file? | 14:36 |
diga_ | ok | 14:48 |
diga_ | vmkc: its a very long file, but I have done only suggested changes | 14:52 |
vkmc | diga_, it would be helpful to see it, at least the driver selection part | 14:55 |
*** amitgandhinz has joined #openstack-zaqar | 15:03 | |
*** malini has joined #openstack-zaqar | 15:03 | |
*** exploreshaifali has joined #openstack-zaqar | 15:05 | |
flaper87 | diga_: are you still hitting the issue ? | 15:16 |
*** JAHoagie has quit IRC | 15:17 | |
*** kgriffs|afk is now known as kgriffs | 15:22 | |
*** exploreshaifali has quit IRC | 15:28 | |
diga_ | I am installing mongodb again | 15:29 |
diga_ | flapper87, vmkc: Got it working | 15:29 |
diga_ | :) | 15:29 |
vkmc | cool! | 15:30 |
diga_ | flapper87, vmkc : Now my dev env is up & can you suggest me for starting the development in zaqar | 15:32 |
diga_ | ? | 15:32 |
vkmc | irc tip: write down the first letter of the nick you want to mention and press 'tab'... it will autocomplete the nick for you | 15:33 |
*** achanda has joined #openstack-zaqar | 15:33 | |
diga_ | cool! | 15:34 |
diga_ | vmkc: thanks! | 15:34 |
*** achanda has quit IRC | 15:41 | |
vkmc | diga_, so... there are several work to do | 15:47 |
vkmc | diga_, do you already have your contributor accounts? | 15:48 |
*** JAHoagie has joined #openstack-zaqar | 16:06 | |
diga_ | vkmc: yeah | 16:27 |
diga_ | I am active contributor of magnum | 16:27 |
vkmc | that's great | 16:28 |
diga_ | can you share some part of work with me ? | 16:28 |
vkmc | sure | 16:28 |
diga_ | vkmc: do we have zaqarclient implented or not yet ? | 16:29 |
vkmc | diga_, we do yeah | 16:30 |
vkmc | diga_, there is a lot to do in that side if you are interested | 16:30 |
diga_ | okay | 16:30 |
diga_ | vkmc: If you want, I can work on both the side, server as well as client | 16:31 |
diga_ | vkmc: will that be OK for you ? | 16:31 |
vkmc | diga_, this is open source :) feel free to dig in every single bit of Zaqar's code | 16:31 |
diga_ | :) | 16:31 |
vkmc | here is a list of bugs in Zaqar's client https://bugs.launchpad.net/python-zaqarclient | 16:31 |
diga_ | ok | 16:32 |
vkmc | I'd avise you break the ice with the code by fixing some of them | 16:32 |
vkmc | and then you could start working on feature development | 16:32 |
diga_ | vkmc: yes, agreed | 16:33 |
vkmc | diga_, also, you can check out the bugs server side in here https://bugs.launchpad.net/zaqar | 16:33 |
diga_ | vkmc: sure | 16:35 |
*** openstackgerrit has quit IRC | 16:36 | |
*** openstackgerrit has joined #openstack-zaqar | 16:36 | |
*** dynarro has quit IRC | 16:37 | |
*** amalagon has quit IRC | 16:38 | |
*** dynarro has joined #openstack-zaqar | 16:40 | |
*** dynarro has quit IRC | 17:04 | |
*** exploreshaifali has joined #openstack-zaqar | 17:12 | |
*** diga_ has quit IRC | 17:51 | |
*** AAzza_afk has joined #openstack-zaqar | 17:58 | |
*** AAzza has quit IRC | 18:00 | |
*** AAzzal has joined #openstack-zaqar | 18:00 | |
*** AAzzal is now known as AAzza | 18:01 | |
*** AAzza_afk has quit IRC | 18:04 | |
*** kgriffs is now known as kgriffs|afk | 18:07 | |
*** achanda has joined #openstack-zaqar | 18:31 | |
*** exploreshaifali has quit IRC | 18:55 | |
*** achanda has quit IRC | 19:11 | |
*** kgriffs|afk is now known as kgriffs | 19:21 | |
*** achanda has joined #openstack-zaqar | 19:34 | |
*** ametts has joined #openstack-zaqar | 19:38 | |
*** flwang1 has joined #openstack-zaqar | 19:52 | |
*** exploreshaifali has joined #openstack-zaqar | 19:54 | |
*** kgriffs is now known as kgriffs|afk | 20:11 | |
*** kgriffs|afk is now known as kgriffs | 20:20 | |
*** achanda has quit IRC | 20:28 | |
*** achanda has joined #openstack-zaqar | 20:32 | |
*** malini has quit IRC | 21:00 | |
*** kgriffs is now known as kgriffs|afk | 21:03 | |
*** achanda has quit IRC | 21:06 | |
*** kgriffs|afk is now known as kgriffs | 21:07 | |
*** achanda has joined #openstack-zaqar | 21:24 | |
*** achanda has quit IRC | 21:40 | |
*** achanda has joined #openstack-zaqar | 21:46 | |
*** openstackstatus has joined #openstack-zaqar | 22:15 | |
*** ChanServ sets mode: +v openstackstatus | 22:15 | |
*** mpanetta has quit IRC | 22:45 | |
*** exploreshaifali has quit IRC | 22:47 | |
*** kgriffs is now known as kgriffs|afk | 23:06 | |
*** kgriffs|afk is now known as kgriffs | 23:07 | |
*** flwang1 has quit IRC | 23:13 | |
*** kgriffs is now known as kgriffs|afk | 23:16 | |
*** kgriffs|afk is now known as kgriffs | 23:20 | |
*** amitgandhinz has quit IRC | 23:41 | |
*** csoukup has quit IRC | 23:47 | |
*** sriram has quit IRC | 23:48 |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!