Luin äsken Linux-Today sivulta jutun joka käsitteli
noatime toimintaa, jonka väitettiin tuovan merkittäviä etuja.
Käykääpäs vilkaisemassa...
http://www.howtoforge.com/reducing-disk-io-by-mounting-partitions-with-noatimeUsing noatime
In this example I want to use noatime for my root file system - /. Therefore I open /etc/fstab...
vi /etc/fstab
... and add noatime to the options of the / file system, e.g. like this:
proc /proc proc defaults 0 0
none /dev/pts devpts gid=5,mode=620 0 0
/dev/md0 /boot ext3 defaults 0 0
/dev/md1 none swap sw 0 0
/dev/md2 / ext3 defaults,noatime 0 0You don't have to reboot the system for the changes to take effect - the following command will do:
mount -o remount /
That's it. You can run
mount
to check if the partition really got mounted with noatime:
server4:/home/admin# mount
/dev/md2 on / type ext3 (rw,noatime)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/md0 on /boot type ext3 (rw)
server4:/home/admin# jne...
Kysynkin nyt alan asiantuntijoilta...
1.Oletteko kokeilleet noatime-toimintoa?
2. Onko siitä vastaavaa hyötyä ollut?
3. Missä tapauksessa tämä toiminta kannattaisi ottaa käyttöön?
Joku kommentoi noatime-toiminnon aikaansaaneen "40% suoritushyötyjä".
"I can safely say off the top of my head that performance gains are around 40% at times. (although this figure hasn´t been benchmarked thru standard benchmarkers)
I wonder if u have any experiences testing this in busy environment.