I run a cronjob nightly to clean out my replay dir, I keep all replay files for 8 days because disk space is not an issue for me. I use a rotating ~2.2GB over ~60k files.
As for bandwidth, the server uses about 50GB a month for just the /fastdl/replays directory, the server also serves as the FastDL server for the box and averages 0.95 Mbps on 95th percentile. Serving a 24 slot server. --------------------------------------------- dir="/var/www/fastdl/replays/" find $dir -name "*.dmx" -type f -mtime 8 -delete find $dir -name "*.block" -type f -mtime 8 -delete --------------------------------------------- On Thu, Aug 4, 2011 at 5:31 PM, msleeper <[email protected]>wrote: > If you're running linux, setup a cronjob that deletes files older than > X days once a day or something. Quick, easy and painless. > > find /path/to/your/replay/directory -type f -mtime +3 |xargs rm > > On Thu, Aug 4, 2011 at 5:28 PM, IBIS Customer Service > <[email protected]> wrote: > > I have my servers set for constant demo recording. There is a sm plugin > that > > cleans out the files automatically at a preconfigured time. I have never > had > > issues with it. As for crashing ur ftp client try filezilla > > > > _______________________________________________ > > To unsubscribe, edit your list preferences, or view the list archives, > > please visit: > > http://list.valvesoftware.com/mailman/listinfo/hlds > > > > > > _______________________________________________ > To unsubscribe, edit your list preferences, or view the list archives, > please visit: > http://list.valvesoftware.com/mailman/listinfo/hlds >
_______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds

