Skip to content

Commit cb10eef

Browse files
committed
api: fix /eval/X/builds requiring 5*len(builds)+1 SQL queries
Prefetch related tables that get fetched as part of serialization to JSON. Drop the `jobsetevals` field since making it efficient is trickier (due to not using DBIx native relationships but instead a many_to_many through a custom table). There is likely a way we could keep it and make it efficient, but I'm not fluent enough in DBIx to know.
1 parent 02e453f commit cb10eef

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

src/lib/Hydra/Controller/JobsetEval.pm

+3-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ sub store_paths : Chained('evalChain') PathPart('store-paths') Args(0) {
188188
# Return full info about all the builds in this evaluation.
189189
sub all_builds : Chained('evalChain') PathPart('builds') Args(0) {
190190
my ($self, $c) = @_;
191-
my @builds = $c->stash->{eval}->builds;
191+
my @builds = $c->stash->{eval}->builds
192+
->search({},
193+
{ prefetch => ['jobset', 'buildoutputs', 'buildproducts', 'buildmetrics'] });
192194
$self->status_ok(
193195
$c,
194196
entity => [@builds],

src/lib/Hydra/Schema/Result/Builds.pm

+2-8
Original file line numberDiff line numberDiff line change
@@ -568,27 +568,21 @@ makeQueries('ForJobName', "and jobset_id = (select id from jobsets j where j.nam
568568
sub as_json {
569569
my ($self) = @_;
570570

571-
# After #1093 merges this can become $self->jobset;
572-
# However, with ->jobset being a column on master
573-
# it seems DBIX gets a it confused.
574-
my ($jobset) = $self->search_related('jobset')->first;
575-
576571
my $json = {
577572
id => $self->get_column('id'),
578573
finished => $self->get_column('finished'),
579574
timestamp => $self->get_column('timestamp'),
580575
starttime => $self->get_column('starttime'),
581576
stoptime => $self->get_column('stoptime'),
582-
project => $jobset->get_column('project'),
583-
jobset => $jobset->name,
577+
project => $self->jobset->get_column('project'),
578+
jobset => $self->jobset->get_column('name'),
584579
job => $self->get_column('job'),
585580
nixname => $self->get_column('nixname'),
586581
system => $self->get_column('system'),
587582
priority => $self->get_column('priority'),
588583
buildstatus => $self->get_column('buildstatus'),
589584
releasename => $self->get_column('releasename'),
590585
drvpath => $self->get_column('drvpath'),
591-
jobsetevals => [ map { $_->id } $self->jobsetevals ],
592586
buildoutputs => { map { $_->name => $_ } $self->buildoutputs },
593587
buildproducts => { map { $_->productnr => $_ } $self->buildproducts },
594588
buildmetrics => { map { $_->name => $_ } $self->buildmetrics },

t/Hydra/Controller/Build/api.t

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ subtest "validating the JSON representation of a build" => sub {
6767
finished => 1,
6868
id => $aggregateBuild->id,
6969
job => "aggregate",
70-
jobsetevals => [ $aggregateBuild->jobsetevals->first->id ],
7170
nixname => "aggregate",
7271
priority => 100,
7372
releasename => undef,

0 commit comments

Comments
 (0)