Skip to content

Commit ddd84ee

Browse files
committed
Remove the use-most-recent-schema flag
This has long been the default in every env.
1 parent d217a6c commit ddd84ee

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

misc/python/materialize/mzcompose/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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",

misc/python/materialize/parallel_workload/action.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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",

src/persist-client/src/cfg.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

src/persist-client/src/internal/compact.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff 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-
159150
pub(crate) const COMPACTION_CHECK_PROCESS_FLAG: Config<bool> = Config::new(
160151
"persist_compaction_check_process_flag",
161152
true,

0 commit comments

Comments
 (0)