| *** haomaiwang has joined #openstack-trove | 00:03 | |
| *** haomaiw__ has quit IRC | 00:03 | |
| *** haomaiwang has quit IRC | 00:13 | |
| *** Longgeek has quit IRC | 00:29 | |
| *** tianqing has joined #openstack-trove | 01:21 | |
| *** erkules_ has joined #openstack-trove | 01:22 | |
| *** erkules has quit IRC | 01:25 | |
| *** Longgeek has joined #openstack-trove | 01:47 | |
| openstackgerrit | amrith proposed openstack/trove: Use oslo.log instead of oslo-incubator logging https://review.openstack.org/162677 | 01:58 |
|---|---|---|
| *** tianqing has quit IRC | 01:59 | |
| *** Longgeek has quit IRC | 02:20 | |
| *** Forresp has joined #openstack-trove | 02:27 | |
| *** Longgeek has joined #openstack-trove | 03:18 | |
| *** tobe has joined #openstack-trove | 03:20 | |
| *** coolsvap|afk is now known as coolsvap | 03:32 | |
| *** logan2 has quit IRC | 03:35 | |
| *** bhunter71 has quit IRC | 03:36 | |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/trove: Updated from global requirements https://review.openstack.org/190413 | 03:48 |
| *** Longgeek has quit IRC | 03:51 | |
| *** tianqing has joined #openstack-trove | 04:20 | |
| *** sgotliv has quit IRC | 04:26 | |
| *** Forresp has quit IRC | 04:50 | |
| *** Longgeek has joined #openstack-trove | 05:09 | |
| *** k4n0 has joined #openstack-trove | 05:25 | |
| *** Longgeek has quit IRC | 05:35 | |
| *** tianqing has quit IRC | 05:38 | |
| *** Forresp has joined #openstack-trove | 05:40 | |
| *** Forresp has quit IRC | 06:08 | |
| *** Forresp has joined #openstack-trove | 06:12 | |
| *** Longgeek has joined #openstack-trove | 06:17 | |
| *** ian_brown has quit IRC | 06:43 | |
| *** tobe has quit IRC | 06:44 | |
| *** tianqing has joined #openstack-trove | 06:50 | |
| *** Forresp has quit IRC | 06:54 | |
| *** tianqing has quit IRC | 06:54 | |
| *** tianqing has joined #openstack-trove | 07:07 | |
| *** tobe has joined #openstack-trove | 07:07 | |
| *** Forresp has joined #openstack-trove | 07:10 | |
| tobe | Currently guestagent uses "rpm -qa" to check if the package is installed or not. That's really NOT a good idea. | 07:29 |
| tobe | We always make the image and install the database from source code. No matter it's installed or not, the agent tells it's not installed and return false here. | 07:30 |
| vkmc | tobe, hi, could you point where in the code that is happening? | 07:33 |
| vkmc | or how you detected that? | 07:33 |
| tobe | It's in trove/guestagent/pkg.py | 07:34 |
| *** chlong has quit IRC | 07:34 | |
| tobe | line 187 | 07:35 |
| vkmc | I see it https://github.com/openstack/trove/blob/master/trove/guestagent/pkg.py#L194 | 07:35 |
| vkmc | I see what you mean.. hm | 07:36 |
| tobe | @vkmc Yeah | 07:36 |
| tobe | It relies on the package management system, instead of the database itself | 07:37 |
| tobe | I'm quite sure it will NOT work for debian or ubuntu which don't use rpm at all | 07:37 |
| vkmc | tobe, note that its under class RedhatPackagerMixin | 07:38 |
| vkmc | things are handled different for Debian and Ubuntu | 07:38 |
| tobe | Oh there're some functions for debian. | 07:38 |
| vkmc | yes | 07:38 |
| tobe | Anyway, I don't think it's a good idea to use system commands to do that. | 07:39 |
| vkmc | are you installing datastores from source for any reason? | 07:39 |
| tobe | It won't work if I install mysql or redis from source code. | 07:39 |
| tobe | Yes, I'm trying redis | 07:39 |
| vkmc | which distro? | 07:40 |
| tobe | It's easy to installed from source. And I can choose the specified version. | 07:40 |
| tobe | In CentOS | 07:40 |
| vkmc | I see | 07:40 |
| vkmc | there is a package for redis in centos | 07:41 |
| tobe | Currently I have to comment out this code to return true when asked if redis is installed | 07:41 |
| vkmc | how you are checking that? | 07:41 |
| tobe | Thanks @vkmc I know the package in centos | 07:41 |
| vkmc | cool :) | 07:41 |
| tobe | But we don't install redis in that way | 07:42 |
| tobe | We want the specified version or more detailed code of redis | 07:42 |
| vkmc | that makes sense | 07:43 |
| vkmc | just a heads up... there might be slight changes with the version of redis you want to use and the one that the trove code supports | 07:44 |
| tobe | You're right, trove can support kinds of versions of redis. | 07:46 |
| tobe | And we should point out the limitation. | 07:47 |
| tobe | I mean, currently it doesn't redis cluster which it's from redis 3.0. And we should not use image with redis 3.0 | 07:48 |
| tobe | Now making the image for guestagent is quite mess | 07:49 |
| tobe | I don't know I have to use rpm to install datastore. I don't know we should put the redis binaries in the specified directory. | 07:49 |
| vkmc | so actually I'm working on an script to make easier for users to make their own guest images | 07:51 |
| vkmc | for RHEL based distros | 07:51 |
| vkmc | I was planning to work on redis soon | 07:51 |
| vkmc | would you like to contribute to that? | 07:51 |
| tobe | It would be great if I can help :) | 07:52 |
| vkmc | indeed! that would be super appreciated :) | 07:52 |
| vkmc | I'm putting everything here https://github.com/vkmc/trove-image-elements | 07:53 |
| tobe | We have made the redis guest image from scratch. | 07:53 |
| vkmc | oh, btw, I'm using TripleO's diskimage-builder to automatize the process | 07:54 |
| tobe | And plan to implement the functions that trove should support | 07:54 |
| vkmc | and writing my own elements | 07:54 |
| tobe | Great job @vkmc. I will have a look | 07:54 |
| vkmc | sure, let me know! | 07:54 |
| tianqing | Does the trove-image-elements can work now? | 09:10 |
| tianqing | right now the trove image is prepared in /etc/trove-guestagent.conf, but when creating image, people always put trove-guestagent.conf into /etc/trove/trove-guestagent.conf | 09:20 |
| vkmc | tianqing, can you provide more details on your deployment? which trove version is? | 09:24 |
| vkmc | I assume Juno | 09:24 |
| tianqing | yes | 09:24 |
| tianqing | the newest code is bypass this problem | 09:24 |
| tianqing | it is configurations .... | 09:24 |
| tianqing | https://github.com/openstack/trove/blob/master/trove/taskmanager/models.py | 09:25 |
| tianqing | here in _get_injected_files function, we can make configuration to choose which directory we can inject the trove-guestagent.conf | 09:25 |
| vkmc | yeah I agree | 09:26 |
| tianqing | to vkmc, dose you trove-image-elements work fine? | 09:26 |
| vkmc | which distro are you using for your guestimages? | 09:26 |
| vkmc | centos? | 09:26 |
| tianqing | yes | 09:27 |
| vkmc | I see | 09:27 |
| tianqing | for centos, because our mysql trove is build by hand | 09:27 |
| vkmc | so... the trove-image-elements will build for you a centos7 image with mariadb5.5 in it | 09:27 |
| vkmc | if you have trove juno in your controller node, you will need to manually fix some paths | 09:28 |
| tianqing | can only build mariadb? | 09:28 |
| tianqing | for mysql5.1 | 09:29 |
| vkmc | I'm afraid that is the case now... you can build your own elements to get an specific version of mysql and try to use it | 09:30 |
| vkmc | but I haven't tested it | 09:30 |
| vkmc | so I cannot guarantee it will work | 09:30 |
| tianqing | fine | 09:33 |
| *** haomaiwang has joined #openstack-trove | 09:38 | |
| *** tosky has joined #openstack-trove | 09:46 | |
| tianqing | can some one help to review this commit, https://review.openstack.org/#/c/189093/ | 09:49 |
| tianqing | Thanks | 09:49 |
| *** f13o has joined #openstack-trove | 09:56 | |
| tianqing | dose the feture about puting all trove user's nova-instances into one tenant is ok? | 10:04 |
| *** ianbrown has joined #openstack-trove | 10:07 | |
| tobe | +1 for https://review.openstack.org/#/c/189093/ | 10:25 |
| *** ianbrown has quit IRC | 10:33 | |
| *** Longgeek_ has joined #openstack-trove | 11:06 | |
| *** Longgeek has quit IRC | 11:09 | |
| openstackgerrit | tobe proposed openstack/trove: Add IDE files in .gitignore https://review.openstack.org/191761 | 11:18 |
| tobe | A minor change to exclude IDE files from .gitignore | 11:22 |
| tobe | The code is from Glance/.gitignore which may be practicle. | 11:23 |
| *** tobe has quit IRC | 11:25 | |
| *** tianqing has quit IRC | 11:31 | |
| *** Longgeek_ has quit IRC | 11:34 | |
| *** Longgeek has joined #openstack-trove | 11:35 | |
| *** Forresp has quit IRC | 11:46 | |
| *** amrith is now known as _amrith_ | 12:19 | |
| *** chlong has joined #openstack-trove | 12:21 | |
| *** f13o has quit IRC | 12:54 | |
| *** exploreshaifali has joined #openstack-trove | 12:55 | |
| *** Forresp has joined #openstack-trove | 13:10 | |
| *** radez_g0n3 is now known as radez | 13:12 | |
| *** Forresp_ has joined #openstack-trove | 13:29 | |
| *** tianqing has joined #openstack-trove | 13:30 | |
| *** Forresp has quit IRC | 13:31 | |
| *** _amrith_ is now known as amrith | 13:37 | |
| *** rnowling has joined #openstack-trove | 13:38 | |
| *** Forresp has joined #openstack-trove | 13:39 | |
| *** Forresp_ has quit IRC | 13:39 | |
| *** _crobertsrh is now known as crobertsrh | 13:41 | |
| *** bhunter71 has joined #openstack-trove | 13:41 | |
| *** bhunter71 has quit IRC | 14:08 | |
| *** Forresp has quit IRC | 14:16 | |
| *** IanGovett has joined #openstack-trove | 14:17 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Enable authentication in the MongoDB guest agent https://review.openstack.org/187734 | 14:23 |
| *** openstackgerrit has quit IRC | 14:24 | |
| *** openstackgerrit has joined #openstack-trove | 14:24 | |
| *** cweid has joined #openstack-trove | 14:24 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Enable authentication in the MongoDB guest agent https://review.openstack.org/187734 | 14:24 |
| *** csoukup has joined #openstack-trove | 14:26 | |
| *** tianqing has quit IRC | 14:27 | |
| *** sgotliv has joined #openstack-trove | 14:34 | |
| *** coolsvap is now known as coolsvap|afk | 14:37 | |
| *** sgotliv has quit IRC | 14:39 | |
| *** sgotliv has joined #openstack-trove | 14:43 | |
| openstackgerrit | Duk Loi proposed openstack/trove-specs: Add root-disable api https://review.openstack.org/189837 | 14:51 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB database management features https://review.openstack.org/188034 | 14:58 |
| *** sriram_tesora has joined #openstack-trove | 15:02 | |
| *** haomaiw__ has joined #openstack-trove | 15:03 | |
| *** haomaiwang has quit IRC | 15:04 | |
| *** haomaiwa_ has joined #openstack-trove | 15:11 | |
| *** haomaiw__ has quit IRC | 15:13 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - create/list/show/delete https://review.openstack.org/189989 | 15:14 |
| *** johnma has joined #openstack-trove | 15:20 | |
| *** bhunter71 has joined #openstack-trove | 15:20 | |
| *** bhunter71_2 has joined #openstack-trove | 15:22 | |
| *** k4n0 has quit IRC | 15:28 | |
| openstackgerrit | Petr Malik proposed openstack/trove: Configuration Groups for Redis https://review.openstack.org/191860 | 15:29 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - root enable/show https://review.openstack.org/190415 | 15:33 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Support authentication in the MongoDB guest agent https://review.openstack.org/187734 | 15:33 |
| *** bhunter71_2 has quit IRC | 15:35 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - access grant/revoke/show https://review.openstack.org/190821 | 15:38 |
| openstackgerrit | Petr Malik proposed openstack/trove-integration: Disable THP in MongoDB elements. https://review.openstack.org/191863 | 15:38 |
| *** IanGovett has quit IRC | 15:42 | |
| *** IanGovett has joined #openstack-trove | 15:42 | |
| *** IanGovett has quit IRC | 15:46 | |
| *** thedodd has joined #openstack-trove | 15:58 | |
| *** ashleighfarnham has joined #openstack-trove | 16:02 | |
| *** exploreshaifali has quit IRC | 16:02 | |
| *** ashleighfarnham has quit IRC | 16:09 | |
| *** ashleighfarnham has joined #openstack-trove | 16:09 | |
| *** hogepodge has quit IRC | 16:13 | |
| *** ashleighfarnham has quit IRC | 16:17 | |
| *** hogepodge has joined #openstack-trove | 16:20 | |
| *** Longgeek has quit IRC | 16:21 | |
| *** ashleighfarnham has joined #openstack-trove | 16:25 | |
| openstackgerrit | Petr Malik proposed openstack/trove-integration: Disable THP in MongoDB elements https://review.openstack.org/191863 | 16:50 |
| *** SergeyLukjanov has left #openstack-trove | 16:53 | |
| *** esmute has joined #openstack-trove | 16:54 | |
| *** IanGovett has joined #openstack-trove | 16:57 | |
| *** exploreshaifali has joined #openstack-trove | 16:59 | |
| *** IanGovett has quit IRC | 17:01 | |
| *** IanGovett1 has joined #openstack-trove | 17:01 | |
| *** haomaiw__ has joined #openstack-trove | 17:03 | |
| *** haomaiwa_ has quit IRC | 17:04 | |
| *** esmute has quit IRC | 17:10 | |
| *** esmute has joined #openstack-trove | 17:11 | |
| *** cweid has quit IRC | 17:25 | |
| *** cweid has joined #openstack-trove | 17:37 | |
| *** esmute has quit IRC | 17:41 | |
| *** IanGovett1 has quit IRC | 17:41 | |
| openstackgerrit | Petr Malik proposed openstack/trove-integration: Disable THP in MongoDB elements https://review.openstack.org/191863 | 17:42 |
| *** esmute has joined #openstack-trove | 17:46 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Support authentication in the MongoDB guest agent https://review.openstack.org/187734 | 17:49 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Support authentication in the MongoDB guest agent https://review.openstack.org/187734 | 18:04 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - create/list/show/delete https://review.openstack.org/189989 | 18:14 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - root enable/show https://review.openstack.org/190415 | 18:15 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - access grant/revoke/show https://review.openstack.org/190821 | 18:15 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB database management features https://review.openstack.org/188034 | 18:16 |
| *** Longgeek has joined #openstack-trove | 18:17 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - create/list/show/delete https://review.openstack.org/189989 | 18:24 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - root enable/show https://review.openstack.org/190415 | 18:24 |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: MongoDB user management - access grant/revoke/show https://review.openstack.org/190821 | 18:24 |
| *** tosky has quit IRC | 18:30 | |
| *** exploreshaifali has quit IRC | 18:33 | |
| openstackgerrit | Morgan Jones proposed openstack/trove-specs: Cluster Scaling https://review.openstack.org/191925 | 18:35 |
| openstackgerrit | Morgan Jones proposed openstack/trove-specs: Redis Clustering https://review.openstack.org/191926 | 18:40 |
| *** Longgeek has quit IRC | 18:52 | |
| *** bhunter71 has quit IRC | 19:01 | |
| *** ViswaV has joined #openstack-trove | 19:02 | |
| *** exploreshaifali has joined #openstack-trove | 19:14 | |
| openstackgerrit | Matthew Van Dijk proposed openstack/trove: Support authentication in the MongoDB guest agent https://review.openstack.org/187734 | 19:26 |
| *** esmute has quit IRC | 19:30 | |
| openstackgerrit | Merged openstack/trove: PostgreSQL guest agent can't remove temp file https://review.openstack.org/190810 | 19:47 |
| *** esmute has joined #openstack-trove | 20:04 | |
| *** radez is now known as radez_g0n3 | 20:09 | |
| *** amrith is now known as _amrith_ | 20:12 | |
| *** ViswaV_ has joined #openstack-trove | 20:14 | |
| *** ViswaV has quit IRC | 20:14 | |
| *** esmute has quit IRC | 20:16 | |
| *** bhunter71 has joined #openstack-trove | 20:18 | |
| dloi | Hello I was wondering if someone out there can shed some light on how to get the tests under api to test something newly added to the python-troveclient? | 20:19 |
| dloi | It appears in those tests it creates a test Dbaas object but it uses the python-troveclient code installed from pip in the venv so the object being referenced does not have the newly added methods. | 20:19 |
| dloi | Is there some magic configuration that I need to do to get those test to work? | 20:20 |
| *** _mattf is now known as mattf | 20:21 | |
| *** esmute has joined #openstack-trove | 20:25 | |
| *** ViswaV_ has quit IRC | 20:46 | |
| *** Longgeek has joined #openstack-trove | 20:49 | |
| *** sriram_ has joined #openstack-trove | 20:51 | |
| *** johnma has quit IRC | 20:53 | |
| *** sriram_tesora has quit IRC | 20:54 | |
| *** crobertsrh is now known as _crobertsrh | 20:59 | |
| *** ViswaV has joined #openstack-trove | 21:06 | |
| openstackgerrit | Alex Tomic proposed openstack/trove-specs: MySQL manager refactor blueprint https://review.openstack.org/168083 | 21:21 |
| *** Longgeek has quit IRC | 21:22 | |
| *** ViswaV has quit IRC | 21:29 | |
| *** esmute has quit IRC | 21:30 | |
| *** exploreshaifali has quit IRC | 21:30 | |
| openstackgerrit | Peter Stachowski proposed openstack/trove: Add Redis backup/restore functionality https://review.openstack.org/185892 | 21:37 |
| openstackgerrit | Peter Stachowski proposed openstack/trove: Add Redis backup/restore functionality https://review.openstack.org/185892 | 21:40 |
| *** rnowling has quit IRC | 21:42 | |
| openstackgerrit | Peter Stachowski proposed openstack/trove: Add Redis backup/restore functionality https://review.openstack.org/185892 | 21:43 |
| *** esmute has joined #openstack-trove | 21:48 | |
| *** ianbrown has joined #openstack-trove | 21:48 | |
| *** cweid has quit IRC | 21:50 | |
| openstackgerrit | Peter Stachowski proposed openstack/trove: Add Redis backup/restore functionality https://review.openstack.org/185892 | 21:51 |
| *** esmute has quit IRC | 21:56 | |
| *** chlong has quit IRC | 21:57 | |
| openstackgerrit | OpenStack Proposal Bot proposed openstack/trove: Updated from global requirements https://review.openstack.org/190413 | 22:08 |
| *** exploreshaifali has joined #openstack-trove | 22:12 | |
| *** csoukup has quit IRC | 22:14 | |
| *** flwang has quit IRC | 22:16 | |
| *** csoukup has joined #openstack-trove | 22:19 | |
| *** sriram_ has quit IRC | 22:26 | |
| *** flwang has joined #openstack-trove | 22:29 | |
| *** david-lyle has quit IRC | 22:31 | |
| *** ViswaV has joined #openstack-trove | 22:35 | |
| *** exploreshaifali has quit IRC | 22:35 | |
| *** thedodd has quit IRC | 22:38 | |
| *** esmute has joined #openstack-trove | 22:44 | |
| *** hogepodge has quit IRC | 22:52 | |
| pmalik | Hi! For interested reviewers, I pushed up patch sets with the guestagent configuration manager and configuration groups for Redis. | 23:01 |
| pmalik | Guestagent Configuration Manager: https://review.openstack.org/#/c/191859/ | 23:01 |
| pmalik | Configuration Groups for Redis: https://review.openstack.org/#/c/191860/ | 23:01 |
| *** david-lyle has joined #openstack-trove | 23:11 | |
| *** Longgeek has joined #openstack-trove | 23:19 | |
| *** hogepodge has joined #openstack-trove | 23:19 | |
| *** Longgeek has quit IRC | 23:35 | |
| *** csoukup has quit IRC | 23:38 | |
| *** ashleighfarnham has quit IRC | 23:42 | |
| *** chlong has joined #openstack-trove | 23:47 | |
| *** csoukup has joined #openstack-trove | 23:55 | |
Generated by irclog2html.py 2.14.0 by Marius Gedminas - find it at mg.pov.lt!