Expand description
This module defines utilities to work with system parameters ([PbSystemParams
] in
meta.proto
).
To add a new system parameter:
- Add a new field to [
PbSystemParams
] inmeta.proto
. - Add a new entry to
for_all_params
in this file. - Add a new method to
reader::SystemParamsReader
.
Re-exportsยง
pub use crate::system_param::adaptive_parallelism_strategy::AdaptiveParallelismStrategy;
Modulesยง
- adaptive_
parallelism_ strategy - common
- default
- Default values for all parameters.
- diff
- local_
manager - reader
Macrosยง
- def_
default ๐ - Define default value functions for those with
Some
default values. - def_
default_ ๐opt - Define default value functions returning
Option
. - def_key ๐
- Define key constants for fields in
PbSystemParams
for use of other modules. - impl_
check_ ๐missing_ fields - impl_
default_ ๐from_ other_ params - Define rules to derive a parameter from others. This is useful for parameter type change or
semantic change, where a new parameter has to be introduced. When the cluster upgrades to a
newer version, we need to ensure the effect of the new parameter is equal to its older versions.
For example, if you had
interval_sec
and now you want finer granularity, you can introduce a new paraminterval_ms
and try to derive it frominterval_sec
by overridingFromParams
trait inOverrideFromParams
: - impl_
default_ ๐validation_ on_ set - Define check rules when a field is changed.
If you want custom rules, please override the default implementation in
OverrideValidateOnSet
below. - impl_
derive_ ๐missing_ fields - impl_
is_ ๐mutable - impl_
param_ ๐value - impl_
set_ ๐system_ param - impl_
system_ ๐params_ for_ test - impl_
system_ ๐params_ from_ kv - Derive deserialization from kv pairs.
- impl_
system_ ๐params_ to_ kv - Derive serialization to kv pairs.
Structsยง
- Override
From ๐Params - Override
Validate ๐OnSet
Constantsยง
- ADAPTIVE_
PARALLELISM_ STRATEGY_ KEY - BACKUP_
STORAGE_ DIRECTORY_ KEY - BACKUP_
STORAGE_ URL_ KEY - BARRIER_
INTERVAL_ MS_ KEY - BLOCK_
SIZE_ KB_ KEY - BLOOM_
FALSE_ POSITIVE_ KEY - CHECKPOINT_
FREQUENCY_ KEY - DATA_
DIRECTORY_ KEY - ENABLE_
TRACING_ KEY - LICENSE_
KEY_ KEY - MAX_
CONCURRENT_ CREATING_ STREAMING_ JOBS_ KEY - PARALLEL_
COMPACT_ SIZE_ MB_ KEY - PAUSE_
ON_ NEXT_ BOOTSTRAP_ KEY - PER_
DATABASE_ ISOLATION_ KEY - SSTABLE_
SIZE_ MB_ KEY - STATE_
STORE_ KEY - TIME_
TRAVEL_ RETENTION_ MS_ KEY - USE_
NEW_ OBJECT_ PREFIX_ STRATEGY_ KEY
Traitsยง
- From
Params ๐ - Param
Value - The trait for the value type of a system parameter.
- Validate
OnSet ๐
Functionsยง
- check_
missing_ params - Check if any undeprecated fields are missing.
- derive_
missing_ fields - is_
mutable - set_
system_ param - Set a system parameter with the given value or default one.
- system_
params_ for_ test - system_
params_ from_ kv - Try to deserialize deprecated fields as well. Return error if there are unrecognized fields.
- system_
params_ to_ kv - The returned map only contains undeprecated fields. Return error if there are missing fields.
Type Aliasesยง
- Result ๐
- System
Params Error