[ale] Any Perl Gurus Out There?
James P. Kinney III
jkinney at localnetsolutions.com
Thu Feb 24 08:24:31 EST 2005
My question is "why spawn a child process at all?" A loop with an if
branch should keep it all local without the process overhead of spawning
children.
For that matter, tee the logfile writer to also dump to a local socket.
Have the perl process accept input from the socket and process it that
way.
If the log writer is not readily ammenable to a tee, use
tail -f <logfile> | socket
I guess it really matters most on the granularity of the timing you need
on the reporting.
On Thu, 2005-02-24 at 07:17 -0500, Jim Popovitch wrote:
> The linux kernel will clean up defunct processes when it has time (low
> priority). Most likely your loop is "too tight" and injecting some
> latency periods will help. Try adding a "sleep 2;" at the bottom of
> your loop.
>
> -Jim P.
>
> On Thu, 2005-02-24 at 06:43 -0500, Jonathan Glass wrote:
> > I've written a little Perl script to monitor a log file and alert (in
> > this case, insert the flagged data into a DB) on a certain pattern. The
> > parent process sits in an infinite loop watching the file, and whenever
> > the pattern is matched, a child process is forked to do the DB
> > insertion. Anyone know the proper way to handle the death of all these
> > child processes? If I run a 'ps -aef' on the box while the script is
> > running, I see dozens of '<defunct>' processes.
> >
> > TIA
> >
> > Jonathan Glass
> > _______________________________________________
> > Ale mailing list
> > Ale at ale.org
> > http://www.ale.org/mailman/listinfo/ale
>
> _______________________________________________
> Ale mailing list
> Ale at ale.org
> http://www.ale.org/mailman/listinfo/ale
--
James P. Kinney III \Changing the mobile computing world/
CEO & Director of Engineering \ one Linux user /
Local Net Solutions,LLC \ at a time. /
770-493-8244 \.___________________________./
http://www.localnetsolutions.com
GPG ID: 829C6CA7 James P. Kinney III (M.S. Physics)
<jkinney at localnetsolutions.com>
Fingerprint = 3C9E 6366 54FC A3FE BA4D 0659 6190 ADC3 829C 6CA7
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
More information about the Ale
mailing list