Thursday, 2015-11-19

dansmithbecause if we're spinning on a socket or something that would explain a lot00:00
harlowjawhich is dropping into00:00
harlowjamethod_framing:184:read_method00:00
harlowja56.29%00:00
harlowja:-/00:00
harlowjaand then its gone, lol00:00
harlowjahttps://github.com/celery/py-amqp/blob/master/amqp/method_framing.py00:00
harlowjaperhaps thats method_framing00:01
*** mriedem has joined #openstack-operators00:01
harlowja* https://github.com/celery/py-amqp/blob/1.4/amqp/method_framing.py#L18400:01
harlowja^ read_method00:01
harlowjathat method is oddly gone in newer pyamqp00:01
harlowja(on master)00:01
klindgrenI can run a different profiler or something else - or if shown how - I can profile a separate section.  Like I mentioned earlier I am just starting python with the cProfiler module and saving the output - then running that call tracing thingy against it00:02
*** krobzaur has quit IRC00:02
harlowjaya, klindgren  np00:02
harlowjaits dropping off into https://github.com/celery/py-amqp/blob/1.4/amqp/method_framing.py#L10400:02
harlowjawhich might be dropping into c code00:03
harlowjanot sure00:03
harlowjawhich i guess is (maybe) https://github.com/celery/py-amqp/blob/1.4/amqp/transport.py#L15000:03
* harlowja wonders if kombu can buffer messages better00:04
harlowjaand its lack of buffering things makes this suck00:04
dansmithI guess that I think we're learning that the hotspot is not where we thought00:06
dansmithor I thought at least00:06
harlowjapossibly00:06
harlowjashit ton of read_frame (aka, no buffering?)00:06
dansmithI figured it would be mostly in the ORM bits, jsonification, etc00:06
*** zhangjn has quit IRC00:07
dansmithbut it seems like we've got good data on all that and it's a small part of the total00:07
harlowjamaybe00:08
klindgrendansmith, checkign back to that box we enabled debug on00:08
*** zhangjn has joined #openstack-operators00:08
*** zhangjn has quit IRC00:08
klindgrenI do see a bunch of hits for Lazy-loading00:08
dansmithklindgren: bunch like..?00:09
*** zhangjn has joined #openstack-operators00:09
*** zhangjn has quit IRC00:09
klindgrenon this box grouped into 2 requests - 3-4 a minute00:09
klindgrensometimes 800:10
dansmithyeah, so .. that's nothing00:10
dansmithwhat are they loading?00:10
dansmithpci_crapolium_somethingorother/00:10
klindgrenmetadata system_metadata00:10
*** zhangjn has joined #openstack-operators00:10
klindgreninfo_cache00:10
klindgrenmainly metadata00:11
dansmithah,00:11
dansmiththat's the periodic task that doesn't pre-fetch that stuff until it determines it needs it00:11
dansmithso, doing what it's supposed to00:11
klindgrenalso - we run metadata on every compute node00:11
klindgrenso I would imagine they are all doing it00:11
klindgrenls00:11
dansmiththat's not because of the metadata service, especially if you're seeing it in compute log00:12
klindgren1 hit on info_cache which was compute00:12
klindgreneverything else came from metadata.log00:13
dansmithokay, well, still not even close to the problem00:13
j^2I just posted this: bit.ly/successful-chatroom-meetings, i'm going to try to stick to it00:13
dansmithklindgren: can you try starting up a conductor worker with the topic mangled so it gets no traffic/00:19
klindgrensure00:20
dansmithklindgren: if it sits there, connected but with no traffic, and burns cpu, then that means it's being really stupid00:20
dansmithI don't expect this to yield anything, but if it does, it'll be much more telling00:20
*** lhcheng has quit IRC00:20
*** zhangjn has quit IRC00:21
*** lhcheng has joined #openstack-operators00:21
klindgrentopic=donothing in the conductor section00:22
klindgrenone process is doing like 0.7-1% cpu everything else is a solid .300:23
dansmithyeah00:23
klindgrenso effectively idle00:23
dansmithbut we get multiple connections to rabbit over time right?00:23
dansmithI mean, not with this, but when there is real load00:24
klindgrenright00:24
dansmithI'm not sure why it's not zero in this config, I mean00:24
dansmithand when you start up a conductor cold, it goes straight to 48% or whatever number right?00:25
dansmithit doesn't take a few minutes to warm up or anything?00:25
klindgrenit usually burns 100% cpu for a few seconds00:26
klindgrenthen pretty pquickly the processes start taking cpu00:26
dansmithhmm, that doesn't really make any sense to me either00:26
klindgrenwhich bounce around but usually look like:00:26
klindgrenhttp://paste.ubuntu.com/13243560/00:26
dansmithklindgren: what does a nova-compute look like?00:27
dansmithany similar behavior?00:27
dansmithall the underlying machinery is pretty much the same00:27
klindgrenyea nova compute burns 100% for a few seconds00:27
klindgrenand drops off to say 2-3%00:27
dansmithhmm00:28
klindgren(just did a restart test)00:28
klindgren2015-11-18 17:21:48.154 4043 INFO nova.service [-] Starting donothing node (version 2015.1.0) - didn't realize that was using the topic name00:29
*** arcimboldo has quit IRC00:30
*** krobzaur has joined #openstack-operators00:30
dansmithklindgren: can you measure actual throughput of traffic between rabbit and a conductor?00:31
klindgrenwith conductor conenct to the correct topic - we typical see a bunch of: http://paste.ubuntu.com/13337010/00:31
dansmithright00:31
klindgrendansmith, how would I do that?00:31
dansmithklindgren: iftop, iptraf, etc?00:31
*** rebase has quit IRC00:32
klindgrenso in this particular case rabbitmq and conductor is on the same host00:33
klindgrenright now00:33
dansmithoh really00:33
klindgrenyea00:33
klindgreneach cell server is running rabbitmq for the cell as well00:34
klindgrenwith each cell member preferring its local rabbit in the list of hosts (IE its first)00:34
dansmithso iftop will work on lo, and will display ports so you can look at just those connections00:35
dansmithI'm just curious if we're actually getting a lot of traffic from rabbit and having to do something with it,00:36
dansmithor if we're spinning on a lack of traffic00:36
dansmithit won't likely lead anywhere, I'm just trying to think of next steps00:36
dansmithI'm guessing that getting some o.msg person to look is what we really should be doing00:36
dansmiththat, and me getting dinner00:37
j^2yay!00:37
j^2http://eavesdrop.openstack.org/#OpenStack_OSOps/Monitoring_and_Tools_Working_Group00:37
harlowjaya, i start to wonder if oslo.messaging should buffer better ,idk00:41
harlowja*and/or kombu00:41
harlowjabut this starts to get into using a message queue as a queue vs an RPC thing00:42
*** mdorman has quit IRC00:44
dansmithI don't see why this starts to get into rpc-over-queue, but okay :)00:44
harlowjasome semantics might be lost if we start buffering things more into memory and memory goes poof00:46
harlowjabut i guess memory can already go poof due to other problems, and we don't handle it anyway, lol00:46
*** Piet has joined #openstack-operators00:49
*** sanjayu has quit IRC00:52
*** krobzaur has quit IRC00:55
*** krobzaur has joined #openstack-operators00:55
*** rebase has joined #openstack-operators00:59
*** zhangjn has joined #openstack-operators01:07
*** zhangjn_ has joined #openstack-operators01:08
*** signed8bit_ZZZzz is now known as signed8bit01:11
*** zhangjn has quit IRC01:12
*** signed8bit is now known as signed8bit_ZZZzz01:12
*** SimonChung has quit IRC01:24
*** fawadkhaliq has joined #openstack-operators01:26
*** sgordon has quit IRC01:47
*** sgordon has joined #openstack-operators01:49
*** krobzaur has quit IRC01:50
*** dims_ has joined #openstack-operators01:54
*** gyee has quit IRC01:55
*** fawadkhaliq has quit IRC01:57
*** krobzaur has joined #openstack-operators02:05
*** dims has joined #openstack-operators02:09
*** dims_ has quit IRC02:13
*** krobzaur has quit IRC02:16
*** ducttape_ has joined #openstack-operators02:17
*** openstack has joined #openstack-operators02:26
-cameron.freenode.net- [freenode-info] if you're at a conference and other people are having trouble connecting, please mention it to staff: http://freenode.net/faq.shtml#gettinghelp02:26
*** SimonChung has joined #openstack-operators02:30
*** kencjohnston has joined #openstack-operators02:33
*** mriedem has quit IRC02:36
*** armax has quit IRC02:41
*** ducttape_ has quit IRC02:45
*** krobzaur has joined #openstack-operators02:58
*** rebase has quit IRC03:14
*** bapalm has quit IRC03:15
*** kencjohnston has quit IRC03:21
*** bapalm has joined #openstack-operators03:21
*** krobzaur has quit IRC03:23
*** kencjohnston has joined #openstack-operators03:23
*** harshs has quit IRC03:27
*** csoukup has joined #openstack-operators03:32
*** dims has quit IRC03:32
*** kencjohnston has quit IRC03:37
*** gfa_ is now known as gfa03:48
*** signed8bit_ZZZzz has quit IRC03:51
*** armax has joined #openstack-operators03:54
*** lhcheng has quit IRC04:03
*** Marga_ has quit IRC04:27
*** fawadkhaliq has joined #openstack-operators04:28
*** csoukup has quit IRC04:32
*** VW has joined #openstack-operators04:43
*** VW has quit IRC04:48
*** kencjohnston has joined #openstack-operators04:52
*** lhcheng has joined #openstack-operators04:53
*** britthouser has quit IRC05:20
*** britthouser has joined #openstack-operators05:21
*** kencjohnston has quit IRC05:38
*** jkraj has joined #openstack-operators05:57
*** britthouser has quit IRC06:01
*** subscope has joined #openstack-operators06:21
*** rcernin has joined #openstack-operators06:23
*** lhcheng has quit IRC06:35
*** SimonChung1 has joined #openstack-operators06:45
*** SimonChung has quit IRC06:48
*** elemoine has joined #openstack-operators06:48
*** elemoine__ has joined #openstack-operators06:57
*** elemoine__ has left #openstack-operators07:05
*** sanjayu has joined #openstack-operators07:12
*** liverpooler has joined #openstack-operators07:27
*** elemoine has quit IRC07:27
*** elemoine has joined #openstack-operators07:43
*** zhangjn_ has quit IRC07:54
*** zhangjn has joined #openstack-operators07:56
*** belmoreira has joined #openstack-operators08:00
*** markvoelker has quit IRC08:00
*** maishsk has quit IRC08:03
*** matrohon has joined #openstack-operators08:09
*** egonzalez has joined #openstack-operators08:26
*** fawadkhaliq has quit IRC08:26
*** armax has quit IRC08:32
*** vinsh_ has joined #openstack-operators08:33
*** vinsh has quit IRC08:35
*** clayton has quit IRC08:35
*** phchoi1 has joined #openstack-operators08:42
*** clayton has joined #openstack-operators08:44
*** VW has joined #openstack-operators08:45
*** VW has quit IRC08:49
*** markvoelker has joined #openstack-operators09:01
*** markvoelker has quit IRC09:06
*** egonzalez has quit IRC09:09
*** maishsk has joined #openstack-operators09:30
*** egonzalez has joined #openstack-operators09:36
*** cbrown2_ocf has joined #openstack-operators09:37
*** elemoine has quit IRC09:44
*** elemoine_ has joined #openstack-operators09:49
*** openstackgerrit has quit IRC10:01
*** openstackgerrit has joined #openstack-operators10:02
*** maishsk has quit IRC10:04
*** subscope has quit IRC10:07
*** subscope has joined #openstack-operators10:08
*** subscope has quit IRC10:08
*** gfa is now known as gfa_10:08
*** arcimboldo has joined #openstack-operators10:12
*** fawadkhaliq has joined #openstack-operators10:14
*** openstack has joined #openstack-operators10:19
*** subscope has joined #openstack-operators10:25
*** dims has joined #openstack-operators10:45
*** logan2 has quit IRC11:01
*** logan2 has joined #openstack-operators11:01
*** markvoelker has joined #openstack-operators11:02
*** markvoelker has quit IRC11:07
*** zhangjn has quit IRC11:07
*** jmccrory has quit IRC11:20
*** jmccrory has joined #openstack-operators11:22
*** jmccrory has quit IRC11:26
*** egonzalez has quit IRC11:27
*** jmccrory has joined #openstack-operators11:30
*** zhangjn has joined #openstack-operators11:33
*** subscope has quit IRC11:39
*** subscope has joined #openstack-operators11:40
*** subscope has quit IRC11:40
*** jkraj has quit IRC12:09
*** dims has quit IRC12:16
*** markvoelker has joined #openstack-operators12:33
raginbajinHas anyone every ran into an issue where Neutron Gateway's start showing a lot of "BUG: soft lockup - CPU#0 stuck for 22s"12:37
*** markvoelker has quit IRC12:38
claytonI've seen that in other situations12:50
*** egonzalez has joined #openstack-operators12:56
*** subscope has joined #openstack-operators12:57
*** bvandenh has joined #openstack-operators13:11
*** signed8bit has joined #openstack-operators13:13
*** ducttape_ has joined #openstack-operators13:14
*** signed8bit is now known as signed8bit_ZZZzz13:16
*** liverpooler has quit IRC13:18
*** fawadkhaliq has quit IRC13:22
*** signed8bit_ZZZzz has quit IRC13:32
*** signed8bit has joined #openstack-operators13:32
*** markvoelker has joined #openstack-operators13:35
*** bvandenh has quit IRC13:36
*** ducttape_ has quit IRC13:36
*** regXboi has joined #openstack-operators13:36
*** laron has joined #openstack-operators13:37
*** VW has joined #openstack-operators13:46
*** VW has quit IRC13:47
*** ccarmack has joined #openstack-operators13:56
*** ccarmack has left #openstack-operators13:57
*** arcimboldo has quit IRC13:59
*** sanjayu has quit IRC14:02
*** ccarmack has joined #openstack-operators14:10
*** ccarmack has left #openstack-operators14:10
*** arcimboldo has joined #openstack-operators14:20
*** dims has joined #openstack-operators14:27
*** mriedem has joined #openstack-operators14:28
*** arcimboldo has quit IRC14:34
*** kencjohnston has joined #openstack-operators14:35
*** britthouser has joined #openstack-operators14:37
*** k_stev has joined #openstack-operators14:37
*** phchoi1 has quit IRC14:48
*** arcimboldo has joined #openstack-operators14:51
*** dminer has joined #openstack-operators14:51
*** k_stev has quit IRC14:55
*** kencjohnston has quit IRC14:56
*** DarthVigil has joined #openstack-operators14:59
*** kencjohnston has joined #openstack-operators14:59
*** kencjohnston has quit IRC15:00
*** kencjohnston has joined #openstack-operators15:01
*** rcernin has quit IRC15:03
*** phchoi1 has joined #openstack-operators15:05
*** ducttape_ has joined #openstack-operators15:08
*** ducttape_ has quit IRC15:09
*** ducttape_ has joined #openstack-operators15:09
*** dminer has quit IRC15:16
*** DarthVigil has quit IRC15:20
*** laron has quit IRC15:21
*** Piet has joined #openstack-operators15:25
*** k_stev has joined #openstack-operators15:25
*** ggillies has quit IRC15:29
*** dminer has joined #openstack-operators15:30
*** ggillies has joined #openstack-operators15:31
*** laron has joined #openstack-operators15:42
*** mdorman has joined #openstack-operators15:46
*** laron has quit IRC15:46
*** fawadkhaliq has joined #openstack-operators15:47
*** harshs has joined #openstack-operators15:47
*** krobzaur has joined #openstack-operators15:55
*** zul has quit IRC16:02
*** laron has joined #openstack-operators16:02
*** k_stev has quit IRC16:02
*** zul has joined #openstack-operators16:04
*** SimonChung1 has quit IRC16:10
*** csoukup has joined #openstack-operators16:12
*** elo has joined #openstack-operators16:17
*** armax has joined #openstack-operators16:18
*** fawadkhaliq has quit IRC16:19
*** fawadkhaliq has joined #openstack-operators16:20
*** subscope has quit IRC16:24
*** subscope has joined #openstack-operators16:24
*** subscope has quit IRC16:25
*** arcimboldo has quit IRC16:26
*** gfa_ is now known as gfa16:28
*** fawadkhaliq has quit IRC16:29
*** harshs has quit IRC16:33
*** ducttape_ has quit IRC16:33
*** ducttape_ has joined #openstack-operators16:34
*** subscope has joined #openstack-operators16:35
*** subscope has quit IRC16:46
*** DarthVigil has joined #openstack-operators16:49
*** alejandrito has joined #openstack-operators16:49
*** elo has quit IRC16:50
*** fawadkhaliq has joined #openstack-operators16:50
*** belmoreira has quit IRC16:51
*** jlk has quit IRC16:51
*** jlk has joined #openstack-operators16:51
*** gyee has joined #openstack-operators16:51
*** vinsh_ is now known as Vinsh16:51
*** jlk has quit IRC16:51
*** jlk has joined #openstack-operators16:51
*** krobzaur has quit IRC16:56
*** elo has joined #openstack-operators17:07
*** alop has joined #openstack-operators17:12
*** laron has quit IRC17:13
*** krobzaur has joined #openstack-operators17:14
*** elo has quit IRC17:18
*** elo has joined #openstack-operators17:18
*** SimonChung has joined #openstack-operators17:20
*** laron has joined #openstack-operators17:21
*** mdorman has quit IRC17:21
*** mdorman has joined #openstack-operators17:25
*** dims has quit IRC17:36
*** matrohon has quit IRC17:43
*** egonzalez has quit IRC17:44
*** DarthVigil has quit IRC17:48
*** krobzaur has quit IRC17:48
*** krobzaur has joined #openstack-operators17:57
*** dims has joined #openstack-operators18:06
*** lhcheng has joined #openstack-operators18:06
*** phchoi1 has quit IRC18:07
*** lhcheng_ has joined #openstack-operators18:08
*** harshs has joined #openstack-operators18:09
*** lhcheng has quit IRC18:11
*** armax has quit IRC18:14
*** gyee has quit IRC18:20
*** dims has quit IRC18:26
*** ducttape_ has quit IRC18:33
*** ducttape_ has joined #openstack-operators18:34
*** stanchan has joined #openstack-operators18:35
*** lhcheng_ has quit IRC18:41
*** VW has joined #openstack-operators18:48
*** david-lyle has quit IRC18:48
*** phchoi1 has joined #openstack-operators18:48
*** VW has quit IRC18:52
*** dims has joined #openstack-operators18:52
*** fawadkhaliq has quit IRC18:54
*** ducttape_ has quit IRC18:57
*** VW has joined #openstack-operators18:58
*** VW has quit IRC18:59
*** VW has joined #openstack-operators19:00
*** armax has joined #openstack-operators19:01
xavpaiceuh, yep... followed by a watchdog timeout and the box crashing19:02
xavpaiceraginbajin: ^^19:03
*** ducttape_ has joined #openstack-operators19:06
*** cbrown2_ocf has quit IRC19:08
*** gfa is now known as gfa_19:14
*** mriedem has quit IRC19:19
*** lhcheng has joined #openstack-operators19:22
*** VW has quit IRC19:28
*** electrofelix has quit IRC19:29
*** mriedem has joined #openstack-operators19:31
*** Piet has quit IRC19:31
*** krobzaur has quit IRC19:34
*** dims has quit IRC19:36
*** david-lyle has joined #openstack-operators19:43
*** elo has quit IRC19:46
*** openstackgerrit has quit IRC19:46
*** openstackgerrit has joined #openstack-operators19:47
*** elo has joined #openstack-operators19:57
*** elo has quit IRC19:57
*** laron_ has joined #openstack-operators19:57
*** maishsk has joined #openstack-operators19:58
*** laron_ has quit IRC19:59
*** laron has quit IRC19:59
*** laron has joined #openstack-operators20:02
*** maishsk_ has joined #openstack-operators20:11
*** laron has quit IRC20:12
*** krobzaur has joined #openstack-operators20:12
*** maishsk has quit IRC20:14
*** maishsk_ is now known as maishsk20:14
*** Piet has joined #openstack-operators20:17
*** cbrown2_ocf has joined #openstack-operators20:23
*** Piet has quit IRC20:24
*** elo has joined #openstack-operators20:25
*** rebase has joined #openstack-operators20:29
*** rebase has quit IRC20:31
*** elo has quit IRC20:31
*** elo has joined #openstack-operators20:31
*** britthouser has quit IRC20:37
*** britthouser_ has joined #openstack-operators20:37
*** britthouser_ is now known as britthouser20:41
*** harshs has quit IRC20:43
*** elo has quit IRC20:44
*** elo has joined #openstack-operators20:48
*** harshs has joined #openstack-operators20:50
*** B_Smith__ has quit IRC20:54
*** maishsk has quit IRC20:55
*** maishsk has joined #openstack-operators20:56
*** B_Smith_ has joined #openstack-operators20:56
*** armax has quit IRC21:00
*** Piet has joined #openstack-operators21:13
*** krobzaur has quit IRC21:23
darrenchi everyone, the ops guide meeting will start in 8 minutes in #openstack-meeting-321:23
*** maishsk has quit IRC21:24
*** ducttape_ has quit IRC21:31
*** tpeoples has joined #openstack-operators21:32
*** maishsk has joined #openstack-operators21:34
mriedemj^2: which is the operators meeting in http://eavesdrop.openstack.org/ ?21:44
mriedemlike general ops21:45
j^2mriedem: one sec21:45
j^2mriedem: http://eavesdrop.openstack.org/#OpenStack_OSOps/Monitoring_and_Tools_Working_Group we've absorbed this one21:45
mriedemah21:47
j^2mriedem: how can i help?21:47
mriedemmetacloud guys aren't even here!21:47
mriedemj^2: nic from metacloud was asking when that meeting was21:49
mriedemi have an agenda item for next time21:49
mriedemprereading: http://lists.openstack.org/pipermail/openstack-dev/2015-November/079778.html21:49
j^2mriedem: nice, we have a posted agenda now, so please don't hesitate to put things on it21:50
mriedemwhere is the agenda?21:50
mriedemit's not in that link21:50
j^2https://wiki.openstack.org/wiki/Osops21:51
j^2it's on that page, i guess i need to update that post, my bad21:51
j^2https://wiki.openstack.org/wiki/Osops/Osops-agenda21:51
mriedemcool, thanks21:52
j^2and it sends you to an etherpad, I've found more success with etherpad then wiki pages for agendas21:52
*** harshs has quit IRC21:54
*** ducttape_ has joined #openstack-operators21:55
mriedemok, i noticed the agenda was crickets21:57
j^2yeah it was just created yesterday ;)21:58
j^2hey, we're trying to get things in shape, baby steps21:58
mriedemi saw the ML thread21:58
j^2i posted about it on the ML :)21:58
j^2yeah21:58
mriedem'we're terrible, let's do better!'21:58
j^2mriedem: in a way, fuck yes.21:58
mriedemalways a good iea21:58
mriedem*idea21:58
j^2raginbajin: those notes? *poke* *poke*21:58
j^2mriedem: i have faith that we can do better, make it a operators community that the foundation can acknologe, then we can all get ATC and then we can enjoy the same privs that devs do21:59
j^2I'm going to make this happen come hell or high water22:00
j^2even if yall still don't like chef ;)22:00
raginbajinj^2 Yes Yes Yes.. Sorry. Just been a tad busy and hopefully should be able to put them together tonight and send them out tonight or in the morning.22:00
*** harshs has joined #openstack-operators22:00
*** ctrath has joined #openstack-operators22:00
j^2raginbajin: rock on, i'll keep ontop of you for em ;)22:00
raginbajinj^2 That's be great.. Attention Span is **stares into space**22:01
mriedemj^2: oh yes, ATC privileges, you wouldn't imagine the VIP status we get at the design summits :)22:01
mriedemthere might be like, an urn with coffee in it that's not in the marketing orgy hall22:01
j^2raginbajin: :D22:02
j^2mriedem: and that's what i'm trying to fix, we run these damn things, it's not achedemic anymore, it's time they realize that Operators have to create tools and develop fixes to make customers happy22:03
*** dims has joined #openstack-operators22:03
j^2anyway, you get what i'm trying to say, we've all said it, and i've taken the sisyphean task to wake people up22:03
j^2all i need is input, to make sure this is what _we_ want i refuse to be a dictator in this thing22:04
*** jamespd has joined #openstack-operators22:05
mriedemalright, item added https://etherpad.openstack.org/p/osops-irc-meeting-template22:05
*** kencjohnston has quit IRC22:05
*** cburgess has joined #openstack-operators22:06
j^2wrong one ;)22:07
j^2that's the template22:07
j^2the link below it is the link to the agenda for the next meeting22:08
mriedemgah22:11
j^2heh22:11
*** mdorman has quit IRC22:12
xavpaiceraginbajin: got any logs from the soft lockup issues in a paste?22:12
*** elo has quit IRC22:12
j^2https://etherpad.openstack.org/p/osops-irc-meeting-2015120222:14
*** maishsk_ has joined #openstack-operators22:14
mriedemmight want to rename that etherpad link https://wiki.openstack.org/wiki/Osops/Osops-agenda22:14
mriedemsince it says chef22:14
*** maishsk has quit IRC22:16
*** maishsk_ is now known as maishsk22:16
j^2shit, i cargo culted it ;)22:16
j^2fixed22:17
*** krobzaur has joined #openstack-operators22:26
*** elo has joined #openstack-operators22:27
*** harshs has quit IRC22:28
*** lhcheng has quit IRC22:29
*** elo has quit IRC22:31
*** lhcheng has joined #openstack-operators22:31
j^2mriedem: https://review.openstack.org/24781822:34
j^2to add to the eavesdrop.openstack.org22:34
*** harshs has joined #openstack-operators22:36
openstackgerritDavid Wahlstrom proposed openstack/osops-tools-contrib: neutron/orphaned_ports.py: initial commit  https://review.openstack.org/24782322:44
drwahl^^ that script i mentioned yesterday22:45
drwahli played with the 'listorphans.py' script, but it didn't do as thorough as a job as i would have liked22:45
drwahlthe listorphans.py script relies on the APIs being able to report "everything" correctly, which i've learned is not usually a reliable way to list "everything"22:46
drwahlusing listorphans.py, i found zero orphaned ports22:46
drwahlusing my script, i found 2 orphaned ports (in our cluster)22:47
*** mriedem has quit IRC22:53
balajindrwahl: modify and PR please22:55
balajinshould we need a complete new script?22:55
drwahlthey are radically different approaches...22:56
drwahlone is asking the openstack APIs for what they know and determining what is orphaned from that22:57
drwahlmine is asking the database what is knows and comparing outputs22:57
drwahlmine isn't even touching the APIs. it's all just db queries22:57
drwahli mean, i guess i could try to update listorphans.py, but it seems like a *completely* different code path22:58
drwahlthere would be almost nothing shared22:58
*** regXboi has quit IRC22:59
*** lhcheng has quit IRC23:00
*** mdorman has joined #openstack-operators23:01
*** krobzaur has quit IRC23:01
*** csoukup has quit IRC23:02
*** k_stev has joined #openstack-operators23:06
*** stanchan has quit IRC23:08
*** ctrath has quit IRC23:10
*** logan2 has quit IRC23:10
*** logan2 has joined #openstack-operators23:10
*** alejandrito has quit IRC23:11
*** lhcheng has joined #openstack-operators23:13
*** alop has quit IRC23:15
*** ctrath has joined #openstack-operators23:15
*** sanjayu has joined #openstack-operators23:16
*** k_stev has quit IRC23:19
*** alop has joined #openstack-operators23:20
*** dims_ has joined #openstack-operators23:22
*** ducttape_ has quit IRC23:24
*** dims has quit IRC23:24
*** zhangjn has quit IRC23:33
*** darrenc is now known as darrenc_afk23:33
*** zhangjn has joined #openstack-operators23:38
*** zhangjn has quit IRC23:38
*** zhangjn has joined #openstack-operators23:39
*** zhangjn has quit IRC23:39
*** dminer has quit IRC23:40
*** zhangjn has joined #openstack-operators23:40
*** mdorman has quit IRC23:41
*** k_stev has joined #openstack-operators23:42
*** gfa_ is now known as gfa23:53
*** darrenc_afk is now known as darrenc23:56
*** alop_ has joined #openstack-operators23:59
*** alop has quit IRC23:59
*** alop_ is now known as alop23:59

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