Tuesday, 2015-10-13

*** trozet has joined #tacker00:07
*** prashantD has quit IRC00:21
*** lhcheng has quit IRC00:37
*** santoshkumark has quit IRC00:39
*** arturt has quit IRC00:43
*** arturt has joined #tacker00:44
*** arturt has quit IRC00:55
*** arturt has joined #tacker00:55
*** arturt has quit IRC00:58
*** elo has quit IRC01:32
*** tbh has joined #tacker01:34
*** sridhar_ram has quit IRC01:39
*** kurahash_ has joined #tacker01:42
*** kurahashi has quit IRC01:43
*** s3wong has quit IRC01:49
*** sripriya has quit IRC01:49
*** lhcheng has joined #tacker02:22
*** kurahash_ has quit IRC02:31
*** kurahashi has joined #tacker02:32
*** tbh has quit IRC02:51
*** tbh_ has joined #tacker02:52
*** bobh has joined #tacker02:54
*** bobh has quit IRC03:05
*** elo has joined #tacker03:25
*** tbh_ has quit IRC03:33
*** elo has quit IRC03:37
*** lhcheng has quit IRC03:40
*** santoshkumark has joined #tacker04:04
*** tbh has joined #tacker04:25
*** lhcheng has joined #tacker04:27
*** lhcheng has quit IRC05:33
*** santoshk has joined #tacker05:34
*** lhcheng has joined #tacker05:34
*** santoshkumark has quit IRC05:37
*** elo has joined #tacker05:39
*** elo has quit IRC05:39
openstackgerritbharaththiruveedula proposed stackforge/python-tackerclient: Handle --config option in vnf-create  https://review.openstack.org/23397106:12
*** openstack has joined #tacker06:30
*** santoshk has quit IRC06:42
*** zeih has joined #tacker07:24
*** sridhar_ram has joined #tacker07:37
*** sridhar_ram has quit IRC07:41
*** kurahashi has quit IRC08:26
*** mbound has joined #tacker08:26
*** kurahashi has joined #tacker08:28
*** openstack has joined #tacker08:48
*** elo has joined #tacker09:11
*** elo has quit IRC09:11
*** openstackgerrit has quit IRC10:01
*** openstackgerrit has joined #tacker10:02
*** zeih_ has quit IRC10:02
*** kurahashi has quit IRC10:43
*** kurahashi has joined #tacker10:44
*** kurahashi has quit IRC10:44
*** kurahashi has joined #tacker11:56
*** kurahashi has quit IRC12:01
*** bobh has joined #tacker12:04
*** bobh has quit IRC12:10
*** tbh has quit IRC12:51
*** trozet has quit IRC12:59
*** mbound has quit IRC13:06
*** mbound has joined #tacker13:10
*** mbound has quit IRC13:11
*** mbound has joined #tacker13:11
*** trozet has joined #tacker13:45
*** bobh has joined #tacker15:08
*** mbound has quit IRC15:44
*** tbh has joined #tacker15:46
*** mbound has joined #tacker16:05
*** mbound has quit IRC16:22
*** tbh_ has joined #tacker16:23
*** tbh has quit IRC16:23
*** elo has joined #tacker16:27
*** lhcheng has joined #tacker16:35
*** sridhar_ram has joined #tacker16:48
*** tbh_ has quit IRC16:59
*** tbh has joined #tacker17:00
*** sripriya has joined #tacker17:01
*** santoshkumark has joined #tacker17:18
sripriyatbh: hello, thanks for providing patchset for https://review.openstack.org/#/c/233971/ . left few comments based on our IRC discussions yest. please ping me for any questions. thanks again.17:26
tbhsripriya: sure17:27
tbhsripriya: actually I thought boot_wait and max_timeout will not come under this bug17:29
tbhsripriya: but need to remove the call to config twice17:30
*** prashantD has joined #tacker17:30
tbhsripriya: when you find time can you please review this17:37
tbhhttps://review.openstack.org/23143117:37
sripriyatbh: yeah, i discussed regarding fixing time_out as part of the bug with sridhar_ram, he suggested that hardcoding a generic sleep of 30 sec. and then trying config update once before giving up - may sometimes work but is not guaranteed to work all times which is why i assume the bug was raised17:40
sripriyatbh: will review it17:40
sridhar_ramtbh: sripriya: for the mgmt timeout / retry it will be good to add a tacker.conf entry w/ a reasonable default..17:41
tbhsripriya got it17:43
tbhsridhar_ram will update default values for boot_an17:44
tbh*boot_wait and max_retry17:44
tbhIn tacker.conf17:44
tbhsridhar_ram is there any way I can check previous logs?17:47
tbhI mean IRC logs17:47
sridhar_ramtbh: ah.. just realized this is per mgmt_driver timeout,17:47
sridhar_ramtbh: that doesn't belong to tacker.conf .. sorry for the confusion17:47
sripriyatbh: tacker IRC logs can be viewed at: http://eavesdrop.openstack.org/irclogs/%23tacker/index.html17:49
tbhsripriya sridhar_ram what about max_retry?17:50
tbhsripriya thanks that will help me a lot17:51
sridhar_ramtbh: that is up to the mgmt_driver implementation...17:52
tbhGot it17:53
sridhar_ramtbh: here is the best practice I had in mind for mgmt_driver impl...17:53
tbhI also need to understand the actual telco usecases so that I can judge properly in addition to implementation18:00
tbhEven in my last nfv orchestrator assignment I just implemented it with out under18:01
tbh*understanding exact use case where it will be useful18:02
*** prashantD has quit IRC18:08
sridhar_ramsorry .. got interrupted..18:09
sridhar_ramtbh: sure, I can help.. we just need to find a timeslot and talk through it !18:10
sridhar_ramback to this fix... let me continue..18:10
sridhar_rammgmt_driver's job IMO should be to apply config with a logic to retry few times .. say 3 times at every 15s interval and give up18:10
sridhar_ramin the next cycle a failure here will also change the status .. but we don't have that support now18:11
sridhar_ramnow, back to boot wait .. I looked the code again..18:11
sridhar_ramhttps://github.com/stackforge/tacker/blob/master/tacker/vm/plugin.py#L24318:12
sridhar_raminstead of this above hardcoded sleep of 30s .. can we reuse "boot_wait" value in the tacker.conf18:12
sridhar_rambtw, that boot_wait is currently at a wrong place .. monitor.boot_wait.. we shd move it "up" to something like default_vdu_boot_wait18:13
sridhar_ramtbh: sripriya: what do you think ?18:13
tbhsridhar_ram yeah we must place it in default section18:14
tbhsridhar_ram so max_retry and interval will be of driver's choice?18:15
sripriyasridhar_ram: the default 30 sec. should be changed to a reasonable wait_time that is good enought to start both config and monitoring across all types of VNFs18:15
sripriya*enough18:15
sripriyatbh: reg: default section, agree18:16
sridhar_ramtbh: yeah, I believe so... I'm trying to draw a boundary between what tacker framework would offer and what we delegate to VNF vendor18:16
tbhG18:17
sridhar_ramsripriya: agree, monitoring is better positioned w/ the new monitoring_delay18:17
tbhsridhar_ram yes18:17
sridhar_ramtbh: a quick side note, I've been point testing your http_ping .. few comments coming your way in the gerrit :)18:18
tbhsridhar_ram sure18:18
*** elo has quit IRC18:19
*** elo has joined #tacker18:28
*** s3wong has joined #tacker18:28
*** elo has quit IRC18:29
*** elo has joined #tacker18:30
*** trozet has quit IRC19:52
*** santoshk has joined #tacker19:54
*** santoshkumark has quit IRC19:58
*** bobh has quit IRC20:00
*** sridhar_ram1 has joined #tacker20:02
*** sridhar_ram has quit IRC20:03
*** trozet has joined #tacker20:34
*** elo has quit IRC20:35
*** bobh has joined #tacker20:44
*** tbh has quit IRC20:55
*** sridhar_ram1 has quit IRC21:04
*** sripriya_ has joined #tacker21:07
*** sridhar_ram has joined #tacker21:07
*** sripriya has quit IRC21:08
sridhar_rams3wong: ping21:10
sridhar_rams3wong: can you look at the latest bobh health mon patchset - https://review.openstack.org/#/c/224384/ ?21:12
sridhar_rams3wong: you already gave a +2 on a previous PS ...21:13
s3wongsridhar_ram: OK21:21
*** bobh has quit IRC21:40
*** trozet has quit IRC21:48
*** trozet has joined #tacker21:55
*** trozet has quit IRC22:01
*** trozet has joined #tacker22:05
*** elo has joined #tacker22:06
openstackgerritMerged stackforge/tacker: Implement Monitoring Framework  https://review.openstack.org/22438422:22
*** lhcheng has quit IRC23:11
*** lhcheng has joined #tacker23:13
*** lhcheng_ has joined #tacker23:17
*** lhcheng has quit IRC23:19
*** kurahashi has joined #tacker23:27

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