How important is it to keep size of log files down

apache-2.2debian-squeezelog-fileslogrotateperformance

I have a LAMP server where logrotate does its job once per week, and I notice some logs tend to get quite large. For example, the apache access-log is 73MB. Is it better that I tell logrotate to rotate it daily? Does size matter for the performance (cpu load) or are we talking marginal differences (daily vs weekly rotation)?

The file system is ext3.

Best Answer

I've never seen any apache webserver whose performance was affected by log file size. On some very old servers, apache would just stop working if log file reaches 2GB.

73MB is small.

Deciding to rotate webserver log file daily is convenient (readability, easier to combine with tools like awstats, ...)