]> xenbits.xensource.com Git - people/royger/osstest.git/commitdiff
sg-report-host-history: Reduce limit from 2000 to 200
authorIan Jackson <ian.jackson@eu.citrix.com>
Wed, 6 Nov 2019 16:49:36 +0000 (16:49 +0000)
committerIan Jackson <ian.jackson@eu.citrix.com>
Wed, 6 Nov 2019 16:49:36 +0000 (16:49 +0000)
Currently the "sg-report-host-history" part of most flights is taking
an inordinate amount of time.  Hours.  These are serialised and this
is a big problem, seriously impeding throughput.

Reducing this limit by a factor of 10 will reduce the available
history when we are looking at host-specific problems.  It is an
emergency fix.

I am working on an arrangement which will avoid having to rescan all
of history each time and which will instead reuse previous output.

CC: Jürgen Groß <jgross@suse.com>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
sg-report-host-history

index 18b538e91ed0f7ed6307c1b73cc0af6d09a4b12c..bd7391e05b91299379801b371a5563054713a236 100755 (executable)
@@ -28,7 +28,7 @@ use POSIX;
 
 use Osstest::Executive qw(:DEFAULT :colours);
 
-our $limit= 2000;
+our $limit= 200;
 our $flightlimit;
 our $htmlout = ".";
 our @blessings;