Saving Your Data Bacon with Write Barriers and Journal Check Summing

Discussion in 'all things UNIX' started by lotuseclat79, May 26, 2010.

Thread Status:
Not open for further replies.
  1. lotuseclat79

    lotuseclat79 Registered Member

    Joined:
    Jun 16, 2005
    Posts:
    5,390
  2. Mrkvonic

    Mrkvonic Linux Systems Expert

    Joined:
    May 9, 2005
    Posts:
    10,224
    I'm very wary of generic suggestions for filesystems, because they can be extremely dangerous. The worst part is, the concepts of filesystem tuning and memory tuning are pretty much voodoo. Except huge companies like Google, IBM, RedHat and such, very few players have the resources to really test the effects of these changes on a large scale.

    Another way of making sure your data is saved is by more frequent syncing. You can do that by adjusting the dirty ratio and associated tunables.

    But then, there's pdflush to take into account. By default, the kernel has two processes active and runs new threads if needed to sync all the data, but maybe you want to start with 4 or 8? And what does this mean when you work with many small files and few large ones?

    And so it goes: magic. Therefore, any unequivocal answers regarding filesystem tuning are most likely one-man wonders - and very, very dangerous for daily use, especially if you do not understand what's going on.

    Editing /etc/fstab is dangerous, beyond the mere chance of screwing up the table. What about long-term effects, performance, etc?

    Mrk
     
  3. My recipe for saving data bacon: backups. Backups backups backups. Keep your personal data backed up somewhere. And to back up your whole filesystem you can do this:

    Code:
    $ su -
    # cd /
    # tar -czvpf backup.tar.gz --exclude=tmp/* --exclude=sys/* --exclude=proc/* --exclude=backup.tar.gz /
    
    And put the resulting tarball on a CD. Next time you have to restore the filesystem, you boot from a live medium, untar (tar -xzvpf) the tarball onto your hard drive, chroot in, edit fstab for the new partition setup, reinstall GRUB... and you're done.
     
  4. steve161

    steve161 Registered Member

    Joined:
    Nov 22, 2006
    Posts:
    681
    Location:
    New York
    Man, you guys put way too much crap into this simple man's head. Don't stop.
     
  5. chronomatic

    chronomatic Registered Member

    Joined:
    Apr 9, 2009
    Posts:
    1,343
    Or you can just use BSD or Solaris and use ZFS which does all this OOTB. Or, you can wait for btrfs to finalize on Linux.
     
Thread Status:
Not open for further replies.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.