21:02:34 #startmeeting 21:02:35 Meeting started Wed Oct 19 21:02:34 2011 UTC. The chair is debo_os. Information about MeetBot at http://wiki.debian.org/MeetBot. 21:02:36 * markvoelker lurks because he has to leave in a few minutes 21:02:37 Useful Commands: #action #agreed #help #info #idea #link #topic. 21:02:47 #topic Donabe 21:04:02 hi danwent 21:04:09 hi Dan! 21:04:11 hey 21:04:17 o/ 21:04:25 hi Mark 21:04:39 danwent: I'm supposed to be working with you on something, aren't I? 21:04:50 #info Agenda 21:05:20 mtaylor: maybe packaging or jenkins releated? both are things we're working to take care of for quantum 21:05:37 API design issues• Database layer• Transactional semantics – should we post the whole topology in 1 shot in a xml chunk or in pieces• Model driven …. Define primitives for 1) compute 2) network 3) storage• Plugins for the above primitives. Declarative languages• Pluggable module• We choose 1 default one 21:05:50 sorry I cut pasted the agenda too soon 21:07:15 are we the 4 of us here? 21:07:27 looks like it 21:07:32 :) 21:08:02 maybe we give 2 more mins and then get started? 21:08:03 \o 21:08:39 debo_os: sure 21:08:54 debo.sleep(2m) 21:08:54 question, what is donabe in a easy description? a overlaying service for the netstack ? 21:09:02 well 21:09:25 donabe is an abstraction of app containers that leverages services like nova and quantum 21:09:53 zykes-: or an abstraction for groups of cloud resources 21:10:07 that too! Thanks Dan 21:10:28 hmm, i wonder what the usage of it is 21:11:24 there are several usage models 21:11:27 Does Donabe only address the cloud resources themselves, or does it also work with applications within them? (i.e., can it configure an app in a virtual server) 21:11:39 one possible way is http://www.slideshare.net/ddutta1/donabe-models-openstack-essex-summit 21:12:03 yes Donabe is geared towards describing app behavior too 21:12:43 FYI, http://panelpicker.sxsw.com/ideas/view/10497 21:12:47 glenc: we are mostly concerned with the abstraction and the ability to package that abstraction so it can be deployed 21:13:36 glenc: that is a very similar concept 21:13:47 Good - just making sure I'm on the right track 21:13:57 which is why I wanted to be here 21:14:10 glenc: I have even used oracle financials as an example 21:14:18 great minds think alike 21:14:43 :) 21:14:53 debo_os: ok, go 21:15:01 dendrobates: werent you with rackspace earlier on ? 21:15:10 good guess :) 21:15:25 zykes-: yes 21:15:45 #topic agenda 21:16:23 1. A little more about whats Donabe .... in case we need it 21:16:30 2. API and data model 21:16:36 3. Declarative languages 21:16:40 anything more? 21:16:46 Rick? 21:16:48 Dan? 21:16:54 anyone? 21:17:03 good for me 21:17:17 Shall we skip 1. 21:17:22 sound good for me… i'm mostly just listening in :) 21:17:41 #topic API 21:18:07 During the summit, we agreed upon 1) recursive/nested containers 21:18:40 2) simple use case -> scalableweb<-->scalable db tiers 21:18:59 3) for essex leverage quantum and nova to stitch the containers 21:19:25 4) use a declarative language for describing configs 21:20:32 for recursive containers, we need a data model 21:21:01 the simple API takes in a graph (with nodes = containers, edges = container pairs that communicate) 21:21:28 the data model leads to semi structured data 21:21:36 hence we need a data model that will be suitable 21:21:40 any comments on that> 21:21:41 ? 21:21:54 could you also use a bill of materials type model? 21:21:58 possible approaches could be xml dbs or neo4j 21:22:24 glenc: in bom like models we would still need the relationships or edges 21:23:04 so this graph structure is like a BOM 21:23:27 it is, but it doesn't have to be recursive (I'm just thinking out loud here) 21:24:05 assume its non recursive for a moment ... its a good debate to have .... 21:24:21 you still need a semi structured way of representing a graph 21:24:51 thats why people have been looking at graph databases 21:25:16 but if there is a relational way of looking at it that covers the use cases, it might be good 21:25:34 in that case our higher layer graph model would then need to be mapped 21:26:34 any other suggestions 21:27:00 please send more suggestions to the list 21:27:38 the next thing is transactional semantics 21:27:52 for defining a higher layer container, you need to group smaller containers 21:28:03 now we could implement the API in 2 ways 21:28:18 1st define smaller container types ... then build higher ones 21:28:54 but an alt way is to define it in 1 shot ... do a POST with a blob describing the graph 21:29:09 actually OVS has an app prpoosal with a graph structure too :) 21:29:14 thoughts? 21:29:39 OVS != open vswitch i assume? 21:29:47 sorry OVF 21:29:51 :) 21:29:55 I'm concerned about posing a big blob 21:30:14 is that your preference? 21:30:20 I am ok as long as we note that there will be transactional issues 21:30:33 we will need to have a fix for that 21:31:01 else we need a blob .... 21:31:20 I prefer the blob to keep the implementation is simpler 21:31:29 can you explain the transactional issues in detail 21:31:51 well say you have a big container request that has 3 smaller containers 21:32:00 you need to create the smaller container requests 1st 21:32:04 then the bigger one 21:32:17 so you will have 4 requests 21:32:37 ideally you want this is as a part of a single transaction 21:32:58 yes, with orchestration and rollback on error, right? 21:33:03 yes 21:33:52 is the blob where it would contain the declarative language? 21:34:17 blob would have the graph structure ... and a reference to the manifest 21:34:45 because the manifest could be common for several containers 21:35:01 I tend to read blob as a BINARY large object, which makes me nervous - 21:35:24 I would hope it would be editable with standard tools 21:35:35 sorry ... I should have clarified 21:35:47 here a blob would mean a big xml blob 21:35:52 :) 21:35:55 can we not assume xml 21:36:12 we could .... I just didnt want to offend JSON people 21:36:17 hence I am trying to use generic terms 21:36:20 ;) 21:37:10 I tend to visualize it as XML (hey, I've been in IT for 20+ years) and convert mentally to json 21:37:25 I would say the representation of the containers (blobs) is up for discussion 21:37:34 I'm cool with it as long as it isn't really binary 21:38:16 or Visual BASIC 21:38:22 :) 21:38:52 so these are the primary things I wanted to point out form the design point of view 21:39:11 please punt feedback 21:40:05 awesome 21:40:19 the other things are slightly long temrs 21:40:26 like what declarative languages to use 21:41:26 and we want the donabe engine to be at a higher layer 21:41:35 using model driven stuff 21:41:59 so that we could have plugins for say things like declarative behavior engines etc 21:42:10 but all that might be relevant for later discussions 21:42:29 As DanW keeps saying, we need a simple demos 21:42:46 :) 21:42:46 thats all from me 21:43:24 should we take one part and delve into it next meeting? 21:43:29 I think once we have rough consensus about the graph backend, the demo is going to happen soon 21:43:33 the model perhaps 21:43:39 yes .... 21:43:41 yes 21:43:44 and the data backend 21:43:47 if time permits 21:44:46 any more thoughts/advice? 21:44:52 sounds good to me 21:45:13 next week we should advertise the meeting a bit more. 21:45:17 all right ... bye for now 21:45:21 one thing... 21:45:24 sure 21:45:33 i've heard juju brought up several times in this context. 21:45:53 I don't know enough about the details to know the difference, but crisp messaging of donabe vs. juju (spelling?) would be nice. 21:46:18 I will let Rick answer too but juju doesnt do containers 21:46:30 debo_os: that was what I was going to say. 21:46:36 It can be compared to chef / puppet 21:46:41 it's all orchestration 21:46:54 but orchestration of single elements only? 21:47:01 for now 21:47:13 I will be meeting the juju guys in a couple weeks to see where we can work together 21:47:20 ok, good to know. I've just been asked several times and didn't know enough to explain the difference 21:47:31 that's all 21:48:57 ok, now I just need to find a place to watch the world series 21:48:59 #endmeeting