[Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread alcc
> ... strace-ing child process shows nothing... > > strace -v -p 11957 > Process 11957 attached - interrupt to quit > > > Will watch this for some time now - but so far (~30 minutes) didn't see > anything going on. > > Any other idea about how to find out what process 11957 actually is doing?

[Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-02 Thread alcc
> rpm -qa | egrep "puppet|ruby" rubygem-rake-0.8.7-2.1.el6.noarch ruby-mysql-2.8.2-1.el6.x86_64 libselinux-ruby-2.0.94-5.3.el6.x86_64 puppet-3.0.2-1.el6.noarch puppet-dashboard-1.2.16-1.el6.noarch ruby-1.8.7.352-7.el6_2.x86_64 ruby-irb-1.8.7.352-7.el6_2.x86_64 rubygems-1.3.7-1.el6.noarch ruby-augea

[Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread alcc
When having more than one process... > ps faux | grep "puppet master" | grep -v grep puppet5100 92.0 2.7 427180 329728 ? Rsl 09:22 119:27 /usr/bin/ruby /usr/bin/puppet master puppet 11957 99.9 1.6 300168 200224 ? R10:07 83:53 \_ /usr/bin/ruby /usr/bin/puppet master

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread R.I.Pienaar
- Original Message - > From: a...@gmx.de > To: puppet-users@googlegroups.com > Sent: Thursday, January 3, 2013 10:36:35 AM > Subject: [Puppet Users] Re: puppet master keeps spawning new child processes > > When having more than one process... > > > ps faux |

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread alcc
Am Donnerstag, 3. Januar 2013 11:41:21 UTC+1 schrieb R.I. Pienaar: > > > > - Original Message - > > From: al...@gmx.de > > To: puppet...@googlegroups.com > > Sent: Thursday, January 3, 2013 10:36:35 AM > > Subject: [Puppet Users] Re: pu

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread alcc
After monitoring the "Father" process a bit more I realized that it often happens that new processes are created - usually they don't live long. > strace -f -v -p 5100 -o /tmp/strace.5100.log Process 5100 attached with 2 threads - interrupt to quit Process 18702 detached Process 19996 attached Pr

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread Brian Lalor
On Jan 3, 2013, at 5:39 AM, a...@gmx.de wrote: > Any other idea about how to find out what process 11957 actually is doing? There's another flag to strace, -f, if I recall correctly, that will follow forks of children. -- You received this message because you are subscribed to the Google Grou

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-03 Thread alcc
> There's another flag to strace, -f, if I recall correctly, that will > follow forks of children. > straced father process (pid 14850) using -f, caught the moment when a process was spawned that didn't go away and stayed at 100% cpu load (pid 18915). It's a lot output so I grep'ed for child

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-04 Thread alcc
Disabling puppet dashboard helped - 12 hours without any "frozen" 100% child process. Now investigating if it's dashboard's external node command. > -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To view this discussion on the web visit http

Re: [Puppet Users] Re: puppet master keeps spawning new child processes

2013-01-07 Thread alcc
Am Freitag, 4. Januar 2013 13:17:46 UTC+1 schrieb al...@gmx.de: > Disabling puppet dashboard helped - 12 hours without any "frozen" 100% > child process. Now investigating if it's dashboard's external node command. Commenting out ENC-related lines in puppet.conf fixed this. Calling the externa