Greetings,
When I run the CPT.BAT file against the expanded Athena CSV files I’m suddenly getting thousands of failures in the log file. Here is one such failed update that I ran on a remote workstation.
[INFO ] 2022-12-20 14:32:26.155 [pool-2-thread-12] ConceptUpdater - Update status:FAIL. The code value for id 2102761 is []
When I look for that concept_id in the resulting concept table it is not present.
select count(1) from vocab.concept where concept_id = 2102761;
count|
-----+
0|
Lines such as the following that do update successfully are, of course, present…
[INFO ] 2022-12-20 14:32:26.186 [pool-2-thread-4] ConceptUpdater - Update status:SUCCESS. The code value for id 42733540 is [Cryosurgery of rectal tumor; malignant (Deprecated)]
select count(1) from vocab.concept where concept_id = 42733540;
count|
-----+
1|
Does anyone know why some are failing and some are not?
I ran this again on my local machine and still get 12392 “Not Processed” concepts.
[INFO ] 2022-12-20 16:14:45.392 [main] ConceptService - Writing updated data to CONCEPT.csv
Updated CPT4 records: 16632/16632
[INFO ] 2022-12-20 17:05:35.063 [main] ConceptService - Not processed cpt4 concepts: 12392. See logs/not-processed-concepts-12-20-2022-16-14-44.out, file. You can find more information about errors in the logs/logf
What would cause all these to fail?
Thanks,
Jeff