We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuration
Two major file caches in DB are
And the write cache is marked as "experimental", which should be stable now. This ticket proposes to change all file-related cache configurations to
storage.cache_path
data_home
storage.cache_capacity
storage.read_cache_capacity
storage.write_cache_capacity
Two optional cache capacities are for advanced users who want to fine-tune their cache usage. Capacity set to 0 stands for disabling the cache.
0
This requires a code refactor to extract the write cache from mito engine.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What type of enhancement is this?
Configuration
What does the enhancement do?
Two major file caches in DB are
And the write cache is marked as "experimental", which should be stable now. This ticket proposes to change all file-related cache configurations to
storage.cache_path
, default todata_home
storage.cache_capacity
, default 10GB. Includes both write cache and read cache.storage.read_cache_capacity
which will overridestorage.cache_capacity
storage.write_cache_capacity
which will overridestorage.cache_capacity
Two optional cache capacities are for advanced users who want to fine-tune their cache usage. Capacity set to
0
stands for disabling the cache.Implementation challenges
This requires a code refactor to extract the write cache from mito engine.
The text was updated successfully, but these errors were encountered: