Skip to content

Commit

Permalink
Adjust the default store sizes.
Browse files Browse the repository at this point in the history
# Rust tests and lints will be skipped. Delete if not intended.
[ci skip-rust]

# Building wheels and fs_util will be skipped. Delete if not intended.
[ci skip-build-wheels]
  • Loading branch information
stuhood committed Mar 23, 2021
1 parent c5ec6a7 commit f1fb18b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/python/pants/option/global_options.py
Expand Up @@ -335,9 +335,9 @@ def from_options(cls, options: OptionValueContainer) -> LocalStoreOptions:

DEFAULT_LOCAL_STORE_OPTIONS = LocalStoreOptions(
store_dir=os.path.join(get_pants_cachedir(), "lmdb_store"),
processes_max_size_bytes=(2 * 4 * GIGABYTES),
files_max_size_bytes=(16 * 4 * GIGABYTES),
directories_max_size_bytes=(2 * 4 * GIGABYTES),
processes_max_size_bytes=(4 * GIGABYTES),
files_max_size_bytes=(128 * GIGABYTES),
directories_max_size_bytes=(4 * GIGABYTES),
)


Expand Down

0 comments on commit f1fb18b

Please sign in to comment.