Skip to content

Commit d1f1911

Browse files
committed
Add debug logging
1 parent 45c59e9 commit d1f1911

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

ci/nightly/pipeline.template.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,6 +1094,18 @@ steps:
10941094
composition: platform-checks
10951095
args: [--scenario=ZeroDowntimeUpgradeEntireMzFourVersions, "--seed=$BUILDKITE_JOB_ID"]
10961096

1097+
- id: checks-0dt-upgrade-for-previous-versions-to-current
1098+
label: "Checks 0dt upgrade for previous versions to current"
1099+
depends_on: build-x86_64
1100+
timeout_in_minutes: 120
1101+
parallelism: 3
1102+
agents:
1103+
queue: hetzner-x86-64-16cpu-32gb
1104+
plugins:
1105+
- ./ci/plugins/mzcompose:
1106+
composition: platform-checks
1107+
args: [--scenario=MultiVersionZeroDowntimeBasic, "--seed=$BUILDKITE_JOB_ID"]
1108+
10971109
- id: checks-0dt-bump-version
10981110
label: "Checks 0dt upgrade to a bumped version"
10991111
depends_on: build-x86_64

misc/python/materialize/checks/scenarios_zero_downtime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,14 +373,14 @@ def actions(self) -> list[Action]:
373373
[
374374
version
375375
for version in VersionsFromDocs(respect_released_tag=True).all_versions()
376-
if version >= MzVersion.parse_mz("v0.140.0")
376+
if version >= MzVersion.parse_mz("v0.107.0")
377377
]
378378
)
379379

380380

381381
zero_downtime_basic_scenarios = [
382382
create_zero_downtime_basic(
383-
name=f"ZeroDowntimeBasic_{version}",
383+
name=f"MultiVersionZeroDowntimeBasic_{version}",
384384
base_version=version,
385385
)
386386
for version in versions_from_docs

misc/python/materialize/mzcompose/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ def get_minimal_system_parameters(
117117
"ore_overflowing_behavior": "panic",
118118
"unsafe_enable_table_keys": "true",
119119
"with_0dt_deployment_max_wait": "1800s",
120+
"log_filter": "debug",
120121
# End of list (ordered by name)
121122
}
122123

0 commit comments

Comments
 (0)