Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -515,15 +515,18 @@ def print_stats(
# attempt when it is rare and the run is DDL-heavy, e.g. SwapSchema), and
# the replacement lifecycle refusing a second or a sealed replacement
# (ReplaceMaterializedView, whose replacements pile up unfinalized in the
# workload). Tracked separately so such actions don't trip the
# broken-action assertion below.
# workload). "unknown cluster 'dont_exist'" comes from FlipFlags setting the
# default cluster to a nonexistent one to hunt for panics, so any action
# needing a cluster fails with it while that flag is live. Tracked
# separately so such actions don't trip the broken-action assertion below.
noise = {
"must be owner of",
"permission denied for",
"still depended upon by",
"another session modified the catalog while this DDL transaction was open",
"because it already has a replacement",
"is sealed and thus cannot be replaced",
"unknown cluster 'dont_exist'",
}
if scenario == Scenario.Rename:
# Concurrent renames invalidate the qualified names an action captured
Expand Down
1 change: 1 addition & 0 deletions test/launchdarkly-flag-consistency/mzcompose.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,6 +538,7 @@
KNOWN_CROSS_ENV_DIVERGENCES: set[str] = set("""
allow_real_time_recency
allowed_cluster_replica_sizes
column_paged_batcher_budget_fraction

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@DAlperin I assume this is expected: column_paged_batcher_budget_fraction: production=0.01, staging=0.85

compute_dataflow_max_inflight_bytes
compute_peek_response_stash_threshold_bytes
compute_subscribe_snapshot_optimization
Expand Down
Loading