Friday, 2016-01-29

*** haomaiwang has quit IRC00:01
*** haomaiwa_ has joined #openstack-manila00:01
*** aorourke is now known as aorourke-afk00:14
*** bill_az_ has quit IRC00:33
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Share Replication API and Scheduler Support  https://review.openstack.org/23857200:38
*** chlong has joined #openstack-manila00:49
*** mtanino has quit IRC00:57
*** marcusvrn_ has quit IRC00:57
*** haomaiwa_ has quit IRC01:01
*** 6JTAABUFK has joined #openstack-manila01:01
openstackgerritGoutham Pacha Ravi proposed openstack/python-manilaclient: Client Support for Manila Share Replication  https://review.openstack.org/23544801:03
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Share Replication API and Scheduler Support  https://review.openstack.org/23857201:07
*** gouthamr has quit IRC01:09
*** 6JTAABUFK has quit IRC01:27
*** dalgaaf has quit IRC01:38
*** alkhodos_ has quit IRC01:47
*** baojg has joined #openstack-manila01:53
*** jasonsb has joined #openstack-manila01:58
*** abhi has quit IRC02:00
*** bill_az has quit IRC02:06
*** 18WABXJHL has joined #openstack-manila02:14
*** jasonsb has quit IRC02:55
*** 18WABXJHL has quit IRC03:01
*** haomaiwang has joined #openstack-manila03:01
*** gouthamr has joined #openstack-manila03:13
*** xyang_ has joined #openstack-manila03:47
*** gouthamr has quit IRC03:47
*** xyang_ has quit IRC03:48
*** jasonsb has joined #openstack-manila03:49
*** haomaiwang has quit IRC04:01
*** haomaiwang has joined #openstack-manila04:01
*** lpetrut has joined #openstack-manila04:38
*** shausy has joined #openstack-manila04:48
*** bill_az has joined #openstack-manila04:58
*** haomaiwang has quit IRC05:01
*** haomaiwa_ has joined #openstack-manila05:01
*** chlong has quit IRC05:12
*** lpetrut has quit IRC05:27
*** chlong has joined #openstack-manila05:33
*** shausy has quit IRC05:36
*** shausy has joined #openstack-manila05:36
*** lpetrut has joined #openstack-manila05:59
*** haomaiwa_ has quit IRC06:01
*** haomaiwang has joined #openstack-manila06:01
*** chlong has quit IRC06:28
*** bill_az has quit IRC06:30
*** chlong has joined #openstack-manila06:39
*** lpetrut has joined #openstack-manila06:56
*** haomaiwang has quit IRC07:01
*** haomaiwang has joined #openstack-manila07:01
*** lpetrut has quit IRC07:03
*** lpetrut has joined #openstack-manila07:09
*** chlong has quit IRC07:32
*** sgotliv has joined #openstack-manila07:37
*** nkrinner has joined #openstack-manila07:43
*** lpetrut has quit IRC07:44
*** sgotliv has quit IRC07:54
*** haomaiwang has quit IRC08:01
*** haomaiwang has joined #openstack-manila08:01
openstackgerritDiem Tran proposed openstack/manila: Add share resize support to Oracle ZFSSA driver  https://review.openstack.org/27393508:14
*** lpetrut has joined #openstack-manila08:28
openstackgerritDiem Tran proposed openstack/manila: Add share resize support to Oracle ZFSSA driver  https://review.openstack.org/27393508:36
openstackgerritDiem Tran proposed openstack/manila: Add share resize support to Oracle ZFSSA driver  https://review.openstack.org/27393508:42
*** haomaiwang has quit IRC09:01
*** haomaiwang has joined #openstack-manila09:01
openstackgerritDiem Tran proposed openstack/manila: Add share resize support to Oracle ZFSSA driver  https://review.openstack.org/27393509:21
*** haomaiwang has quit IRC10:01
*** haomaiwa_ has joined #openstack-manila10:01
*** dalgaaf has joined #openstack-manila10:14
*** sgotliv has joined #openstack-manila10:24
*** tpsilva has joined #openstack-manila10:29
*** haomaiwa_ has quit IRC10:33
*** sgotliv has quit IRC10:47
tpsilvavponomaryov: ping10:57
vponomaryovtpsilva: pong10:57
tpsilvavponomaryov: hello... I'm implementing the threading approach for the data copy service as discussed on the midcycle10:58
tpsilvavponomaryov: currently I'm using multiprocessing.Process but I was wondering if I should use something else10:59
tpsilvavponomaryov: something from the oslo package, maybe10:59
tpsilvavponomaryov: I looked around and couldn't find some threading or processing tools on oslo... is there anything like that on this package?11:00
vponomaryovtpsilva: you are mixing "threads" and "processes", what exactly do you want to use?11:00
vponomaryovtpsilva: have you looked at the way manila-share services are spawned?11:00
vponomaryovtpsilva: anyway, "oslo_service" should help you11:02
*** ociuhandu has joined #openstack-manila11:02
tpsilvavponomaryov: I want to use something parallel... since python threads don't actually allow that, my approach was to use processes11:07
tpsilvavponomaryov: but I will take a look on that11:07
tpsilvavponomaryov: thank you11:07
vponomaryovtpsilva: that is why eventlet is used for WSGI11:08
tpsilvadoes greenthreads run in parallel?11:09
vponomaryovtpsilva: they allows to use everything "yielding"11:10
vponomaryovtpsilva: it is quasi parallel11:11
vponomaryovtpsilva: so, all such greenthreads will use python app runtime equally11:12
vponomaryovtpsilva: just look at existing manila services or some other inOpenStack11:12
vponomaryovtpsilva: how API works, periodic tasts for share service and incoming RPC requests11:13
tpsilvavponomaryov: ok, I'll take a look on that... thank you!11:14
vponomaryovtpsilva: may the force be with you always ))11:15
*** baojg has quit IRC11:20
*** baojg has joined #openstack-manila11:20
*** baojg has quit IRC11:25
*** erlon has joined #openstack-manila11:41
*** jcsp has quit IRC11:50
tbarrontpsilva: vponomaryov: greenthreads will work if you are I/O bound; need processes if cpu bound.12:07
tbarrontpsilva: what is the workload that you want to parallelize?12:07
tpsilvatbarron: the copy operation12:07
tpsilvatbarron: so it's I/O bound12:08
tbarrontpsilva: so unless ssl, compression, etc. that's presumbaly I/O bound12:08
tpsilvatbarron: so looks like greenthreads would work for that12:08
tbarronthreads will block on i/o operations and yield, so co-op multitaskinng is appropriate12:08
tbarrontpsilva: yup,12:08
tpsilvatbarron: great! I'll test with greenthreads... thanks12:09
openstackgerritRamana Raja proposed openstack/manila: tempest: wait for deletion of cert rule  https://review.openstack.org/27364512:11
*** jcsp has joined #openstack-manila12:20
*** jcsp has quit IRC12:20
*** jcsp has joined #openstack-manila12:21
*** rraja is now known as rraja|afk12:26
*** JoseMello has joined #openstack-manila12:26
*** rraja|afk has quit IRC12:46
*** timcl has joined #openstack-manila12:47
*** sgotliv has joined #openstack-manila12:55
*** yangyapeng has joined #openstack-manila13:15
*** martyturner has joined #openstack-manila13:16
*** dencaval has joined #openstack-manila13:16
*** gouthamr has joined #openstack-manila13:24
*** gouthamr has quit IRC13:27
*** gouthamr has joined #openstack-manila13:29
*** akerr has joined #openstack-manila13:45
*** martyturner has quit IRC13:47
*** merooney has joined #openstack-manila13:49
*** yangyapeng has quit IRC13:55
*** yangyapeng has joined #openstack-manila13:55
*** shausy has quit IRC14:01
openstackgerritRodrigo Barbieri proposed openstack/manila: Move Share Migration code to Data Service  https://review.openstack.org/25051514:03
openstackgerritRodrigo Barbieri proposed openstack/manila: Introduced Data Service  https://review.openstack.org/24428614:03
openstackgerritRodrigo Barbieri proposed openstack/manila: Add new Share migration API functions  https://review.openstack.org/25964214:03
*** baojg has joined #openstack-manila14:20
*** baojg has quit IRC14:25
*** yangyapeng has quit IRC14:26
*** dustins has joined #openstack-manila14:27
vponomaryovbswartz, markstur: young, one day old commit looks for good hands to carry into upstream - https://review.openstack.org/#/c/273442/ =)14:31
vponomaryovtoabctl_ ^14:40
bswartzvponomaryov: it's very early for markstur14:41
bswartzvponomaryov: xyang is in the room here I'll see if I can get her to take a look14:41
*** xyang_ has joined #openstack-manila14:47
*** tpatzig has joined #openstack-manila14:51
openstackgerritRodrigo Barbieri proposed openstack/python-manilaclient: Added new CLI commands for Share migration  https://review.openstack.org/25051814:53
*** haomaiwang has joined #openstack-manila14:55
openstackgerritTom Patzig proposed openstack/python-manilaclient: Set default access_level to rw in help  https://review.openstack.org/27409914:59
*** haomaiwang has quit IRC15:01
*** 14WAAUYA5 has joined #openstack-manila15:01
*** bill_az has joined #openstack-manila15:01
*** krotscheck has quit IRC15:10
*** aorourke-afk is now known as aorourke15:12
*** martyturner has joined #openstack-manila15:12
*** mtanino has joined #openstack-manila15:13
*** baojg has joined #openstack-manila15:16
*** martyturner has quit IRC15:16
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Fix scheduling with instance properties  https://review.openstack.org/27372715:17
gansobswartz: ping15:18
bswartzpong15:18
*** krotscheck has joined #openstack-manila15:21
*** sgotliv has quit IRC15:27
*** nkrinner has quit IRC15:32
*** cknight has joined #openstack-manila15:34
openstackgerritMerged openstack/manila: Bump tempest version  https://review.openstack.org/27344215:39
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Fix scheduling with instance properties  https://review.openstack.org/27372715:44
*** baojg has quit IRC15:45
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Share Replication API and Scheduler Support  https://review.openstack.org/23857215:45
*** JoseMello has quit IRC15:48
*** bill_az_ has joined #openstack-manila15:51
*** baojg has joined #openstack-manila15:55
*** absubram has joined #openstack-manila15:58
openstackgerritGoutham Pacha Ravi proposed openstack/manila: Fix scheduling with instance properties  https://review.openstack.org/27372715:58
openstackgerritMarc Koderer proposed openstack/manila: [DOC] Use of keystone client  https://review.openstack.org/27413615:58
*** 14WAAUYA5 has quit IRC16:01
*** haomaiwang has joined #openstack-manila16:01
*** absubram has quit IRC16:13
*** alejandrito has joined #openstack-manila16:19
openstackgerritSilvan Kaiser proposed openstack/manila: Extend exception handling for httplib and socket errors in Quobyte driver  https://review.openstack.org/27313516:32
*** esker has joined #openstack-manila16:32
gansobswartz: sorry I did not see your pong earlier16:41
gansobswartz: https://blueprints.launchpad.net/manila/+spec/data-copy-service16:42
gansobswartz: this blueprint is still priority = undecided16:42
bswartzganso: fixed16:46
bswartzganso: how much of that is ready for review16:47
gansobswartz: 100% ready16:47
gansobswartz: #link https://review.openstack.org/#/c/244286/16:47
gansobswartz: the main patch is an empty data service16:48
*** absubram has joined #openstack-manila16:49
gansobswartz: the dependent patches are 99% ready... I am about to fix the last detail16:49
gansobswartz: then I was going to start working on the Data Service Helper... the one we discussed last week16:50
gansobswartz: but the dependence tree is getting very, very long... markstur and I are concerned about that16:50
gansobswartz: update_access, update_access in generic driver, data service, migration in data service, migration api... then data service helper16:51
gansobswartz: also, a patch that optimizes copy is coming to the dependence tree as well16:51
bswartzwell merging some changes would help with that problem16:54
bswartzI can't imagine why we couldn't get started with the top of that tree16:54
bswartzjust need to get reviewers signed up16:54
*** bill_az_ has quit IRC16:55
*** merooney has quit IRC16:55
*** martyturner has joined #openstack-manila16:58
*** martyturner has quit IRC16:59
*** xyang_ has quit IRC16:59
*** haomaiwang has quit IRC17:01
*** martyturner has joined #openstack-manila17:01
*** 17WABOLKW has joined #openstack-manila17:01
*** absubram has quit IRC17:17
*** absubram has joined #openstack-manila17:17
*** baojg has quit IRC17:18
*** baojg has joined #openstack-manila17:19
*** cknight has quit IRC17:20
openstackgerritRodrigo Barbieri proposed openstack/manila: Move Share Migration code to Data Service  https://review.openstack.org/25051517:22
openstackgerritRodrigo Barbieri proposed openstack/manila: Add new Share migration API functions  https://review.openstack.org/25964217:22
*** martyturner has quit IRC17:25
*** jasonsb has quit IRC17:36
*** jasonsb has joined #openstack-manila17:37
*** baojg has quit IRC17:38
*** baojg has joined #openstack-manila17:38
*** baojg has quit IRC17:42
*** baojg has joined #openstack-manila17:43
*** jasonsb has quit IRC17:46
*** baojg has quit IRC17:47
*** martyturner has joined #openstack-manila17:53
*** cknight has joined #openstack-manila17:54
*** 17WABOLKW has quit IRC18:01
*** 77CAADIRQ has joined #openstack-manila18:01
*** martyturner has quit IRC18:08
*** absubram has quit IRC18:13
*** lpetrut has quit IRC18:27
*** akerr has quit IRC18:31
*** merooney has joined #openstack-manila18:35
*** akerr has joined #openstack-manila18:36
*** timcl1 has joined #openstack-manila18:37
*** absubram has joined #openstack-manila18:38
*** timcl has quit IRC18:40
*** baojg has joined #openstack-manila18:43
*** baojg has quit IRC18:48
gouthamrganso: around?18:53
gansogouthamr: yes18:57
*** pcaruana has joined #openstack-manila18:57
gouthamrganso: hi, commented here, https://review.openstack.org/#/c/245126/18:58
gouthamrganso: was mainly thinking out loud; devstack plugin's supposed to start the m-dat screen session while testing that patch..18:58
gansogouthamr: wrong patch link? o_O18:59
gouthamrganso: sorry: https://review.openstack.org/#/c/244286/1118:59
gansogouthamr: it already does19:00
gansogouthamr: see devstack/plugin.sh in that patch19:01
*** 77CAADIRQ has quit IRC19:01
gouthamrganso: yes, so i was trying to find the screen file here: http://logs.openstack.org/86/244286/11/check/gate-manila-tempest-dsvm-neutron/f9e9dd0/logs/19:01
*** 16WAAP054 has joined #openstack-manila19:01
gansogouthamr: humm well observed19:01
gansogouthamr: I need to find out how to do that19:02
gouthamrganso: i'd like to know too :)19:02
gansogouthamr: looks like I missed the settings file19:04
gansogouthamr: not sure if changing that is enough to magically make the file appear19:04
gouthamrganso: ah! enable_service19:05
*** merooney has quit IRC19:13
*** dencaval has quit IRC19:13
*** lpetrut has joined #openstack-manila19:14
*** krotscheck has quit IRC19:17
*** eharney_ has joined #openstack-manila19:17
*** eharney_ is now known as eharney19:18
*** absubram has quit IRC19:20
openstackgerritRodrigo Barbieri proposed openstack/manila: Introduced Data Service  https://review.openstack.org/24428619:24
*** pcaruana has quit IRC19:24
*** dencaval has joined #openstack-manila19:26
*** abhi has joined #openstack-manila19:34
*** pcaruana has joined #openstack-manila19:37
openstackgerritSumit Kumar proposed openstack/manila: Fix rpcapi identifiers for better readability  https://review.openstack.org/27100419:40
*** baojg has joined #openstack-manila19:44
*** martyturner has joined #openstack-manila19:46
*** martyturner has quit IRC19:48
*** baojg has quit IRC19:50
openstackgerritShaun Edwards proposed openstack/manila: EMC Isilon Driver Support For NFS Read-Only Share  https://review.openstack.org/27109519:52
openstackgerritSumit Kumar proposed openstack/manila: Fix rpcapi identifiers for better readability  https://review.openstack.org/27100419:54
*** sedwards has quit IRC19:56
openstackgerritShaun Edwards proposed openstack/manila: EMC Isilon Driver Support For NFS Read-Only Share  https://review.openstack.org/27109519:58
*** jasonsb has joined #openstack-manila19:59
*** 16WAAP054 has quit IRC20:01
*** ociuhandu has quit IRC20:01
*** haomaiwa_ has joined #openstack-manila20:01
*** timcl has joined #openstack-manila20:05
*** pcaruana has quit IRC20:06
*** timcl1 has quit IRC20:07
*** esker has quit IRC20:08
*** pcaruana has joined #openstack-manila20:09
gansogouthamr: yup, magically it adds m-dat log file20:10
*** adrianofr has quit IRC20:10
gansogouthamr: but now devstack is failing for some weird reason20:10
*** gouthamr has quit IRC20:17
*** pcaruana has quit IRC20:19
*** akerr has quit IRC20:45
openstackgerritOpenStack Proposal Bot proposed openstack/manila: Updated from global requirements  https://review.openstack.org/27094420:46
*** baojg has joined #openstack-manila20:46
*** lpetrut has quit IRC20:46
*** baojg has quit IRC20:51
*** dencaval has quit IRC20:51
*** jasonsb has quit IRC20:59
*** haomaiwa_ has quit IRC21:01
*** alyson_ has quit IRC21:02
*** haomaiwang has joined #openstack-manila21:03
*** akerr has joined #openstack-manila21:27
openstackgerritMark Sturdevant proposed openstack/manila: Fix rpcapi identifiers for better readability  https://review.openstack.org/27100421:32
*** bill_az has quit IRC21:35
*** tpsilva has quit IRC21:36
*** absubram has joined #openstack-manila21:41
*** cknight has quit IRC21:46
*** baojg has joined #openstack-manila21:47
*** baojg has quit IRC21:52
*** alejandrito has quit IRC21:54
*** akerr has quit IRC21:55
*** haomaiwang has quit IRC22:01
*** 21WAAXZZ2 has joined #openstack-manila22:01
*** cknight has joined #openstack-manila22:12
*** cknight has quit IRC22:14
*** cknight has joined #openstack-manila22:15
*** dustins has quit IRC22:15
*** cknight1 has joined #openstack-manila22:20
*** cknight has quit IRC22:21
*** cknight1 has quit IRC22:24
*** gouthamr has joined #openstack-manila22:25
*** cknight has joined #openstack-manila22:27
*** cknight1 has joined #openstack-manila22:29
*** cknight has quit IRC22:31
*** xyang_ has joined #openstack-manila22:39
*** baojg has joined #openstack-manila22:47
*** baojg has quit IRC22:53
*** eharney has quit IRC23:00
*** 21WAAXZZ2 has quit IRC23:01
*** alejandrito has joined #openstack-manila23:01
*** haomaiwang has joined #openstack-manila23:01
*** alejandrito has quit IRC23:41
*** cknight1 has quit IRC23:45
*** baojg has joined #openstack-manila23:49
*** baojg has quit IRC23:59

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