File tree Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Expand file tree Collapse file tree 4 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -504,7 +504,6 @@ def get_default_system_parameters(
504504 "persist_rollup_fallback_threshold_ms" ,
505505 "persist_gc_fallback_threshold_ms" ,
506506 "persist_compaction_minimum_timeout" ,
507- "persist_compaction_use_most_recent_schema" ,
508507 "persist_compaction_check_process_flag" ,
509508 "balancerd_sigterm_connection_wait" ,
510509 "balancerd_sigterm_listen_wait" ,
Original file line number Diff line number Diff line change @@ -1426,7 +1426,6 @@ def __init__(
14261426 "persist_gc_min_versions" ,
14271427 "persist_gc_max_versions" ,
14281428 "persist_compaction_minimum_timeout" ,
1429- "persist_compaction_use_most_recent_schema" ,
14301429 "persist_compaction_check_process_flag" ,
14311430 "balancerd_sigterm_connection_wait" ,
14321431 "balancerd_sigterm_listen_wait" ,
Original file line number Diff line number Diff line change @@ -322,7 +322,6 @@ pub fn all_dyncfgs(configs: ConfigSet) -> ConfigSet {
322322 . add ( & crate :: internal:: cache:: BLOB_CACHE_SCALE_WITH_THREADS )
323323 . add ( & crate :: internal:: cache:: BLOB_CACHE_SCALE_FACTOR_BYTES )
324324 . add ( & crate :: internal:: compact:: COMPACTION_MINIMUM_TIMEOUT )
325- . add ( & crate :: internal:: compact:: COMPACTION_USE_MOST_RECENT_SCHEMA )
326325 . add ( & crate :: internal:: compact:: COMPACTION_CHECK_PROCESS_FLAG )
327326 . add ( & crate :: internal:: machine:: CLAIM_UNCLAIMED_COMPACTIONS )
328327 . add ( & crate :: internal:: machine:: CLAIM_COMPACTION_PERCENT )
Original file line number Diff line number Diff line change @@ -147,15 +147,6 @@ pub(crate) const COMPACTION_MINIMUM_TIMEOUT: Config<Duration> = Config::new(
147147 before timing it out (Materialize).",
148148) ;
149149
150- pub ( crate ) const COMPACTION_USE_MOST_RECENT_SCHEMA : Config < bool > = Config :: new (
151- "persist_compaction_use_most_recent_schema" ,
152- true ,
153- "\
154- Use the most recent schema from all the Runs that are currently being \
155- compacted, instead of the schema on the current write handle (Materialize).
156- " ,
157- ) ;
158-
159150pub ( crate ) const COMPACTION_CHECK_PROCESS_FLAG : Config < bool > = Config :: new (
160151 "persist_compaction_check_process_flag" ,
161152 true ,
You can’t perform that action at this time.
0 commit comments