Skip to content

Commit

Permalink
Reduce archive file size for fast startup (MystenLabs#12884)
Browse files Browse the repository at this point in the history
## Description 

Reducing the max file size to 256 MB so we can have fast startup time
when reading archive. Otherwise sometimes files could get large enough
that it takes a while to download them.
  • Loading branch information
sadhansood authored Jul 7, 2023
1 parent 2dfd307 commit c641137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sui-node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ impl SuiNode {
FileCompression::Zstd,
StorageFormat::Blob,
Duration::from_secs(600),
1024 * 1024 * 1024,
256 * 1024 * 1024,
&prometheus_registry,
)
.await?;
Expand Down

0 comments on commit c641137

Please sign in to comment.