pub struct ConfigValueGroup {
pub target_size: u64,
pub max_target_size: u64,
pub cache_size_limit: ByteSize,
pub chunk_index_table_max_size: usize,
pub cache_subdir: String,
}Expand description
ConfigValueGroup struct containing all configurable values
Fields§
§target_size: u64The target shard size in bytes.
The default value is 67108864.
Use the environment variable HF_XET_SHARD_TARGET_SIZE to set this value.
max_target_size: u64Maximum shard size; small shards are aggregated until they are at most this.
The default value is 67108864.
Use the environment variable HF_XET_SHARD_MAX_TARGET_SIZE to set this value.
cache_size_limit: ByteSizeThe (soft) maximum size in bytes of the shard cache. Default is 16 GB.
As a rough calculation, a cache of size X will allow for dedup against data of size 1000 * X. The default would allow a 16 TB repo to be deduped effectively.
Note the cache is pruned to below this value at the beginning of a session, but during a single session new shards may be added such that this limit is exceeded.
The default value is 16gb.
Use the environment variable HF_XET_SHARD_CACHE_SIZE_LIMIT to set this value.
chunk_index_table_max_size: usizeThe maximum size of the chunk index table that’s stored in memory. After this, no new chunks are loaded for deduplication.
The default value is 67108864.
Use the environment variable HF_XET_SHARD_CHUNK_INDEX_TABLE_MAX_SIZE to set this value.
cache_subdir: StringSubdirectory name for shard cache within the endpoint cache directory.
The default value is “shard-cache”.
Use the environment variable HF_XET_SHARD_CACHE_SUBDIR to set this value.
Implementations§
Source§impl ConfigValueGroup
impl ConfigValueGroup
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new instance with default values only (no environment variable overrides).
Sourcepub fn apply_env_overrides(&mut self)
pub fn apply_env_overrides(&mut self)
Apply environment variable overrides to this configuration group.
The group name is derived from the module path. For example, in module xet_config::groups::data,
the env var for TEST_INT would be HF_XET_DATA_TEST_INT.
Sourcepub fn field_names() -> &'static [&'static str]
pub fn field_names() -> &'static [&'static str]
Returns the list of field names in this configuration group.
Trait Implementations§
Source§impl AsRef<ConfigValueGroup> for ConfigValueGroup
impl AsRef<ConfigValueGroup> for ConfigValueGroup
Source§fn as_ref(&self) -> &ConfigValueGroup
fn as_ref(&self) -> &ConfigValueGroup
Source§impl Clone for ConfigValueGroup
impl Clone for ConfigValueGroup
Source§fn clone(&self) -> ConfigValueGroup
fn clone(&self) -> ConfigValueGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more