0
Aldar
4y

So... I've been thinking, I tend to default to LVM when trying to create easy-to-manage disk partitions, or when I want to backup a database without long lockings during a dump... Though, now... I got thinking.

What do you guys think, which is better in terms of functionality: BtrFS or LVM?

I know BtrFS offers such thing like full snapshots that allow to easily transfer just the increment over the snapshot origin off to a remote server for archival, but I never fully grew to trust btrfs as a server filesystem... Its...

Younger, and not as widespread, not to mention I don't know any performance statistics to recommend its use for this or that case (Like... Would a high-load database engine stutter flushing all those changes on disk while reading / writing temp tables and such)

Comments
  • 1
    Btrfs and LVM don't contradict each other...
  • 0
    Hehe you said "easier to manage" and "LVM" in the same sentence, i got the joke
  • 1
    @Aldar

    Backup a database using LVM only seems like a __bad__ idea.

    BTRFS is afaik CoW. As such - usage > 80 % - performance bye bye.

    I think BTRFS has become better, at least when you don't use RAID mode.

    I'd choose LVM over BTRFS - simply because LVM isn't a filesystem.

    I dislike complex filesystems for a simple reason: because they're complex.

    There are myriads of combinations which might lead to problems - mostly bound to specific kernel versions.

    I don't hate ZFS or BTRFS - but I wouldn't run a database on it.

    Coming back to first statement: using only LVM / FS snapshots is a bad idea... Since there are running transactions and you end up with an unclean backup in most cases.

    Most databases provide an backup / read lock, when used in tandem you can be sure that the backup is clean.

    Another reason I'd stay away from CoW filesystems is the fragmentation issue and possible lock contention.

    LVM might be slower (depending on configuration/type) than BTRFS, but you'll have fewer nightmares and especially less maintenance work.
  • 0
    @IntrusionCM I simplified just so that I did not have to describe it all. Yes, I am aware that a simple snapshot and of a running DB is a terrible idea and the days would never be consistent.

    When doing such backup, I flush all tables with a readlock, then create the snapshot and release the lock. That way data is always consistent.

    And finally mount the snapshot and back its contents up, then remove it, keeping the snapshot around would just lead into it filling up and invalidating.
  • 0
    @nitwhiz and? I never found LVM difficult to manage. Maybe I never had to do anything complex, sure, but volume management, snapshotting, partitioning and such... Its... Simple, really. Mind elaborating?
  • 0
    @sbiewald never said that they do. Just feel that... Its a tad pointless to learn both when in the end, one would end up using the same set of features. Its better to learn using one more over the other.
Add Comment