From: Eric Wong Date: Sat, 18 Sep 2021 09:33:26 +0000 (+0000) Subject: lei_mail_sync: set nodatacow on btrfs X-Git-Tag: v1.7.0~344 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=04bb05ee7f8d304757cbb016128c0aea157fc842 lei_mail_sync: set nodatacow on btrfs As with other SQLite3 databases, copy-on-write with files experiencing random writes leads to write amplification and low performance. --- diff --git a/lib/PublicInbox/LeiMailSync.pm b/lib/PublicInbox/LeiMailSync.pm index 690c6477..f185b585 100644 --- a/lib/PublicInbox/LeiMailSync.pm +++ b/lib/PublicInbox/LeiMailSync.pm @@ -14,6 +14,11 @@ sub dbh_new { my ($self, $rw) = @_; my $f = $self->{filename}; my $creat = $rw && !-s $f; + if ($creat) { + require PublicInbox::Spawn; + open my $fh, '+>>', $f or Carp::croak "open($f): $!"; + PublicInbox::Spawn::nodatacow_fd(fileno($fh)); + } my $dbh = DBI->connect("dbi:SQLite:dbname=$f",'','', { AutoCommit => 1, RaiseError => 1,