[Patchew-devel] [PATCH] testing: do not restart jobs too soon

Paolo Bonzini posted 1 patch 5 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/patchew-ci tags/patchew/20190215100422.6032-1-pbonzini@redhat.com
mods/testing.py | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
[Patchew-devel] [PATCH] testing: do not restart jobs too soon
Posted by Paolo Bonzini 5 years, 2 months ago
If two testers can run the same jobs, they compete for recently started jobs if there
is nothing else left to do.  The right thing to do would be to move timeout handling
in the server, without needing intervention from the tester, and then you would not
need to pass back RUNNING tests in _find_applicable_test.  For now, just relieve the
pressure by not passing RUNNING tests until one hour has passed from the last attempt.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 mods/testing.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/mods/testing.py b/mods/testing.py
index 66e86b1..650990e 100644
--- a/mods/testing.py
+++ b/mods/testing.py
@@ -15,6 +15,7 @@ from django.db.models import Q
 from django.urls import reverse
 from django.utils.html import format_html
 from mod import PatchewModule
+import datetime
 import time
 import math
 from api.views import APILoginRequiredView
@@ -456,8 +457,11 @@ class TestingGetView(APILoginRequiredView):
 
     def _find_applicable_test(self, queryset, user, po, tester, capabilities):
         # Prefer non-running tests, or tests that started the earliest
-        q = queryset.filter(status__in=(Result.PENDING, Result.RUNNING),
-                            name__startswith='testing.').order_by('status', 'last_update')
+        one_hour_ago = datetime.datetime.now() - datetime.timedelta(0, 3600)
+        where = Q(status=Result.PENDING)
+        where = where | Q(status=Result.RUNNING, last_update__lt=one_hour_ago)
+        where = where & Q(name__startswith='testing.')
+        q = queryset.filter(where).order_by('status', 'last_update')
         tests = _instance.get_tests(po)
         for r in q:
             if isinstance(r, MessageResult) and not r.message.git_result.is_success():
-- 
2.20.1

_______________________________________________
Patchew-devel mailing list
Patchew-devel@redhat.com
https://www.redhat.com/mailman/listinfo/patchew-devel