Wednesday, 2015-07-01

*** logan2 has quit IRC00:19
*** chlong has joined #openstack-trove00:21
*** logan2 has joined #openstack-trove00:22
*** ViswaV has quit IRC00:26
*** tianqing has quit IRC00:26
*** kanzaros has quit IRC00:27
*** schang has quit IRC00:27
*** peterstac has quit IRC00:27
*** ViswaV has joined #openstack-trove00:28
*** mbiciunas has quit IRC00:29
*** vgnbkr has quit IRC00:29
*** dougshelley66 has quit IRC00:30
*** atomic77 has quit IRC00:31
*** ViswaV has quit IRC00:32
*** atomic77 has joined #openstack-trove00:33
*** ViswaV has joined #openstack-trove00:33
*** peterstac has joined #openstack-trove00:34
*** annashen has joined #openstack-trove00:34
*** vgnbkr has joined #openstack-trove00:34
*** dougshelley66 has joined #openstack-trove00:35
*** mbiciunas has joined #openstack-trove00:36
*** kanzaros has joined #openstack-trove00:36
*** schang has joined #openstack-trove00:37
*** annashen has quit IRC00:38
*** cweid has quit IRC00:44
*** IanGovett has quit IRC00:48
*** ViswaV has quit IRC00:51
*** tianqing has joined #openstack-trove01:06
*** esmute__ has quit IRC01:13
*** rjaiswal has quit IRC01:34
*** annashen has joined #openstack-trove01:35
*** annashen has quit IRC01:39
*** esmute__ has joined #openstack-trove01:47
*** erkules has quit IRC01:51
*** erkules has joined #openstack-trove01:52
*** MattLord has quit IRC01:54
*** tianqing has quit IRC02:02
*** esmute__ has quit IRC02:08
*** Longgeek_ has joined #openstack-trove02:10
*** Longgeek has quit IRC02:12
*** coolsvap|away has quit IRC02:13
*** esmute__ has joined #openstack-trove02:13
*** haomaiwa_ has joined #openstack-trove02:14
*** coolsvap|away has joined #openstack-trove02:15
*** tobe has joined #openstack-trove02:29
openstackgerritCraig Vyvial proposed openstack/trove-specs: Added Percona cluster spec  https://review.openstack.org/13213202:34
*** annashen has joined #openstack-trove02:36
*** haomaiwa_ has quit IRC02:39
*** Longgeek_ has quit IRC02:39
*** haomaiw__ has joined #openstack-trove02:40
*** Longgeek has joined #openstack-trove02:41
*** annashen has quit IRC02:41
*** haomaiw__ has quit IRC03:09
*** haomaiwang has joined #openstack-trove03:10
*** Longgeek has quit IRC03:14
*** esmute__ has quit IRC03:33
*** annashen has joined #openstack-trove03:37
*** annashen has quit IRC03:41
*** Longgeek has joined #openstack-trove03:45
*** Longgeek has quit IRC03:49
*** coolsvap|away is now known as coolsvap04:14
*** morganfainberg is now known as caerbannograbbit04:24
*** caerbannograbbit is now known as CaerbannogRabbit04:24
*** tobe has quit IRC04:26
*** Longgeek has joined #openstack-trove04:34
*** annashen has joined #openstack-trove04:37
*** annashen has quit IRC04:42
*** esmute__ has joined #openstack-trove04:57
*** abhis has joined #openstack-trove05:01
abhishello all05:02
abhisI am new to openstack trove05:02
abhisI am trying to learn how to deploy a new database on trove but i didn't found any clear documentation regarding deployment05:03
abhiscould anyone please provide me any detailed documentation about05:03
SlickNikHi abhis05:03
SlickNikabhis: Are you trying to deploy trove? Or author a new datastore for trove?05:03
*** chlong has quit IRC05:03
abhisa new datastore for trove05:04
abhisi am struggling SlickNik and not able to know the way to deploy new datastore05:04
SlickNikabhis: To add a new datastore to trove — at a high level, you need to do the following:05:08
SlickNik1. Define the image-elements needed to build your guest-agent image05:08
SlickNik2. Actually build your guest-image, upload it to glance and register the datastore and image_id with trove05:08
SlickNik3. Write a guestagent manager class (implementing the trove guest API) to be able to actually prepare your datastore on boot, monitor the health of the datastore and send back hear-beat messages05:08
SlickNik4. Register this new guest manager in the Trove config05:08
SlickNikWhich datastore are you looking to add support for in Trove?05:08
*** esmute__ has quit IRC05:09
abhisactually i don't know the real datastore, but i am trying to implement an already existing database again on my own05:09
abhiswhen i will get to know, i will discuss. Right now i was working on vertica05:10
*** exploreshaifali has joined #openstack-trove05:10
abhisbut was unable to know the way to implement05:11
SlickNikabhis: Trove already has support for vertica05:11
abhisi know but i was not able to understand the way it was implemented05:11
SlickNikIs there something missing in the current trove implementation for vertica that you'd like to add?05:12
abhisi am looking for it, but first i need to clearly understand thw way how a datastore is implemented in trove05:12
abhisthat's why i asked for any documentation, if available05:13
abhisSlicknik could you please provide me a little more details about deployment process?05:16
SlickNikabhis: Sure, which part of it would you like more details on?05:17
* SlickNik heads to find his laptop charger since his laptop's battery is running out…05:18
abhisactually i have openstack environment, but how to make guestmanager class along with guest API , i am not able to understand the coding portion (for eg. for vertica) , so if possible any document or something to implement which can help me in understanding coding or what things need to be included05:21
*** chlong has joined #openstack-trove05:21
*** esmute__ has joined #openstack-trove05:22
SlickNikabhis: Sure thing. The best way to understand what parts of the guest-agent API make sense to implement is to look at the API itself.05:26
abhisi am trying to make a skeleton first than to have functioning afterwards05:26
*** tobe has joined #openstack-trove05:26
SlickNikabhis: The basic guest api skeleton => https://github.com/openstack/trove/blob/master/trove/guestagent/api.py05:27
abhisso for making basic structure:05:31
abhisi need to build guest image, upload and register to trove, write the class with api implementation and register guest manager05:32
*** rjaiswal has joined #openstack-trove05:32
*** haomaiwang has quit IRC05:33
abhisslickNik can you also send me some link for manager class and any other important thing that nedd to be implemented for understanding the process?05:34
abhis*need05:34
SlickNikabhis: sure, an example of the manager class (in this case Vertica) is here: https://github.com/openstack/trove/blob/master/trove/guestagent/datastore/experimental/vertica/manager.py05:36
SlickNikAnd all of the Vertica specific functionality for the guest is defined in these files: https://github.com/openstack/trove/tree/master/trove/guestagent/datastore/experimental/vertica05:37
*** haomaiwa_ has joined #openstack-trove05:38
abhisthanks SlickNik for the help, i will try implementing these05:38
*** annashen has joined #openstack-trove05:39
SlickNikabhis: not a problem — feel free to ask folks in this channel any questions that you may have regarding any of this.05:39
*** pmackinn has quit IRC05:40
*** annashen has quit IRC05:43
*** tobe has quit IRC05:59
*** chlong has quit IRC06:01
*** chlong has joined #openstack-trove06:01
*** chlong has quit IRC06:19
abhisi want to know how to  upload guest-image to glance and register the datastore and image_id with trove06:24
abhisi have a guest-image06:25
SlickNikTake a look at the redstack script in trove-integration06:25
abhisok06:25
openstackgerritCraig Vyvial proposed openstack/trove-specs: Added Percona cluster spec  https://review.openstack.org/13213206:32
*** chlong has joined #openstack-trove06:33
*** ianbrown has quit IRC06:35
openstackgerritMerged openstack/trove: Fix ssl.PROTOCOL_SSLv3 not supported by Python 2.7.9  https://review.openstack.org/19719106:35
abhisSlickNik i was not able to understand redstack script that where to add my image06:39
abhisi was going through https://wiki.openstack.org/wiki/Trove/trove-integration06:39
*** annashen has joined #openstack-trove06:39
*** ViswaV has joined #openstack-trove06:44
*** annashen has quit IRC06:44
*** ViswaV_ has joined #openstack-trove06:48
*** ViswaV has quit IRC06:48
openstackgerritSushil Kumar proposed openstack/trove: Use datastore specific timeouts if they exists  https://review.openstack.org/16464006:50
*** k4n0 has joined #openstack-trove06:51
openstackgerritSushil Kumar proposed openstack/trove: Fixed the misused assertEqual  https://review.openstack.org/19698006:52
*** tobe has joined #openstack-trove06:53
*** esmute__ has quit IRC06:58
*** sgotliv has quit IRC06:59
SlickNikabhis: take a look at https://github.com/openstack/trove-integration/blob/master/scripts/redstack#L689 and https://github.com/openstack/trove-integration/blob/master/scripts/redstack#L46307:02
abhisSlickNik i went through this link and implented it http://docs.openstack.org/admin-guide-cloud/content/section_create-datastore.html07:06
SlickNikabhis: Yes, that works as well.07:06
abhisis the process to upload and register guest-image completed07:06
abhisthanks07:07
openstackgerritMerged openstack/trove: Updated from global requirements  https://review.openstack.org/19041307:17
openstackgerritMerged openstack/python-troveclient: Fix flavor-show problems with UUID  https://review.openstack.org/19394007:22
*** chlong has quit IRC07:24
openstackgerritSushil Kumar proposed openstack/trove: Fixes the tests in test_configuration.py  https://review.openstack.org/19745107:30
openstackgerritMerged openstack/trove-integration: PostgreSQL elements for Fedora  https://review.openstack.org/18891007:39
*** annashen has joined #openstack-trove07:40
*** annashen has quit IRC07:45
*** sgotliv has joined #openstack-trove08:13
*** sushilkm has quit IRC08:21
*** ViswaV_ has quit IRC08:25
abhisSlickNik i have uploaded the image and registered it08:27
abhisi want to make a skeleton of my datastore but the thing is need to make manager class, i don't to add any functionality right now, can you help me what all things i need to include in it08:28
*** exploreshaifali has quit IRC08:35
*** annashen has joined #openstack-trove08:41
*** rjaiswal has quit IRC08:44
*** annashen has quit IRC08:46
abhishow to register guest manager in trove config08:50
*** exploreshaifali has joined #openstack-trove09:06
*** haomaiwa_ has quit IRC09:21
*** annashen has joined #openstack-trove09:42
abhisi have deployed a new datastore on trove but it is giving error while creating instances09:45
abhisno such opt error09:45
*** annashen has quit IRC09:46
*** tosky has joined #openstack-trove09:51
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/19749910:02
openstackgerritSushil Kumar proposed openstack/trove: Removed the non-existent method call  https://review.openstack.org/19676210:28
*** exploreshaifali has quit IRC10:39
*** annashen has joined #openstack-trove10:43
*** amrith is now known as _amrith_10:43
*** sushilkm has joined #openstack-trove10:46
*** annashen has quit IRC10:48
*** sgotliv has quit IRC10:52
*** sgotliv has joined #openstack-trove10:53
*** IanGovett has joined #openstack-trove11:09
*** guest_aj has joined #openstack-trove11:41
*** guest_aj has quit IRC11:43
*** annashen has joined #openstack-trove11:44
*** pmackinn has joined #openstack-trove11:45
*** tobe has quit IRC11:46
*** annashen has quit IRC11:48
*** bhaskar has joined #openstack-trove11:57
bhaskarHi, I have a question on celiometer integration. I see that we had a blueprint which was abandoned. Any idea, when we will have it integrated11:58
*** Longgeek has quit IRC11:59
*** raginbajin has quit IRC12:18
*** _amrith_ is now known as amrith12:19
*** raginbajin has joined #openstack-trove12:19
*** radez_g0n3 is now known as radez12:21
*** bhaskar has left #openstack-trove12:22
*** Longgeek has joined #openstack-trove12:25
*** zigo has quit IRC12:28
*** zigo has joined #openstack-trove12:29
openstackgerritOpenStack Proposal Bot proposed openstack/trove: Updated from global requirements  https://review.openstack.org/19749912:31
*** Longgeek has quit IRC12:31
*** csoukup has joined #openstack-trove12:32
*** pmackinn_ has joined #openstack-trove12:36
*** pmackinn has quit IRC12:39
*** annashen has joined #openstack-trove12:45
*** annashen has quit IRC12:49
*** Longgeek has joined #openstack-trove12:49
*** exploreshaifali has joined #openstack-trove12:50
*** tosky has quit IRC12:53
*** tosky has joined #openstack-trove12:56
*** rnowling has joined #openstack-trove12:56
*** kbyrne has quit IRC13:03
*** radez is now known as radez_g0n313:06
*** Longgeek has quit IRC13:14
*** Longgeek has joined #openstack-trove13:15
*** bhunter71 has joined #openstack-trove13:18
*** kbyrne has joined #openstack-trove13:22
*** coolsvap is now known as coolsvap|away13:26
*** erkules has quit IRC13:44
*** erkules has joined #openstack-trove13:44
*** annashen has joined #openstack-trove13:45
*** annashen has quit IRC13:50
*** radez_g0n3 is now known as radez13:50
*** exploreshaifali has quit IRC14:03
*** amrith is now known as _amrith_14:11
*** MattLord has joined #openstack-trove14:20
*** _amrith_ is now known as amrith14:27
*** sriram_tesora has joined #openstack-trove14:32
*** SlickN1k has joined #openstack-trove14:36
*** jwang__ has joined #openstack-trove14:37
*** nagyz_ has joined #openstack-trove14:37
*** tylerhannan_ has joined #openstack-trove14:39
*** Longgeek has quit IRC14:40
*** serverascode_ has joined #openstack-trove14:41
*** blipp_ has joined #openstack-trove14:41
*** radez` has joined #openstack-trove14:45
*** SlickNik_ has quit IRC14:46
*** jwang_ has quit IRC14:46
*** radez has quit IRC14:46
*** tylerhannan has quit IRC14:46
*** nagyz has quit IRC14:46
*** serverascode has quit IRC14:46
*** blipp has quit IRC14:46
*** annashen has joined #openstack-trove14:46
*** tylerhannan_ is now known as tylerhannan14:46
*** annashen has quit IRC14:51
*** serverascode_ is now known as serverascode14:56
*** Longgeek has joined #openstack-trove15:07
*** Longgeek has quit IRC15:07
*** Longgeek has joined #openstack-trove15:08
*** Longgeek has quit IRC15:12
*** Longgeek has joined #openstack-trove15:14
*** amrith is now known as _amrith_15:18
*** rjaiswal has joined #openstack-trove15:21
*** CaerbannogRabbit is now known as morganfainberg15:30
*** coolsvap|away is now known as coolsvap15:33
*** k4n0 has quit IRC15:34
*** ashleighfarnham has joined #openstack-trove15:42
*** coolsvap is now known as coolsvap|away15:44
*** annashen has joined #openstack-trove15:47
*** ashleighfarnham has quit IRC15:51
*** MattLord has quit IRC15:52
*** annashen has quit IRC15:52
*** Longgeek has quit IRC16:06
*** Longgeek has joined #openstack-trove16:08
*** Longgeek has quit IRC16:12
*** esmute__ has joined #openstack-trove16:25
*** flwang1 has quit IRC16:25
*** pmackinn_ is now known as pmackinn16:39
*** Longgeek has joined #openstack-trove16:45
*** csoukup has quit IRC16:45
*** annashen has joined #openstack-trove16:48
*** sgotliv has quit IRC16:52
*** annashen has quit IRC16:53
*** pmackinn has quit IRC16:56
*** ashleighfarnham has joined #openstack-trove16:59
*** Longgeek has quit IRC17:02
*** ashleighfarnham has quit IRC17:02
*** ViswaV has joined #openstack-trove17:03
*** ashleighfarnham has joined #openstack-trove17:08
*** ViswaV has quit IRC17:08
*** ViswaV has joined #openstack-trove17:09
*** annashen has joined #openstack-trove17:10
*** rjaiswal has quit IRC17:34
*** rjaiswal has joined #openstack-trove17:46
*** rjaiswal has quit IRC17:46
*** rjaiswal has joined #openstack-trove17:46
*** exploreshaifali has joined #openstack-trove17:46
*** rwsu has quit IRC17:50
*** pmackinn has joined #openstack-trove17:54
*** rwsu has joined #openstack-trove17:54
*** csoukup has joined #openstack-trove17:56
*** mayurig has joined #openstack-trove17:59
*** tosky has quit IRC18:03
*** MattLord has joined #openstack-trove18:08
*** tosky has joined #openstack-trove18:27
openstackgerritMayuri Ganguly proposed openstack/trove: Associate flavor types with datastore versions  https://review.openstack.org/10982418:52
*** danritchie has joined #openstack-trove18:59
*** _amrith_ is now known as amrith18:59
openstackgerritCraig Vyvial proposed openstack/trove-specs: Added Percona cluster spec  https://review.openstack.org/13213219:03
SlickNikAny open items that folks would like to discuss?19:04
SlickNikThe meeting ran a bit late, so if folks have any — here and now would be a good place to talk about them.19:04
pmackinnSlickNik, dougshelley66: just cruised through atomic77 mysql spec...so the granularity of impl stops at the mysql variant but not version, correct? (mariadb 5.5 v 10)19:21
dougshelley66i believe that versioning the guests is a issue across all the datastores19:22
dougshelley66not just maria19:22
pmackinnyeah19:23
pmackinni could potentially see some users preferring 5.5 and forsaking repl features19:24
dougshelley66ok19:26
dougshelley66is that so they can get basic replication at all or some other reason19:27
*** mayurig has quit IRC19:27
*** annashen has quit IRC19:29
*** annashen has joined #openstack-trove19:30
pmackinndougshelley66, yeah basic backup maybe19:33
*** annashen has quit IRC19:34
*** MattLord has quit IRC19:57
*** MattLord has joined #openstack-trove19:59
*** flwang has joined #openstack-trove20:00
*** danritchie has quit IRC20:00
*** danritchie has joined #openstack-trove20:08
*** mayurig has joined #openstack-trove20:28
*** MattLord has quit IRC20:30
*** mayurig has quit IRC20:33
*** danritchie has quit IRC20:34
*** openstackgerrit has quit IRC20:37
*** openstackgerrit has joined #openstack-trove20:37
*** annashen has joined #openstack-trove20:46
*** rnowling has quit IRC20:52
*** mayurig has joined #openstack-trove20:58
openstackgerritJonathan Halterman proposed openstack/trove-specs: Add cluster root-enable.  https://review.openstack.org/17216121:16
mayurighi21:16
mayurigcan someone review my patch: https://review.openstack.org/#/c/184349/21:18
mayurigthanks21:18
*** exploreshaifali has quit IRC21:21
*** sriram_ has joined #openstack-trove21:33
*** radez` is now known as radez_g0n321:35
*** sriram_tesora has quit IRC21:37
*** saurabhs has joined #openstack-trove21:38
*** MattLord has joined #openstack-trove21:40
*** MattLord has quit IRC21:40
*** ianbrown has joined #openstack-trove21:55
*** sriram_ has quit IRC22:08
*** chlong has joined #openstack-trove22:10
*** mayurig has quit IRC22:15
*** mayurig has joined #openstack-trove22:16
*** annashen has quit IRC22:20
*** annashen has joined #openstack-trove22:21
*** annashen has quit IRC22:25
*** tianqing has joined #openstack-trove22:29
*** chlong has quit IRC22:30
*** chlong has joined #openstack-trove22:30
*** amrith is now known as _amrith_22:30
*** pmackinn has quit IRC22:48
*** IanGovett has quit IRC23:30
*** tosky has quit IRC23:35
*** mayurig has quit IRC23:40
*** mayurig has joined #openstack-trove23:43
*** annashen has joined #openstack-trove23:51
*** mayurig has quit IRC23:53
openstackgerritDoug Shelley proposed openstack/trove: Support nics and AZ for MongoDB clusters  https://review.openstack.org/19778023:56
*** annashen has quit IRC23:56
openstackgerritDoug Shelley proposed openstack/trove: Support nics and AZ for MongoDB clusters  https://review.openstack.org/19778023:58

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