[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] logging >> RaQ3i's
- Subject: RE: [cobalt-users] logging >> RaQ3i's
- From: "Lyle Scheer" <lyle@xxxxxxxxxx>
- Date: Mon Sep 25 12:35:04 2000
> Cobalt's implimentation of logging has seemed pretty week to
> me -- from my
> beginner's perspective anyways. Why not
> log to seperate files for each site?
We used to, but Apache opens up a file descriptor for every open log file.
Add to that that Linux has a 256 file descriptor limit per process, and
suddenly you are limited to about 50 or so virtual sites. As we had
customers who wanted to do a couple hundred or more, we got lots of
complaints. So, the way we chose to fix it was to log to a single file and
split it out in a later process before doing our own log analysis.
- Lyle