Skip to content

Commit

Permalink
config: adjust the default settings for mem cache and disk cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiKaiWi committed Dec 7, 2022
1 parent 556fbfd commit 9fe42b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytic_engine/src/storage_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ impl Default for StorageOptions {

StorageOptions {
mem_cache_capacity: ReadableSize::mb(512),
mem_cache_partition_bits: 1,
mem_cache_partition_bits: 6,
disk_cache_path: root_path.clone(),
disk_cache_capacity: ReadableSize::gb(5),
disk_cache_capacity: ReadableSize::gb(0),
disk_cache_page_size: ReadableSize::mb(2),
object_store: ObjectStoreOptions::Local(LocalOptions {
data_path: root_path,
Expand Down

0 comments on commit 9fe42b8

Please sign in to comment.