Skip to content
Merged
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
3 changes: 3 additions & 0 deletions misc/python/materialize/parallel_workload/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -6249,6 +6249,9 @@ def errors_to_ignore(self, exe: Executor) -> list[str]:
'is not allowed from the "mz_catalog_server" cluster',
# Scanning persist part stats can outrun statement_timeout.
"canceling statement due to statement timeout",
# Under real-time recency the EXPLAIN waits for the source
# like a SELECT does, and can hit the RTR timeout (SS-303).
"timed out before ingesting the source's visible frontier when real-time-recency query issued",
]
)
if exe.db.complexity == Complexity.DDL:
Expand Down
Loading