Closed mgalloy closed 2 months ago
Fixed issues with duplicated entries for 20240330.
A problem with the kcor_hw
table in general is that the pipeline is never quite sure when a "new" set of hardware settings is needed. It would probably be best to just copy the contents of kcor_hw
into kcor_eng
. I think the following would do it:
update kcor_eng
set kcor_eng.EACH_COLUMN = kcor_hw.EACH_COLUMN
from kcor_eng
left join kcor_hw
on kcor_eng.kcor_hw_id = kcor_hw.hw_id
where kcor_hw.EACH_COLUMN is not null;
I think this OK now, but need to reprocess again to make sure. Will reprocess along with #365.
This looks good.
There are several database errors that involve
kcor_hw
are frequently reported in the logs.The first is:
That file is there:
Maybe it was not there when it was needed? Maybe it was just
.fts
then?Next is: