You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
r"Error: Failed to allocate additional .*? for .*? with .*? already allocated for this reservation - .*? remain available for the total '.*?' pool",
264
+
r"Error: Failed to allocate additional .*? for .*? with .*? already allocated for this reservation - .*? remain available for the total memory pool: '.*?'",
265
265
"Error: Failed to allocate ",
266
266
);
267
267
settings.add_filter(
268
-
r"Resources exhausted: Failed to allocate additional .*? for .*? with .*? already allocated for this reservation - .*? remain available for the total '.*?' pool",
268
+
r"Resources exhausted: Failed to allocate additional .*? for .*? with .*? already allocated for this reservation - .*? remain available for the total memory pool: '.*?'",
"with top memory consumers (across reservations) using 'greedy' pool as:\n AggregateStream",
90
+
"with top memory consumers (across reservations) as:\n AggregateStream",
91
91
])
92
92
.with_memory_limit(2_000)
93
93
.run()
@@ -99,7 +99,7 @@ async fn group_by_row_hash() {
99
99
TestCase::new()
100
100
.with_query("select count(*) from t GROUP BY response_bytes")
101
101
.with_expected_errors(vec![
102
-
"Resources exhausted: Additional allocation failed","with top memory consumers (across reservations) using 'greedy' pool as:\n GroupedHashAggregateStream"
.with_query("select count(*) from t GROUP BY service, host, pod, container")
114
114
.with_expected_errors(vec![
115
-
"Resources exhausted: Additional allocation failed","with top memory consumers (across reservations) using 'greedy' pool as:\n GroupedHashAggregateStream"
"select t1.* from t t1 JOIN t t2 ON t1.pod = t2.pod AND t1.time = t2.time",
225
225
)
226
226
.with_expected_errors(vec![
227
-
"Resources exhausted: Additional allocation failed","with top memory consumers (across reservations) using 'greedy' pool as:\n SymmetricHashJoinStream",
.with_query("select * from t ORDER BY a ASC NULLS LAST, b ASC NULLS LAST LIMIT 10")
244
244
.with_expected_errors(vec![
245
-
"Resources exhausted: Additional allocation failed","with top memory consumers (across reservations) using 'greedy' pool as:\n SortPreservingMergeExec",
0 commit comments