mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 12:27:13 +02:00
Increase the disk usage limit
This commit is contained in:
parent
1e1f0fcaf5
commit
8c140f6bcd
1 changed files with 2 additions and 2 deletions
|
@ -141,13 +141,13 @@ impl Database {
|
|||
|
||||
fs::create_dir_all(&main_path)?;
|
||||
let env = heed::EnvOpenOptions::new()
|
||||
.map_size(10 * 1024 * 1024 * 1024) // 10GB
|
||||
.map_size(100 * 1024 * 1024 * 1024) // 100GB
|
||||
.max_dbs(3000)
|
||||
.open(main_path)?;
|
||||
|
||||
fs::create_dir_all(&update_path)?;
|
||||
let update_env = heed::EnvOpenOptions::new()
|
||||
.map_size(10 * 1024 * 1024 * 1024) // 10GB
|
||||
.map_size(100 * 1024 * 1024 * 1024) // 100GB
|
||||
.max_dbs(3000)
|
||||
.open(update_path)?;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue