05:31:46 #startmeeting taas 05:31:47 Meeting started Wed Jan 11 05:31:46 2017 UTC and is due to finish in 60 minutes. The chair is soichi. Information about MeetBot at http://wiki.debian.org/MeetBot. 05:31:48 Useful Commands: #action #agreed #help #info #idea #link #topic #startvote. 05:31:50 The meeting name has been set to 'taas' 05:32:04 #link: https://wiki.openstack.org/wiki/Meetings/taas 05:32:33 #topic: Loop detection of tap flows (to prevent creating a loop) 05:33:30 i think this topic was homework for everyone :) 05:34:01 vnyyad: hi 05:34:06 hi 05:34:13 happy new year to all! 05:35:02 Happy New Year! 05:35:13 hi, happy new year 05:35:25 we'd like to discuss "loop detection of tap flows (to prevent creating a loop)" 05:35:51 it is a cycle detection problem on a directed graph 05:36:03 each tap flow has only one destination (tap service) 05:36:16 soichi: was(is) there a usecase for mirroring a tap service port? 05:36:45 i'm not sure about actual use case 05:37:26 hmmm... because we can simple deny this in the first place to avoid cycles to keep it simple 05:37:51 but yes if there is a use case we need the algo 05:38:06 i agree with you 05:38:33 this topic was submitted by yamamoto san 05:39:11 ok but lets discuss it anyways... he might have a use case 05:39:20 sure 05:39:29 each tap flow has only one destination (tap service) 05:39:37 and loop can be created when a tap flow is created from a tap service to another tap service 05:39:48 so i guess we can use a graph G(V, E) where V=tap service, E=tap flow 05:40:58 i think we can apply the cycle detection algo by using DFS (depth-first serach) 05:41:30 yes. And this has to be run before creation of each tap flow 05:41:42 sure 05:42:04 reference: https://www.youtube.com/watch?v=rKQaZuoUR4M 05:42:44 also if i remember now there was a discussion we had on limiting the number of flows a tenant can create, just to make sure they are not creating a mess in the network intentionally or by mistake 05:43:12 i think so. 05:43:21 so the number of Es in the graph will be limited and the the algo should not spend a lot a time finding the loop 05:43:39 i agree 05:45:31 kaz: do you have any comments? 05:45:40 hi 05:45:47 reedip: hi 05:45:51 hi 05:45:58 reedip: happy new year 05:46:07 sorry, no i don't. 05:46:08 happy new year soichi san :) 05:46:23 reedip: hi 05:46:33 hi kaz , vnyyad 05:46:38 sorry for being late 05:46:55 reedip: we are discussing abot loop detection of tap flows 05:47:01 do you have any idea? 05:47:14 yes, I am reading the logs for the same. No , I forgot it :P 05:47:18 hi 05:47:33 yamamoto: hi 05:47:50 hi yamamoto_ , do we have a use case for mirroring a tap port? 05:49:19 actually i don't know. 05:51:35 any one else has a use-case for this? 05:52:41 i don't have. So, guard creating a tap flow on tap service is simple, i think 05:52:58 +1 05:53:04 +1 05:54:05 soichi : but when we mirror a port, do we know that the port is a normal port or a tap port ?? :) 05:55:36 i think we can chaeck a tap service is already associated to the port 05:55:43 we can always return an error when we detect it 05:55:46 chaeck -> check 05:56:11 soichi : No, my question is : You have a tap -service , and you created a tap flow on Port p1 05:56:28 Port p1 is your source port 05:56:47 the port created by tap-service is port p2 ( during creation of tap-service) 05:57:12 now if a user tries to use port p2 as a source port for another tap-service, with destination port p3 05:57:25 then would that work ? 05:57:41 it is not work 05:57:59 redeep: it wont 05:58:23 we wonder is there such a use case 05:58:33 block all attempts to make a already existing tap-service port as a source for a tap flow 05:58:57 vnyyad: +1 06:00:14 excuse me, but today i have to leave now. i'd like to pass the chair to kaz. 06:00:20 #chair kaz 06:00:21 Current chairs: kaz soichi 06:00:43 see you next week 06:00:54 so that means we need to add a check in out code as well 06:01:33 adios vnyyad 06:02:00 is the meeting over? 06:02:24 no, still open, 06:02:28 :) 06:02:54 reedip: yes we need to add the check in the code 06:05:22 reedip? 06:05:31 hi ... 06:05:39 sorry , was working on another item :D 06:06:08 vnyyad : okay, should we add a bug for this ? Also we need to open blueprints in Tap-as-a-Service in launchpad 06:07:10 reedip: for the blueprint i need to ask anil, as i am not able to do it for some reason 06:07:20 vnyyad : ohk 06:08:42 I have a very general TaaS question; let me know when a good time to ask it would be 06:09:08 #topic Open Discussion 06:09:28 Hi! So I am starting to try and use TaaS by trying it out in a devstack. My problem is that after setting it up using the directions from INSTALL.rst I keep getting the error "ImportError: Plugin 'taas' not found." This seems like an FAQ; any advice? Is there a chat channel you all hang out in, talking about TaaS, where I could check in for questions like this? 06:10:53 njohnston: is this error on the taas agent side (compute nodes) or on the taas plugin side? 06:11:00 there's no such a channel. 06:12:23 there was a discussion about a channel but the consensus at that point was to use #openstack-neutron 06:12:49 as there would be little traffic anyway 06:12:51 OK, I can definitely ask there 06:13:18 at least i'm there when online. 06:13:27 Thanks, all! 06:14:19 wrt import error, i'm not sure. have you followed devstack/README.rst? 06:14:32 yes 06:14:45 and this is on the taas plugin side, errors coming from neutron server 06:15:50 can you show us your local.conf? 06:17:26 yamamoto_: http://paste.openstack.org/show/594499/ 06:19:05 i guess you should use stable/newton for taas as well? 06:19:27 otherwise looks ok to me 06:19:32 +1 06:19:40 +1 06:19:56 i'm not sure branch difference is a cause of the import error or not though. 06:21:45 thanks 06:21:48 yamamoto: a difference in branch can cause this error, happened to me a month ago 06:22:37 looks like the branches needed to match (branch of devstack and taas) 06:22:56 but for me master devstack with master taas worked out well 06:25:04 do you have any other topics? 06:25:22 njohnston: feel free to ask us again if matchin branches doesn't improve the situation. 06:25:45 i want to remind a few changes to review 06:26:09 #link https://review.openstack.org/#/c/256210/ spec 06:26:27 #link https://review.openstack.org/#/c/396022/ horizon 06:27:09 #link https://review.openstack.org/#/c/405261/ tox_install 06:27:10 yamamoto_: thanks 06:27:25 #link https://review.openstack.org/#/c/413360/ tox_install (alternative) 06:27:47 tox_install thing might be less obvious 06:28:30 it's necessary to use the correct version of deps on gate 06:28:46 it needs to be backported to stable branch 06:28:58 that's all from me 06:29:22 thank you 06:29:53 thanks all! 06:29:55 Also the OSC is up 06:30:11 we have no time left 06:30:14 https://review.openstack.org/398767 06:30:25 kaz : yeah, this is just for you guys to review :D 06:30:45 yea, use the dashboard link on the wiki for full list. :-) 06:31:02 yes 06:31:28 see you next week. 06:31:37 #endmeeting