Page History
| Navitabs | ||||
|---|---|---|---|---|
| ||||
Table of Contents outline true
...
XDSCleanup udstiller et antal http-endpoints. Dette afsnit beskriver hvilke endpoints der er, og deres returkoder og fortolkning af svaret.
Alle endpoints kan kaldes uafhængigt af hinanden, og der kan køre flere instanser samtidig.
...
sørger for at håndtere samtidige kald.
Cleanup
Der findes følgende endpoint i to forskellige containere.
xdscleanup:
| URL | Beskrivelse |
|---|---|
| <server>/xds-operationsxdscleanup/registry-timebased-cleanup/start | Starter et tidsbaseret registry oprydningsjob |
| <server>/xds-operationsxdscleanup/registry-status90deceased-cleanup/start | Starter et registry oprydningsjob for personer med status 90der er afdøde |
| <server>/xds-operationsxdscleanup/repository-cleanup/start | Starter et repository oprydningsjob |
xdscleanup-deprecated:
| URL | Beskrivelse |
|---|---|
| <server>/xdscleanup-deprecated/deprecated-document-entries/start | Starter oprydning af udløbne aftaler og tilhørende associations. |
| <server>/xdscleanup-deprecated/dangling-submissionsets/start | Starter oprydning af submissionsets der ikke er knyttet til associations |
Ovenstående endpoints kan returnere følgende http-statuskoder:
...
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>/xds-operationsxdscleanup/registry-timebased-cleanup/status |
| <server>/xds-operationsxdscleanup/registry-status90deceased-cleanup/status |
| <server>/xds-operationsxdscleanup/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>/xds-operationsxdscleanup/health |
Der returneres følgende http-statuskoder:
...
| Code Block | ||
|---|---|---|
| ||
{
"version": "42e17e1cb3ea8d8abd21d87252b14a136020e7c0",
"registry.db": "OK: 0 entries currently enqueued for repository deletion.",
"sdm.dbPersonInformation": "OK: Database connnection available.",
"repository.db": "OK"
} |
...
| Code Block | ||
|---|---|---|
| ||
{
"version": "42e17e1cb3ea8d8abd21d87252b14a136020e7c0",
"registry.db": "ERROR: 7 entries could not be deleted from repository (at least 5 attempts).",
"sdm.dbPersonInformation": "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
Grundlæggende konfiguration Konfiguration af jobbene i xdscleanup foregår ved redigering i filen /compose/configuration/xdscleanup.properties.
...
| Property | Beskrivelse |
|---|---|
| datasource.nxrg.jndi.name | JNDI navnet på den datasource der giver adgang til NXRG databasen. |
| datasource.openxds.jndi.name | JNDI 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.specifications | Komma-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.batchsizelimit | Antal Begrænsning på antal dokumenter der forsøges slettet i registry i en kørselhentes pr. kørsel fra registry. |
| deletion.repository.batchsizelimit | Antal Begrænsning på antal dokumenter der hentes pr. kørsel fra repository. |
| deletion.registry.batchsize | Antal dokumenter der forsøges slettet i registry i en kørsel. |
| deletion.registry.deletefield | Angivelse af, hvilken kolonne i databasen der skal anvendes til at afgøre, hvornår en række skal slettes. Skal være 'delete_time' eller 'deletetrigger_time' (default) |
| deletion.repository.batchsize | Antal dokumenter der forsøges slettet i repository i forsøges slettet i repository i en kørsel. |
| deletion.max.attempts | Antal gange sletning fra repository'et forsøges, før health endpointet vil melde fejl. |
| deletion.in.clause.max.size | Maksimal størrelse på in-clause i sql-queries. |
| deletion.save.status90deceased.docs | Angiver en periode tilbage i tiden hvor dokumenter hørende til personer med status 90 som er afdød 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. |
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:
| dk.nsp.xdscleanup.httpclient.pooling.totalconnections | Totale antal HttpClients forbindelser der kan åbnes |
| dk.nsp.xdscleanup.httpclient.pooling.maxconnections.pr.route | Antal HttpClients forbindelser der kan åbnes pr. rute |
| personinformation.url | URL til PersonInformation servicen |
| personinformation.errorcount.duration | Specificering af hvor lang tid tilbage der skal tælles fejl fra PersonInformation servicen (ifm. /status endpointet). Angives som duration i ISO-8601 formattet. Default værdi er PT10M (10 minutter). |
| personinformation.error.tolerance | Antal fejl der tolereres fra PersonInformation servicen før /status endpointet angiver servicen som ikke tilgængelig. Default værdi er 0. |
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:
| Property | Beskrivelse |
|---|---|
| datasource.nxrg.jndi.name | JNDI navnet på den datasource der giver adgang til NXRG databasen. |
| deletion.registry.batchsize | Antal dokumenter der forsøges slettet i registry i en kørsel. |
| deletion.max.attempts | Antal gange sletning fra repository'et forsøges, før health endpointet vil melde fejl. |
| deletion.in.clause.max.size | Maksimal 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 på formen <code-name>#<code-scheme>. Eksempel: 39289-4#2.16.840.1.113883.6.1,39290-2#2.16.840.1.113883.6.1 |
| 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-deceased-cleanup:
| Code Block | ||
|---|---|---|
| ||
2024-04-17 08:48:26,480 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 100 new operations added to stack from Status90RegistryCleanupSupplier
2024-04-17 08:48:26,484 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,487 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,490 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,493 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,496 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,498 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,500 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,502 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,503 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,504 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,506 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,506 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,507 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,508 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,509 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,509 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,510 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,511 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,511 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,512 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,513 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,514 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,514 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,515 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,515 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,516 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,517 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,517 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,518 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,519 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,520 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,521 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,521 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,522 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,523 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,523 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,524 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,524 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,525 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,526 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,527 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,528 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,528 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,529 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,530 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,530 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,531 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,531 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,532 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,532 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,533 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,533 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,534 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,535 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,536 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 1 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,537 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdBatchCleanupSupplier
2024-04-17 08:48:26,537 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,538 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,539 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,539 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,540 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,540 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,541 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,541 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,542 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,542 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,543 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,543 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,544 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,544 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,545 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,546 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,546 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,547 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,547 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,548 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,548 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,549 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,549 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,550 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,551 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,551 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,552 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,552 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,553 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,553 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,554 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,554 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,555 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,555 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,556 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,556 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,557 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,557 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: 0 new operations added to stack from DeceasedRegistryPatientIdPrefixCleanupSupplier
2024-04-17 08:48:26,558 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased Cleanup: remaining=0 on stack
2024-04-17 08:48:26,559 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deceased 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 | ||
|---|---|---|
| ||
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 | ||
| Code Block | ||
2024-02-20 10:45:53,073 [INFO] dk.nsp.backgroundjob.wsservice.AbstractOperationsServletStackedOperationsService - Starting RegistryTimeBasedCleanupServlet Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,074740 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: Execution started. 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,074741 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: Stack is empty: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,076742 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: 0 2new itemsoperations added to stack from TypeSpecificationBasedRegistryCleanupSupplierDeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,293742 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: 0 new itemsoperations added to stack from TypeAndTimeBasedRegistryCleanupSupplierDeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,301743 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: 0 15new itemsoperations added to stack from TypeAndTimeBasedRegistryCleanupSupplierDeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5347,301744 [INFO] dk.nsp.xdscleanupbackgroundjob.stackservice.operation.RegistryBatchCleanupOperationStackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: 0 new Startingoperations batchadded deletionto ofstack 5from entries.DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5947,923745 [INFO] dk.nsp.xdscleanupbackgroundjob.stackservice.operation.RegistryBatchCleanupOperationStackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: Batch0 cleanupnew finished! deleted=5 Time spent: 6 seconds.operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5947,924745 [INFO] dk.nsp.xdscleanupbackgroundjob.stackservice.operation.RegistryBatchCleanupOperationStackedOperationsService - Registry TimeDeprecated BasedDocument 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,9240 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 TimeDeprecated BasedDocument Cleanup: remaining=14 on stack0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5947,927747 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument Cleanup: remaining=140 ofnew typeoperations RegistryBatchCleanupOperationadded onto stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:4501:5947,927748 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry TimeDeprecated BasedDocument 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 |
|---|
2024-02-20 10:50:25,3980 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.wsservice.AbstractOperationsServletStackedOperationsService - Starting RegistryStatus90CleanupServlet Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2547,399750 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: Execution started. 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2547,399751 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: Stack is empty 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2547,400751 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: 100 new itemsoperations added to stack from Status90RegistryCleanupSupplierDeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2847,677752 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: 10 new itemsoperations added to stack from Status90RegistryPatientIdSuffixCleanupSupplierDeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2847,678753 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: remaining=10 on stack 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2847,679753 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: remaining=9 of type Status90RegistryPatientIdSuffixCleanupSupplier on stack 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2847,679754 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: remaining=10 ofnew typeoperations Status90RegistryPatientIdBatchCleanupSupplieradded onto stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 10:5001:2847,679754 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry StatusDeprecated 90Document Cleanup: 0 new Executionoperations finished.added Timeto spent:stack 3 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,125from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-04-12 10:01:47,755 [INFO] dk.nsp.backgroundjob.wsservice.AbstractOperationsServletStackedOperationsService - Starting RepositoryCleanupServlet Registry Deprecated Document Cleanup: 0 new operations added to stack from DeprecatedDocumentPatientIdPrefixCleanupSupplier 2024-0204-2012 1110:0201:0247,126756 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Deprecated RepositoryDocument Cleanup: remaining=0 Executionon started.stack 2024-0204-2012 1110:0201:0247,126758 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - RepositoryRegistry Deprecated Document Cleanup: Execution finished. Time spent: Stack is empty 2024-02-20 11:02:02,131 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 RepositorySubmissionSets Cleanup: 1 3new itemsoperations added to stack from RepositoryCleanupSupplierDanglingSubmissionSetsCleanupSupplier 2024-0204-2009 1108:0210:0248,131791 [INFO] dk.nsp.xdscleanup.stack.registry.operationsubmissionsets.RepositoryBatchCleanupOperationRegistrySubmissionSetsBatchCleanupOperation - RepositoryRegistry Cleanup: Starting batch deletion of 10 entries. 2024-02-20 11:02:05,554 [INFO] dk.nsp.xdscleanup.stack.operation.RepositoryBatchCleanupOperation - Repository Dangling SubmissionSets Cleanup: Batch cleanup finished! deleted=108 Time spent: 30 seconds. 2024-0204-2009 1108:0210:0548,554792 [INFO] dk.nsp.xdscleanup.stack.registry.operationsubmissionsets.RepositoryBatchCleanupOperationRegistrySubmissionSetsBatchCleanupOperation - Registry Dangling RepositorySubmissionSets Cleanup: Deleted documentsSubmissionSets are: [DeletedDocumentEntrySubmissionSet[entryId=2983,entryUuid=urn:uuid:8c074054f62e5064-bc992248-4553432c-ab66-4ef0d69955d1,uniqueId=5013066068983426981.14844101298205144.1644933981986887c-67ed34e03717], DeletedDocumentEntrySubmissionSet[entryId=3211,entryUuid=urn:uuid:176648dae00461b1-9e4cd41e-4310400a-9afa-426dddc6be69,uniqueId=7940194384163546428.4597640489576449153.16449339849798976-5f0737a746d4], DeletedDocumentEntrySubmissionSet[entryId=1277,entryUuid=urn:uuid:1e58be509c806c3a-79c21e8c-416d461c-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=30abbc-cc96015da8c5], SubmissionSet[entryId=81,entryUuid=urn:uuid:43d40af3f9b0ea5a-953b85f8-45dd4baa-bcc3-781c1f3512f2,uniqueId=6102980928965576480.144763730808818554.164493398107388f0-2ac994e4c445], DeletedDocumentEntrySubmissionSet[entryId=1371,entryUuid=urn:uuid:98aad0e499c7d198-7d16ac07-4e9042ba-b628-93f81f0a8366,uniqueId=6078866472321989594.7806293989192085883.16449339869539400-9c22ca32ab5c], DeletedDocumentEntrySubmissionSet[entryId=2579,entryUuid=urn:uuid:644b95d9e1aabb27-927f57ee-4f284bee-b96f-de8b16ab778f,uniqueId=8450233303628819957.2074304039769587217.164493397843987c8-ec700b37b5d8], DeletedDocumentEntrySubmissionSet[entryId=2375,entryUuid=urn:uuid:56971f3c14c58541-357ecd56-4b5c4bed-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,559806b-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 RepositoryDangling SubmissionSets Cleanup: remaining=2 on stack0 new operations added to stack from RegistrySubmissionSetsBatchCleanupOperation 2024-0204-2009 1108:0210:0548,559792 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry RepositoryDangling SubmissionSets Cleanup: remaining=2 of type RepositoryBatchCleanupOperation 0 on stack 2024-0204-2009 1108:0210:0548,559792 [INFO] dk.nsp.backgroundjob.service.StackedOperationsService - Registry Dangling RepositorySubmissionSets Cleanup: Execution finished. Time spent: 30 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'etslettes 8 dangling submissionsets.