Add a default max-memory value to the indexer

This commit is contained in:
Clément Renault 2020-09-23 11:54:41 +02:00
parent 1f6e00878d
commit b597a92487
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

View File

@ -86,8 +86,8 @@ struct IndexerOpt {
max_nb_chunks: Option<usize>, max_nb_chunks: Option<usize>,
/// MTBL max memory in bytes. /// MTBL max memory in bytes.
#[structopt(long)] #[structopt(long, default_value = "1610612736")] // 1.5 GB
max_memory: Option<usize>, max_memory: usize,
/// Size of the ARC cache when indexing. /// Size of the ARC cache when indexing.
#[structopt(long, default_value = "43690")] #[structopt(long, default_value = "43690")]
@ -613,7 +613,7 @@ fn main() -> anyhow::Result<()> {
Store::new( Store::new(
arc_cache_size, arc_cache_size,
max_nb_chunks, max_nb_chunks,
max_memory, Some(max_memory),
chunk_compression_type, chunk_compression_type,
chunk_compression_level, chunk_compression_level,
).index_csv(rdr, i, num_threads) ).index_csv(rdr, i, num_threads)