From 94c7e9fb49e9dc01dd405073c03697fd7f0b4c32 Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Thu, 20 Sep 2018 10:40:16 -0700 Subject: [PATCH] Contrain query to prevent e-r from OOMing The previous 1793364 query matched tripleo's error.txt file in which they grep and store all the errors found during a job run. Unfortunately the number and size of these results was such that the e-r processes would OOM trying to process them. Adjust the query to look only at the job-output.txt files to fix this. Change-Id: I82a6a9cb6a442fe39c0ec5faa31599c7c4fc5134 --- queries/1793364.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/queries/1793364.yaml b/queries/1793364.yaml index 27ce1eaa..5017b0e7 100644 --- a/queries/1793364.yaml +++ b/queries/1793364.yaml @@ -1,2 +1,2 @@ query: >- - message:" connection.scalar(select([1]))'" AND tags:"console" + message:" connection.scalar(select([1]))'" AND filename:"job-output.txt"