Skip to content

Commit

Permalink
Pipe filesystem writes in lightning-persister through BufWriter
Browse files Browse the repository at this point in the history
We generally make no effort to ensure all writes are buffered in
lower-level objects, so wrapping write calls in `BufWriter` may
substantially improve performance in some cases. This is especially
important now that we block the sample node exit until the
`NetworkGraph` has been written out, which includes many small-ish
writes.

With this change, shutdown of the sample node on a relatively
underpowered device went from 15-30 seconds of CPU time to a second
or two, plus IO sync time.
  • Loading branch information
TheBlueMatt committed Apr 3, 2022
1 parent af31831 commit 7e93fdb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions lightning-persister/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ use lightning::ln::channelmanager::ChannelManager;
use lightning::util::logger::Logger;
use lightning::util::ser::{ReadableArgs, Writeable};
use std::fs;
use std::io::{Cursor, Error};
use std::io::{Cursor, Error, Write};
use std::ops::Deref;
use std::path::{Path, PathBuf};

Expand All @@ -49,7 +49,7 @@ pub struct FilesystemPersister {
}

impl<Signer: Sign> DiskWriteable for ChannelMonitor<Signer> {
fn write_to_file(&self, writer: &mut fs::File) -> Result<(), Error> {
fn write_to_file<W: Write>(&self, writer: &mut W) -> Result<(), Error> {
self.write(writer)
}
}
Expand All @@ -62,13 +62,13 @@ where
F::Target: FeeEstimator,
L::Target: Logger,
{
fn write_to_file(&self, writer: &mut fs::File) -> Result<(), std::io::Error> {
fn write_to_file<W: Write>(&self, writer: &mut W) -> Result<(), std::io::Error> {
self.write(writer)
}
}

impl DiskWriteable for NetworkGraph {
fn write_to_file(&self, writer: &mut fs::File) -> Result<(), std::io::Error> {
fn write_to_file<W: Write>(&self, writer: &mut W) -> Result<(), std::io::Error> {
self.write(writer)
}
}
Expand Down
13 changes: 7 additions & 6 deletions lightning-persister/src/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ extern crate winapi;

use std::fs;
use std::path::{Path, PathBuf};
use std::io::{BufWriter, Write};

#[cfg(not(target_os = "windows"))]
use std::os::unix::io::AsRawFd;
Expand All @@ -14,7 +15,7 @@ use {
};

pub(crate) trait DiskWriteable {
fn write_to_file(&self, writer: &mut fs::File) -> Result<(), std::io::Error>;
fn write_to_file<W: Write>(&self, writer: &mut W) -> Result<(), std::io::Error>;
}

pub(crate) fn get_full_filepath(mut filepath: PathBuf, filename: String) -> String {
Expand Down Expand Up @@ -52,9 +53,9 @@ pub(crate) fn write_to_file<D: DiskWriteable>(path: PathBuf, filename: String, d
{
// Note that going by rust-lang/rust@d602a6b, on MacOS it is only safe to use
// rust stdlib 1.36 or higher.
let mut f = fs::File::create(&tmp_filename)?;
data.write_to_file(&mut f)?;
f.sync_all()?;
let mut buf = BufWriter::new(fs::File::create(&tmp_filename)?);
data.write_to_file(&mut buf)?;
buf.into_inner()?.sync_all()?;
}
// Fsync the parent directory on Unix.
#[cfg(not(target_os = "windows"))]
Expand Down Expand Up @@ -95,7 +96,7 @@ mod tests {

struct TestWriteable{}
impl DiskWriteable for TestWriteable {
fn write_to_file(&self, writer: &mut fs::File) -> Result<(), io::Error> {
fn write_to_file<W: Write>(&self, writer: &mut W) -> Result<(), io::Error> {
writer.write_all(&[42; 1])
}
}
Expand Down Expand Up @@ -145,7 +146,7 @@ mod tests {
fn test_diskwriteable_failure() {
struct FailingWriteable {}
impl DiskWriteable for FailingWriteable {
fn write_to_file(&self, _writer: &mut fs::File) -> Result<(), std::io::Error> {
fn write_to_file<W: Write>(&self, _writer: &mut W) -> Result<(), std::io::Error> {
Err(std::io::Error::new(std::io::ErrorKind::Other, "expected failure"))
}
}
Expand Down

0 comments on commit 7e93fdb

Please sign in to comment.