Remove --max-index-size and --max-task-db-size

This commit is contained in:
Louis Dureuil 2022-12-26 11:41:31 +01:00
parent c766e06003
commit 233372abea
No known key found for this signature in database
4 changed files with 19 additions and 30 deletions

View file

@ -227,9 +227,9 @@ pub struct IndexSchedulerOptions {
pub snapshots_path: PathBuf,
/// The path to the folder containing the dumps.
pub dumps_path: PathBuf,
/// The maximum size, in bytes, of each meilisearch index.
/// The maximum size, in bytes, of the task index.
pub task_db_size: usize,
/// The maximum size, in bytes, of the tasks index.
/// The maximum size, in bytes, of each meilisearch index.
pub index_size: usize,
/// Configuration used during indexing for each meilisearch index.
pub indexer_config: IndexerConfig,