I don't know UFS, and I don't know the filesystem internals well enough to give an educated answer.
However, I experienced with all filesystems I tried a slowdown after some time.
Therefore I try to put directories with heavy read/write access into separated partitions/filesystems.
At my Linux (Gentoo) workstation there's a directory with >150000 files and around 43MB, which is updated daily. (It contains the software package information).
In order to get some more performance, I'm using a virtual filesystem kept in the memory, which is loaded and saved into a single file at the boot/shutdown process.
In your case, if performance is important, I could also think of two partitions, which are regulary copied/formatted.
Something like:
(dev/part1 mounted at /mnt/mountpoint)
mkfs /dev/part2
mount /dev/part2 /mnt/tmp
cp -a /mnt/mountpoint /mnt/tmp
umount /mnt/tmp
mount /dev/part2 /mnt/mountpoint
umount /dev/part1
That's, however, just a suggestion to start from and possibly not practicable for you, I'm really very interested how you/others solve this problem.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.