Friday, 2015-04-03

*** ho has joined #openstack-manila00:01
openstackgerritli,chen proposed openstack/manila: Add config_group_name for NeutronNetworkHelper  https://review.openstack.org/16964700:02
openstackgerritli,chen proposed openstack/manila: Add config_group_name for NeutronNetworkHelper  https://review.openstack.org/16964700:13
*** cknight has joined #openstack-manila01:01
*** cknight has quit IRC01:45
*** cknight has joined #openstack-manila01:48
*** cknight has quit IRC01:48
*** cknight has joined #openstack-manila01:49
*** cknight has quit IRC02:09
*** akerr has joined #openstack-manila02:17
*** akerr has quit IRC03:03
*** chlong has joined #openstack-manila03:48
*** chlong has quit IRC03:49
*** zaitcev has quit IRC04:23
*** jasonsb has joined #openstack-manila04:37
*** fanyaohong has quit IRC04:46
*** ameade has quit IRC04:46
*** ameade has joined #openstack-manila04:47
*** fanyaohong has joined #openstack-manila04:47
*** vbellur has quit IRC04:57
*** vbellur has joined #openstack-manila05:16
*** lpetrut has joined #openstack-manila05:20
*** marcusvrn has quit IRC05:49
*** rhefner has quit IRC08:14
*** lpetrut has quit IRC08:24
*** geguileo has joined #openstack-manila08:47
*** geguileo has quit IRC08:48
*** geguileo has joined #openstack-manila08:48
*** geguileo is now known as Guest8079708:49
*** lpetrut has joined #openstack-manila08:49
*** rraja has joined #openstack-manila09:22
*** vbellur has quit IRC09:36
*** vbellur has joined #openstack-manila09:42
openstackgerritIgor Malinovskiy proposed openstack/manila: Automatic cleanup of share_servers  https://review.openstack.org/16618210:18
*** ho has quit IRC10:59
*** akerr has joined #openstack-manila11:32
*** akerr_ has joined #openstack-manila11:33
*** rcallawa has joined #openstack-manila11:35
*** akerr has quit IRC11:37
*** rcallawa has quit IRC11:38
*** rcallawa has joined #openstack-manila11:38
openstackgerritAndrew Kerr proposed openstack/manila: Allow overwriting some Manila tempest settings in CI jobs  https://review.openstack.org/17022211:45
*** akerr_ has quit IRC11:57
*** bswartz has quit IRC12:18
*** timcl has joined #openstack-manila12:22
*** u_glide has joined #openstack-manila12:27
*** csaba1 has joined #openstack-manila12:27
*** csaba has quit IRC12:27
*** csaba1 has quit IRC12:32
*** csaba1 has joined #openstack-manila12:32
*** lpetrut has quit IRC12:37
*** lpetrut has joined #openstack-manila12:45
openstackgerritValeriy Ponomaryov proposed openstack/manila: Add doc with basic deployment steps  https://review.openstack.org/17021812:53
*** bswartz has joined #openstack-manila12:55
openstackgerritValeriy Ponomaryov proposed openstack/manila: Add doc with basic deployment steps  https://review.openstack.org/17021813:06
openstackgerritClinton Knight proposed openstack/manila: NetApp cDOT driver uses deprecated APIs for NFS exports  https://review.openstack.org/16995813:07
*** dustins has joined #openstack-manila13:19
*** rcallawa_ has joined #openstack-manila13:22
*** rcallawa has quit IRC13:25
*** timcl has quit IRC13:29
*** rcallawa_ has quit IRC13:29
*** rcallawa has joined #openstack-manila13:29
*** openstackgerrit has quit IRC13:36
*** openstackgerrit has joined #openstack-manila13:36
*** akerr has joined #openstack-manila13:41
*** xyang_ has joined #openstack-manila13:43
*** timcl has joined #openstack-manila13:45
*** akshai has joined #openstack-manila13:48
*** cknight has joined #openstack-manila14:02
*** rhefner has joined #openstack-manila14:13
*** cknight has quit IRC14:17
*** rushil has joined #openstack-manila14:19
*** cknight has joined #openstack-manila14:22
*** openstackgerrit has quit IRC14:39
*** openstackgerrit has joined #openstack-manila14:39
bswartzvponomaryov: postresql job is NOT_REGISTERED ???14:40
*** lpabon has joined #openstack-manila14:42
vponomaryov bswartz:  ?15:02
vponomaryovbswartz: share types does not work with postres according to CI: http://logs.openstack.org/22/170222/2/check/gate-manila-tempest-dsvm-neutron-postgres/a7b91d3/logs/screen-m-api.txt.gz#_2015-04-03_14_29_41_52515:03
vponomaryovbswartz: oh, I see, what do you mean, I guess it was temporary error15:04
*** xyang_ has quit IRC15:05
openstackgerritIgor Malinovskiy proposed openstack/manila: Prevent hanging share server in 'creating' state  https://review.openstack.org/17052815:05
bswartzvponomaryov: is this a legit bug?15:05
vponomaryovbswartz: looks like Postgres is more strict about types than MySQL15:06
vponomaryovhttps://bugs.launchpad.net/manila/+bug/144008915:10
openstackLaunchpad bug 1440089 in Manila "Extra specs can not be assigned to share type using postgres" [Undecided,New]15:10
bswartzvponomaryov: do you know where in the code the bug lies?15:16
bswartzare we something something with sqlalchemy that's not safe?15:16
openstackgerritValeriy Ponomaryov proposed openstack/python-manilaclient: Improve docstrings for share API methods  https://review.openstack.org/17053315:16
vponomaryovbswartz: it is very strange15:18
vponomaryovhttps://github.com/openstack/oslo.db/blob/master/oslo_db/sqlalchemy/models.py#L12215:18
vponomaryovit is defined as integer and inherited without redifinition and manila sets integer15:19
vponomaryovbut postgres think it should be boolean15:19
bswartzI thought mysql didn't really support booleans15:20
vponomaryovoh15:20
bswartzit emulates them with 1-bit integers15:20
vponomaryovmodel has it as integer15:20
vponomaryovbut migration has it as boolean15:20
vponomaryovhttps://github.com/openstack/manila/blame/master/manila/db/migrations/alembic/versions/38e632621e5a_change_volume_type_to_share_type.py#L5715:21
vponomaryovhttps://github.com/openstack/manila/blob/master/manila/db/migrations/alembic/versions/162a3e673105_manila_init.py#L37815:21
vponomaryovSo, i wonder how it worked at all for some people with postgres?15:22
vponomaryovextra specs should not have been worked15:22
vponomaryovas you can see from links, it always was as "boolean" for database and integer for "model" inside of manila15:23
vponomaryovsame has Cinder - https://github.com/openstack/cinder/blob/master/cinder/db/sqlalchemy/migrate_repo/versions/001_cinder_init.py#L15115:24
vponomaryovdoes cinder work on postgres?15:24
vponomaryovbswartz: I guess it works in CInder because, Cinder writes there boolean: https://github.com/openstack/cinder/blame/46cdfb2c9f66e6a83992a97b529cd0459f6c5928/cinder/db/sqlalchemy/api.py#L258315:27
*** u_glide has quit IRC15:28
bswartzI saw that cinder added postgresql jobs recently15:28
vponomaryovMay 20, 2014, not so recently =)15:31
vponomaryovhttps://github.com/openstack-infra/project-config/commit/ba04e31d29719d2176fd2567e52ae1502ca8fb8315:32
bswartzless than a year I guess15:40
bswartzI didn't know it was that long ago15:40
vponomaryovbswartz: do we consider it as high priority? - fix of postgres issues?15:45
*** timcl has quit IRC15:54
bswartzyes I think so15:56
bswartzpostgresql should be supported15:56
bswartzthe only valid reason I can think of to not fix a postgres bug right now is if it would be too risky15:57
openstackgerritLuis Pabon proposed openstack/manila: Enable developers to see pylint output  https://review.openstack.org/17055316:07
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix DB models for compatibility with postgres  https://review.openstack.org/17055516:10
*** timcl has joined #openstack-manila16:12
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix DB models for compatibility with postgres  https://review.openstack.org/17055516:12
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix DB models for compatibility with postgres  https://review.openstack.org/17055516:13
*** xyang_ has joined #openstack-manila16:21
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix DB models for compatibility with postgres  https://review.openstack.org/17055516:44
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix DB models for compatibility with postgres  https://review.openstack.org/17055516:46
*** lpetrut has left #openstack-manila16:50
*** akshai has quit IRC17:18
bswartzvponomaryov: abandon this? https://review.openstack.org/#/c/138038/17:20
bswartzor should we bring this back to current?17:21
*** lpetrut has joined #openstack-manila17:21
vponomaryovbswartz: funtionality that is not finished there is still required17:22
bswartzokay17:22
vponomaryovbswartz: potentially can be replaced with something that tempest_lib will provide17:22
*** lpetrut has quit IRC17:32
*** lpetrut has joined #openstack-manila17:35
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix field 'deleted' in DB migrations for compatibility with PostgreSQL  https://review.openstack.org/17055517:35
*** akshai has joined #openstack-manila17:38
openstackgerritMerged openstack/manila: Set share-type on share created from snapshot  https://review.openstack.org/16991718:04
openstackgerritMerged openstack/manila: cDOT multi-SVM driver may choose unsuitable physical port for LIFs  https://review.openstack.org/16992118:09
*** jasonsb has quit IRC18:40
*** jasonsb has joined #openstack-manila18:41
*** jasonsb has quit IRC18:46
*** Maike has joined #openstack-manila18:51
*** akshai has quit IRC18:51
openstackgerritValeriy Ponomaryov proposed openstack/manila: Fix fields 'deleted' in various DB models for PostgreSQL compatibility  https://review.openstack.org/17055518:52
openstackgerritLuis Pabón proposed openstack/manila: Enable developers to see pylint output  https://review.openstack.org/17055319:09
*** timcl has quit IRC19:10
openstackgerritValeriy Ponomaryov proposed openstack/manila: Add tempest coverage for share type access operations  https://review.openstack.org/17058619:17
*** Maike has quit IRC19:22
*** Maike has joined #openstack-manila19:22
lpabonis there a document which shows how to run tempest with devstack and manila?19:25
*** akshai has joined #openstack-manila19:26
akerrlpabon: https://wiki.openstack.org/wiki/Manila/docs/HOWTO_use_tempest_with_manila19:26
lpabonakerr: great, thanks!19:27
*** dustins has quit IRC19:27
*** vponomaryov has quit IRC19:34
*** Guest80797 is now known as geguileo19:42
*** geguileo has quit IRC19:42
*** geguileo has joined #openstack-manila19:42
*** timcl has joined #openstack-manila19:46
*** timcl has quit IRC20:00
*** lpabon has quit IRC20:07
*** rushil has quit IRC20:11
*** akerr has quit IRC20:11
*** jasonsb has joined #openstack-manila20:27
*** jasonsb has quit IRC20:31
*** jasonsb has joined #openstack-manila20:36
*** rraja has quit IRC20:39
openstackgerritRushil Chugh proposed openstack/manila: Prevent share servers from being created with unsupported network types  https://review.openstack.org/17060620:42
*** geguileo has quit IRC20:43
*** akshai has quit IRC20:49
*** akshai has joined #openstack-manila20:57
*** bswartz has quit IRC21:04
*** lpetrut has quit IRC21:19
*** Maike_ has joined #openstack-manila21:28
*** Maike has quit IRC21:29
*** jasonsb has quit IRC21:31
*** jasonsb has joined #openstack-manila21:31
*** jasonsb has quit IRC21:36
*** xyang_ has quit IRC21:48
*** cknight has quit IRC22:22
*** akshai has quit IRC22:40
*** rhefner has quit IRC22:44
*** Maike_ has quit IRC22:45
*** Viswanath has joined #openstack-manila23:31
*** Viswanath has quit IRC23:40
*** bswartz has joined #openstack-manila23:55

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