Skip to content

Commit

Permalink
speed up spørring for å hente varsler som skal sendes (#903)
Browse files Browse the repository at this point in the history
  • Loading branch information
moroministeren authored Dec 23, 2024
1 parent 1c18d57 commit 8f8c866
Showing 1 changed file with 25 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,31 @@ public List<SkalSendes> hentVarselSomSkalSendes(int maxAntall) {

return jdbcTemplate
.query("""
select ID, BRUKERNOTIFIKASJON_ID, MELDING, OPPFOLGINGSPERIODE, FOEDSELSNUMMER, TYPE, SMSTEKST, EPOSTTITTEL, EPOSTBODY, URL
from BRUKERNOTIFIKASJON B
where STATUS = 'PENDING'
and not exists(
Select * from AKTIVITET A
inner join AKTIVITET_BRUKERNOTIFIKASJON AB on A.AKTIVITET_ID = AB.AKTIVITET_ID
where AB.BRUKERNOTIFIKASJON_ID = B.ID
and A.GJELDENDE = 1
and TYPE in ('STILLING_FRA_NAV', 'FORHAANDSORENTERING')
and (A.HISTORISK_DATO is not null or A.LIVSLOPSTATUS_KODE in('FULLFORT', 'AVBRUTT'))
)
limit :limit
SELECT
B.ID,
B.BRUKERNOTIFIKASJON_ID,
B.MELDING,
B.OPPFOLGINGSPERIODE,
B.FOEDSELSNUMMER,
B.TYPE,
B.SMSTEKST,
B.EPOSTTITTEL,
B.EPOSTBODY,
B.URL
FROM
BRUKERNOTIFIKASJON B
LEFT JOIN
AKTIVITET_BRUKERNOTIFIKASJON AB ON B.ID = AB.BRUKERNOTIFIKASJON_ID
LEFT JOIN
AKTIVITET A ON A.AKTIVITET_ID = AB.AKTIVITET_ID
AND A.GJELDENDE = 1
AND B.TYPE IN ('STILLING_FRA_NAV', 'FORHAANDSORENTERING')
AND (A.HISTORISK_DATO IS NOT NULL
OR A.LIVSLOPSTATUS_KODE IN('FULLFORT', 'AVBRUTT'))
WHERE
B.STATUS = 'PENDING' AND
A.AKTIVITET_ID IS NULL
LIMIT :limit;
""",
parameterSource, rowMapper);
}
Expand Down

0 comments on commit 8f8c866

Please sign in to comment.