Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...




Table of Contents
outlinetrue

 

Introduktion

Formål

Dette dokument er rettet mod systemadministratorer og driftspersoner, som skal kunne håndtere driftsmæssige aspekter af programmet.

Driftsvejledningen indeholder information om Registry Deletion Job (RegJob) XDSCleanup komponenten med hensyn til eksterne afhængigheder, standard placering af output- og konfigurations-filerafvikling, konfiguration og overvågning.

Læsevejledning

Læseren forventes at have kendskab til drifts-setuppet vedr. XDS Registry og det tilhørende XDB repository.

Dokumenthistorik

9
24.01.2018

Version

Dato

Ansvarlig

Beskrivelse

0.809.01.20181

28-02-2022

KvalitetsIT

Initiel udgave

0.

2

10-10-2022

KvalitetsIT

smårettelser mht output

Komponenter

Dette dokument dækker følgende komponenter:

...

Registry Deletion Job

...

Type: Java program

Filnavn: registrydeletionjob.jar

Relaterede services

Registry Deletion Job afhænger af tilstedeværelsen af andre komponenter, og ved fejl i disse vil jobbet fejle tilsvarende. Disse services er:

  • Aftale XDS Registry

  • Aftale Registry XDB

Konfiguration

Program-konfiguration

Grundlæggende konfiguration foregår ved redigering i filen application.properties, som skal placeres under mappen "config" relativt i forhold til hvor jar-filen startes fra.

I filen skal følgende properties være definerede:

...

Property

...

Beskrivelse

...

xds.iti18.endpoint

...

Adressen på Aftale XDS Registrys iti-18 endpoint

...

xds.iti62.endpoint

...

Adressen på Aftale XDS Registrys iti-62 endpoint

...

xdb.url

...

Stien til Aftale Registry XDB

...

SDS-5785

Afvikling

XDSCleanup udstiller et antal http-endpoints. Dette afsnit beskriver hvilke endpoints der er, og deres returkoder og fortolkning af svaret.

Alle endpoints sørger for at håndtere samtidige kald.

Cleanup

Der findes følgende endpoint i to forskellige containere.

xdscleanup:

URLBeskrivelse
<server>/xdscleanup/registry-timebased-cleanup/startStarter et tidsbaseret registry oprydningsjob
<server>/xdscleanup/registry-status90-cleanup/startStarter et registry oprydningsjob for personer med status 90
<server>/xdscleanup/repository-cleanup/startStarter et repository oprydningsjob


xdscleanup-deprecated:

URLBeskrivelse
<server>/xdscleanup-deprecated/deprecated-document-entries/startStarter oprydning af udløbne aftaler og tilhørende associations.
<server>/xdscleanup-deprecated/dangling-submissionsets/startStarter oprydning af submissionsets der ikke er knyttet til associations


Ovenstående endpoints kan returnere følgende http-statuskoder:

StatuskodeFortolkning
200 OKSletningen (eller opbygningen af opgave stakken) gik godt. Det vil fremgå af applikationloggen, hvad der er slettet.
500 Internal Server ErrorNoget gik galt under sletning. Applikationsloggen bør inspiceres for at fastslå problemet.

Status

Hver snitflade til oprydning, har en tilsvarende status snitflade, som returnerer statuskoden for seneste kørsel af oprydningsjobbet. Har oprydningsjobbet ikke kørt endnu, returneres statuskode 200.

Disse findes også i to containere.


xdscleanup:

URL
<server>/xdscleanup/registry-timebased-cleanup/status
<server>/xdscleanup/registry-status90-cleanup/status
<server>/xdscleanup/repository-cleanup/status


xdscleanup-deprecated:

URL
<server>/xdscleanup-deprecated/deprecated-document-entries/status
<server>/xdscleanup-deprecated/dangling-submissionsets/status

Health

Overvågnings-endpoint, som bruges til at overvåge komponentens sundhedstilstand.

URL
<server>/xdscleanup/health

Der returneres følgende http-statuskoder:

StatuskodeFortolkning
200 OKServicen er i sund tilstand.
500 Internal Server ErrorServicen er i usund tilstand. Responset indeholder information om årsagen. Applikationsloggen indeholder yderligere information.

Body'en indeholder en json-struktur, der beskriver hvilke dele af systemet der er blevet tjekket, og deres tilstand. Eksempel hvor tjenesten er i sund tilstand:

Code Block
languagejs
{
  "version": "42e17e1cb3ea8d8abd21d87252b14a136020e7c0",
  "registry.db": "OK: 0 entries currently enqueued for repository deletion.",
  "sdm.db": "OK: Database connnection available.",
  "repository.db": "OK"
}

Bemærk at det er angivet hvor mange dokumenter der pt. ligger i kø til sletning.

Eksempel hvor tjenesten er i usund tilstand:

Code Block
languagejs
{
  "version": "42e17e1cb3ea8d8abd21d87252b14a136020e7c0",
  "registry.db": "ERROR: 7 entries could not be deleted from repository (at least 5 attempts).",
  "sdm.db": "OK: Database connnection available.", 
  "repository.db": "OK" 
}

I ovenstående eksempel er komponenten konfigureret til at melde fejl efter 5 mislykkede forsøg på at slette dokumenter. 

Konfiguration

Konfiguration af jobbene i xdscleanup foregår ved redigering i filen /compose/configuration/xdscleanup.properties.

I filen skal følgende properties være definerede:

PropertyBeskrivelse
datasource.nxrg.jndi.nameJNDI navnet på den datasource der giver adgang til NXRG databasen.
datasource.openxds.jndi.nameJNDI navnet på den datasource der giver adgang til OpenXDS databasen.

datasource.sdm.jndi.name

JNDI navnet på den datasource der giver adgang til SDM databasen (v2_Person tabellen).
deletion.document.cleanup.specificationsKomma-separeret liste af oprydningskriterier. Angiver hvilke dokumenttyper der slettes, og hvornår de slettes. Et oprydningskriterium har formen <code-name>#<code-scheme>#<months-to-keep>, hvor <code-name> og <code-scheme> angiver dokumenttypen der skal slettes, og <months-to-keep> angiver hvor mange måneder der skal gå, før sletningen udføres. Værdien af <months-to-keep> skal være et positivt heltal. De to andre værdier kan være vilkårlige strenge, så længe de ikke indeholder kommaer.
deletion.registry.timebased.limit

Begrænsning på antal dokumenter der hentes pr. kørsel fra registry.

deletion.repository.limit

Begrænsning på antal dokumenter der hentes pr. kørsel fra repository.

deletion.registry.batchsizeAntal dokumenter der forsøges slettet i registry i en kørsel.
deletion.repository.batchsizeAntal dokumenter der forsøges slettet i repository i en kørsel.
deletion.max.attemptsAntal gange sletning fra repository'et forsøges, før health endpointet vil melde fejl.
deletion.in.clause.max.sizeMaksimal størrelse på in-clause i sql-queries.
deletion.save.status90.docs

Angiver en periode tilbage i tiden hvor dokumenter hørende til personer med status 90 kan slettes.

Eksempler på værdier er:

"2Y"    (for 2 år)

"12M"  (for 12 måneder)

"90D"  (for 90 dage)

desired.execution.duration

Ønsket udførselstid for kørsler af oprydningsjobs. Angives i ISO-8601 formattet. Fx 'PT20S' (20 sekunder)

Et kald vil køre oprydninger indtil den konfigurerede tid er gået, eller der ikke er flere opgaver på stakken.

Konfiguration af jobbene i xdscleanup-deprecated foregår ved redigering i filen /compose/configuration/xdscleanup-deprecated.properties.

I filen skal følgende properties være definerede:

PropertyBeskrivelse
datasource.nxrg.jndi.nameJNDI navnet på den datasource der giver adgang til NXRG databasen.
deletion.registry.batchsizeAntal dokumenter der forsøges slettet i registry i en kørsel.
deletion.max.attemptsAntal gange sletning fra repository'et forsøges, før health endpointet vil melde fejl.
deletion.in.clause.max.sizeMaksimal størrelse på in-clause i sql-queries.
desired.execution.duration

Ønsket udførselstid for kørsler af oprydningsjobs. Angives i ISO-8601 formattet. Fx 'PT20S' (20 sekunder)

Et kald vil køre oprydninger indtil den konfigurerede tid er gået, eller der ikke er flere opgaver på stakken.

deletion.deprecated.document.cleanup.typecodes

Liste af typecodes slettejobbet deprecated-document-entries tager fat i.

Angives som komma-separeret liste. Eksempel:

39289-4,39290-2

deletion.deprecated.document.cleanup.days

Angiver det antal dage, hvor et dokument med status 'Deprecated' slettes af jobbet deprecated-document-entries.

Angives som heltal. Eksempel:

60

deletion.deprecated.document.cleanup.limit

Angiver limit til SQL for det job der henter deprecatede dokumenter

Default værdi: 

10000

deletion.dangling.submissionsets.cleanup.limit

Angiver limit til SQL for det job der henter dangling submissionsets

Default værdi: 

10000

Logning

XDSCleanup logger på standardout vha. log4j. Jobbet vil undervejs i kørslen udskrive information (på INFO-niveau) om, hvor mange dokumenter der er slettet i NXRG og OpenXDS. Eventuelle fejl vil blive logget på ERROR-niveau.

Nedenstående logudsnit viser et eksempel på, hvad der logges ved kørsler af registry-timebased-cleanup:

Code Block
2024-02-20 10:45:53,073 [INFO] dk.nsp.backgroundjob.ws.AbstractOperationsServlet - Starting RegistryTimeBasedCleanupServlet
2024-02-20 10:45:53,074 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: Execution started.
2024-02-20 10:45:53,074 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: Stack is empty
2024-02-20 10:45:53,076 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: 2 items added to stack from TypeSpecificationBasedRegistryCleanupSupplier
2024-02-20 10:45:53,293 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: 0 items added to stack from TypeAndTimeBasedRegistryCleanupSupplier
2024-02-20 10:45:53,301 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: 15 items added to stack from TypeAndTimeBasedRegistryCleanupSupplier
2024-02-20 10:45:53,301 [INFO] dk.nsp.xdscleanup.stack.operation.RegistryBatchCleanupOperation - Registry Time Based Cleanup: Starting batch deletion of 5 entries.
2024-02-20 10:45:59,923 [INFO] dk.nsp.xdscleanup.stack.operation.RegistryBatchCleanupOperation - Registry Time Based Cleanup: Batch cleanup finished! deleted=5 Time spent: 6 seconds.
2024-02-20 10:45:59,924 [INFO] dk.nsp.xdscleanup.stack.operation.RegistryBatchCleanupOperation - Registry Time Based Cleanup: Deleted DocumentEntries are: [DocumentEntry[entryId=19,entryUuid=urn:uuid:cd4dfc2c-fd90-4e86-9c97-fc3c9bf1689d,uniqueId=5276244681184508606.7987529088012732814.1644933978680], DocumentEntry[entryId=6,entryUuid=urn:uuid:d4ab1ed2-3958-4198-9a30-613163fb8b3a,uniqueId=5745551251602451683.3935600351732515390.1638782620952], DocumentEntry[entryId=73,entryUuid=urn:uuid:82f0d0a0-9d0f-485b-82db-73acc01467dd,uniqueId=7391069964040269010.6606474661760645002.1644933987142], DocumentEntry[entryId=52,entryUuid=urn:uuid:46c1090a-56fb-4e76-a350-66bff690e7d4,uniqueId=5443441424951482166.3208201158191659533.1644933984508], DocumentEntry[entryId=53,entryUuid=urn:uuid:6cc6c1f1-8283-4f12-9eac-14631436e772,uniqueId=5439909451008163766.2904449482848880817.1644933984627]]
2024-02-20 10:45:59,924 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: remaining=14 on stack
2024-02-20 10:45:59,927 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: remaining=14 of type RegistryBatchCleanupOperation on stack
2024-02-20 10:45:59,927 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Time Based Cleanup: Execution finished. Time spent: 6 seconds

I dette eksempel køres med deletion.registry.batchsize=5 og desired.execution.duration=PT3S

Det ses at der i kørslen først lægges opgaver på stakken. Herefter slettes 5 dokumenter i registry'et.


Næste logudsnit viser et eksempel på, hvad der logges ved kørsler af registry-status90-cleanup:

Code Block
collapsetrue
2024-04-17 08:48:26,480 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 100 new operations added to stack from Status90RegistryCleanupSupplier
2024-04-17 08:48:26,484 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,487 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,490 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,493 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,496 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,498 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,500 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,502 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,503 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,504 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,506 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,506 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,507 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,508 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,509 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,509 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,510 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,511 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,511 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,512 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,513 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,514 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,514 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,515 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,515 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,517 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,517 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,519 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,520 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,521 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,521 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,522 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,523 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,523 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,524 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,524 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,527 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,528 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,528 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,529 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,530 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,530 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,531 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,531 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,532 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,532 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,533 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,533 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,534 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,536 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 1 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,537 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,537 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,538 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,539 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,539 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,540 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,540 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,541 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,541 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,542 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,542 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,543 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,543 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,544 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,544 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,545 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,546 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,546 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,547 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,547 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,548 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,548 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,549 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,549 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,550 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,551 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,551 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,552 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,552 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,553 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,553 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,554 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,554 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,555 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,555 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,556 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,556 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,557 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,557 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: 0 new operations added to stack from Status90RegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: remaining=0 on stack
2024-04-17 08:48:26,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Status 90 Cleanup: Execution finished. Time spent: 0 seconds

I denne kørsel lægges nye opgaver på stakken. Kørslen stopper før den når at slette dokumenter da de konfigurerede 3 sekunder er gået.

Til sidste logges antallet af de to typer af opgaver der ligger på stakken.


Næste logudsnit viser et eksempel på, hvad der logges ved kørsler af repository-cleanup:

Code Block
2024-02-20 11:02:02,125 [INFO] dk.nsp.backgroundjob.ws.AbstractOperationsServlet - Starting RepositoryCleanupServlet
2024-02-20 11:02:02,126 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: Execution started.
2024-02-20 11:02:02,126 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: Stack is empty
2024-02-20 11:02:02,131 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: 3 items added to stack from RepositoryCleanupSupplier
2024-02-20 11:02:02,131 [INFO] dk.nsp.xdscleanup.stack.operation.RepositoryBatchCleanupOperation - Repository Cleanup: Starting batch deletion of 10 entries.
2024-02-20 11:02:05,554 [INFO] dk.nsp.xdscleanup.stack.operation.RepositoryBatchCleanupOperation - Repository Cleanup: Batch cleanup finished! deleted=10 Time spent: 3 seconds.
2024-02-20 11:02:05,554 [INFO] dk.nsp.xdscleanup.stack.operation.RepositoryBatchCleanupOperation - Repository Cleanup: Deleted documents are: [DeletedDocumentEntry[entryId=29,entryUuid=urn:uuid:8c074054-bc99-4553-ab66-4ef0d69955d1,uniqueId=5013066068983426981.14844101298205144.1644933981986], DeletedDocumentEntry[entryId=32,entryUuid=urn:uuid:176648da-9e4c-4310-9afa-426dddc6be69,uniqueId=7940194384163546428.4597640489576449153.1644933984979], DeletedDocumentEntry[entryId=12,entryUuid=urn:uuid:1e58be50-79c2-416d-a63e-cc86acf7eab5,uniqueId=6445224554063458139.752938790016863248.1644933983266], DeletedDocumentEntry[entryId=14,entryUuid=urn:uuid:104a6045-01b4-4300-b214-f8782fbf2021,uniqueId=6814624543862677988.440886245461280012.1644933983802], DeletedDocumentEntry[entryId=18,entryUuid=urn:uuid:f061a64a-ab72-451e-90f1-555000ce0b5c,uniqueId=6374947108306177790.694872682422027174.1644933985476], DeletedDocumentEntry[entryId=30,entryUuid=urn:uuid:43d40af3-953b-45dd-bcc3-781c1f3512f2,uniqueId=6102980928965576480.144763730808818554.1644933981073], DeletedDocumentEntry[entryId=13,entryUuid=urn:uuid:98aad0e4-7d16-4e90-b628-93f81f0a8366,uniqueId=6078866472321989594.7806293989192085883.1644933986953], DeletedDocumentEntry[entryId=25,entryUuid=urn:uuid:644b95d9-927f-4f28-b96f-de8b16ab778f,uniqueId=8450233303628819957.2074304039769587217.1644933978439], DeletedDocumentEntry[entryId=23,entryUuid=urn:uuid:56971f3c-357e-4b5c-a3ac-e7009b5edd6d,uniqueId=7771216615021121331.8228789047473557417.1644933981429]]
2024-02-20 11:02:05,559 [INFO] dk.nsp.xdscleanup.stack.operation.RepositoryBatchCleanupOperation - Repository Cleanup: Batch marked as completed
2024-02-20 11:02:05,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: remaining=2 on stack
2024-02-20 11:02:05,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: remaining=2 of type RepositoryBatchCleanupOperation on stack
2024-02-20 11:02:05,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Repository Cleanup: Execution finished. Time spent: 3 seconds

I dette eksempel køres med deletion.repository.batchsize=10,

I kørslen lægges 3 nye operationer på stakken. Herefter, slettes det første batch fra repository'et.


Næste logudsnit viser et eksempel på, hvad der logges ved kørsler af deprecated-document-entries:

Code Block
collapsetrue
2024-04-12 10:01:47,035 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 372 new operations added to stack from DeprecatedDocumentCleanupSupplier
2024-04-12 10:01:47,263 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,266 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,268 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,270 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,271 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,274 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,276 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,278 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,281 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,282 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,284 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,286 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,287 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,288 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,290 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,292 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,294 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,295 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,297 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,299 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,300 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,302 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,304 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,305 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,306 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,307 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,308 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,309 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,310 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,311 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,313 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,314 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,315 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,317 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,318 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,319 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,321 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,322 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,323 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,325 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,327 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,328 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,328 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,329 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,330 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,331 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,332 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,333 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,334 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,335 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,336 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,337 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,338 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,341 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,343 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,344 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,345 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,347 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,349 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,350 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,351 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,353 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,354 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,356 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,357 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,358 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,358 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,359 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,360 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,361 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,362 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,364 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,365 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,366 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,367 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,369 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,371 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,373 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,375 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,376 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,378 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,379 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,381 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,382 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,383 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,384 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,385 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,386 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,387 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,388 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,389 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,390 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,392 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,393 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,395 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,396 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,398 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,399 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,400 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,402 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,402 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,403 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,404 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,405 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,406 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,407 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,408 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,410 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,411 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,412 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,412 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,413 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,414 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,415 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,416 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,416 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,417 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,417 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,418 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,418 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,419 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,419 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,420 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,420 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,421 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,421 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,422 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,423 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,423 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,424 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,424 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,425 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,425 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,426 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,427 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,427 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,428 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,428 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,429 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,429 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,430 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 1 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,482 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Batch cleanup finished! deleted=7 Time spent: 0 seconds.
2024-04-12 10:01:47,495 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Deleted DocumentEntries are: [DocumentEntry[entryId=75,entryUuid=urn:uuid:fcce07e8-c7f6-4171-8d84-7d4f6dd58ea0,uniqueId=4793974228853511084.5371166327631397721.1644933987570], DocumentEntry[entryId=71,entryUuid=urn:uuid:2017e421-5a12-463b-9641-4581341a152b,uniqueId=7609025266424319590.1166399418142538378.1644933986809], DocumentEntry[entryId=72,entryUuid=urn:uuid:98aad0e4-7d16-4e90-b628-93f81f0a8366,uniqueId=6078866472321989594.7806293989192085883.1644933986953], DocumentEntry[entryId=70,entryUuid=urn:uuid:fd5a426b-a070-46aa-82a3-95046d3e5dbd,uniqueId=5125652985570693384.5283280190088233070.1644933986669], DocumentEntry[entryId=69,entryUuid=urn:uuid:0552fc26-1888-4fb8-895a-ef7b6cb97fc6,uniqueId=6818377459695506305.2191301573190859431.1644933986564], DocumentEntry[entryId=73,entryUuid=urn:uuid:82f0d0a0-9d0f-485b-82db-73acc01467dd,uniqueId=7391069964040269010.6606474661760645002.1644933987142], DocumentEntry[entryId=74,entryUuid=urn:uuid:dfe98e76-681b-4e33-8cb6-1c0db34f1c2d,uniqueId=8344749892112574561.4349234642012750781.1644933987436]]
2024-04-12 10:01:47,495 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from RegistryBatchCleanupOperation
2024-04-12 10:01:47,502 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,506 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,512 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,517 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,519 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,521 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,524 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,529 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,532 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,534 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,536 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,537 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,539 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,541 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,543 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,546 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,548 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,551 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,553 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,555 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,556 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,561 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,562 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,563 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,564 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,565 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,566 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,567 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,568 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,569 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,570 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,571 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,571 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,573 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,576 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,577 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,578 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,579 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,580 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,581 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 1 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,589 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Batch cleanup finished! deleted=2 Time spent: 0 seconds.
2024-04-12 10:01:47,590 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Deleted DocumentEntries are: [DocumentEntry[entryId=57,entryUuid=urn:uuid:8fa2e669-c58d-4d57-ba23-b2191ca92d78,uniqueId=5736428597775584458.1004879692497532276.1644933985388], DocumentEntry[entryId=59,entryUuid=urn:uuid:3f5d2159-f075-47a3-baf8-d639ec075aae,uniqueId=5872307702141348537.4715608542704613996.1644933985637]]
2024-04-12 10:01:47,590 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from RegistryBatchCleanupOperation
2024-04-12 10:01:47,592 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,593 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,594 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,595 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,596 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,597 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,598 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,600 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,601 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,602 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,603 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,604 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,605 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,606 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,607 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,608 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,609 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,609 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,610 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,610 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,611 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,611 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,612 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,612 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,613 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,613 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,614 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,614 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,615 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,616 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,616 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,617 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,617 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,618 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,619 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,620 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,621 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,621 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,622 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,624 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,624 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,625 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,626 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,626 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,627 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,628 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,629 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,630 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,631 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,632 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,632 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,633 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,634 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,635 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,636 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,636 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,637 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,638 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,639 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,640 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,641 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,642 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,643 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,644 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 1 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,650 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Batch cleanup finished! deleted=2 Time spent: 0 seconds.
2024-04-12 10:01:47,650 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Deleted DocumentEntries are: [DocumentEntry[entryId=8,entryUuid=urn:uuid:54d36682-c15e-464d-aacb-9774d6d2ed4d,uniqueId=9134687982285027924.2914737209187321810.1638782622801], DocumentEntry[entryId=10,entryUuid=urn:uuid:3184cb2a-c77d-4e69-8b9d-ceaddaa81c3d,uniqueId=6890570916939512299.786493020586687787.1638782624567]]
2024-04-12 10:01:47,650 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from RegistryBatchCleanupOperation
2024-04-12 10:01:47,652 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,652 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,653 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,654 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,655 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,656 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,657 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,658 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,659 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,660 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,661 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,662 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,663 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,664 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,665 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,667 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,667 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,668 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,669 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,670 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,670 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,671 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,672 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,673 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,674 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,675 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 1 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,681 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Batch cleanup finished! deleted=1 Time spent: 0 seconds.
2024-04-12 10:01:47,681 [INFO] dk.nsp.xdscleanup.deprecated.stack.registry.deprecated.RegistryBatchCleanupOperation - Registry Deprecated Document Entries Cleanup: Deleted DocumentEntries are: [DocumentEntry[entryId=6,entryUuid=urn:uuid:d4ab1ed2-3958-4198-9a30-613163fb8b3a,uniqueId=5745551251602451683.3935600351732515390.1638782620952]]
2024-04-12 10:01:47,681 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from RegistryBatchCleanupOperation
2024-04-12 10:01:47,682 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,683 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,684 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,685 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,685 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,686 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,686 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,687 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,688 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,689 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,689 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,690 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,691 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,692 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,692 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,693 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,693 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,694 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,695 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,695 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,696 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,697 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,697 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,698 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,699 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,700 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,701 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,701 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,702 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,703 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,704 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,704 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,705 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,706 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,707 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,708 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,709 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,710 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,711 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,712 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,713 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,713 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,714 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,715 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,715 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,716 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,717 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,717 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,718 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,719 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,719 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,720 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,721 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,721 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,722 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,723 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,724 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,725 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,726 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,727 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,728 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,728 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,729 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,730 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,730 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,731 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,732 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,733 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,734 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,735 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,736 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,736 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,737 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,737 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,738 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,739 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,740 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,740 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,741 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,742 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,742 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,743 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,744 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,745 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,745 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,746 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,746 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,747 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,748 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,749 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,749 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,750 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,751 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,751 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,752 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,753 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,753 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,754 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,754 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,755 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier
2024-04-12 10:01:47,756 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: remaining=0 on stack
2024-04-12 10:01:47,758 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated Document Cleanup: Execution finished. Time spent: 0 seconds


I dette eksempel slettes 12 deprecatede dokumenter.


Næste logudsnit viser et eksempel på, hvad der logges ved kørsler af dangling-submissionsets:

Code Block
2024-04-09 08:10:48,776 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Dangling SubmissionSets Cleanup: 1 new operations added to stack from DanglingSubmissionSetsCleanupSupplier
2024-04-09 08:10:48,791 [INFO] dk.nsp.xdscleanup.stack.registry.submissionsets.RegistrySubmissionSetsBatchCleanupOperation - Registry Dangling SubmissionSets Cleanup: Batch cleanup finished! deleted=8 Time spent: 0 seconds.
2024-04-09 08:10:48,792 [INFO] dk.nsp.xdscleanup.stack.registry.submissionsets.RegistrySubmissionSetsBatchCleanupOperation - Registry Dangling SubmissionSets Cleanup: Deleted SubmissionSets are: [SubmissionSet[entryId=83,entryUuid=urn:uuid:f62e5064-2248-432c-887c-67ed34e03717], SubmissionSet[entryId=11,entryUuid=urn:uuid:e00461b1-d41e-400a-8976-5f0737a746d4], SubmissionSet[entryId=77,entryUuid=urn:uuid:9c806c3a-1e8c-461c-abbc-cc96015da8c5], SubmissionSet[entryId=81,entryUuid=urn:uuid:f9b0ea5a-85f8-4baa-88f0-2ac994e4c445], SubmissionSet[entryId=71,entryUuid=urn:uuid:99c7d198-ac07-42ba-9400-9c22ca32ab5c], SubmissionSet[entryId=79,entryUuid=urn:uuid:e1aabb27-57ee-4bee-87c8-ec700b37b5d8], SubmissionSet[entryId=75,entryUuid=urn:uuid:14c58541-cd56-4bed-806b-4f55adbb1568], SubmissionSet[entryId=73,entryUuid=urn:uuid:db4c8577-9aac-4849-9ec8-1e825b11b26e]]
2024-04-09 08:10:48,792 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Dangling SubmissionSets Cleanup: 0 new operations added to stack from RegistrySubmissionSetsBatchCleanupOperation
2024-04-09 08:10:48,792 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Dangling SubmissionSets Cleanup: remaining=0 on stack
2024-04-09 08:10:48,792 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Dangling SubmissionSets Cleanup: Execution finished. Time spent: 0 seconds

I dette eksempel slettes 8 dangling submissionsets

Logning

Registry Deletion Job logger på standardout vha. log4j. Jobbet vil undervejs i kørslen udskrive følgende INFO statements ud:

  • Undervejs i søgningen i XDB:
    • Found documents to delete: X (efter hver 100 dokumenter) 
    • Finished finding documents to delete, found: X
  • Undervejs i sletning fra XDS:
    • Deleted X/Y documents from registry
    • Finished deleting documents, deleted: X , failed deleting: Y
  • Job finished successfully eller Job finished - Y deletions failed

Fejl vil blive logget som ERROR statements og vil være "Error fetching uuids from XDB" eller "Error deleting document with ID" med tilhørende fejlbesked.

Output

Efter kørsel af jobbet vil der blive placeret filer i det aktuelle bibliotek svarende til dokumenter der skal slettes i XDS repository. Der genereres een fil pr Repository der skal slettes dokumenter i.

Navngivningen på filen/filerne vil være:

  • deleted-ddMMyyyyHHmm-repositoryId.txt

Hvor "ddMMyyyyHHmm" svarer til det tidspunkt, hvor jobbet blev startet, og repositoryId er OID på det repository der skal slettes dokumenter i.

Der vil herudover (men kun hvis nogle sletninger i registry fejler) blive genereret een fil med navnet:

    • failed-ddMMyyyyHHmm.txt

Indeholdende id´er på de dokumenter, der ikke kunne slettes fra registry

Krav til backup m.m.

Det anbefales at aktuelle konfigurationsfiler er under versionskontrol og back up.

Konsekvenser m.h.t. restore/backup af XDB-databasen

RegJob vil kun slette to år gamle aftaler fra den kørende XDB-database, og disse aftaler vl altså stadigvæk eksistere i de backups af XDB-databasen, der kan være foretaget. 

Dette betyder også, at hvis man foretager et restore af en gammel XDB-database, vil man skulle køre RegJob igen.