The reprocessing job is stuck because it appears a PCAP was imported with a packet with timestamp 0 and retained timestamps was selected.
The script stj_clear_zero_timestamp_entries.sh will assist in nullifying the space table journal entries with a start timestamp of 0.
This is used by doing the following:
cd /home/
scotus stop
mount /pfs
mount /var/lib/solera/meta
bash ./stj_clear_zero_timestamp_entries.sh > stj.out.txt
cat stj.out.txt | generate_space_table_journal_from_text -j space_table_journal_v4
This results in a new space table journal in /home. Validate it by doing the following:
walk_space_table_journal > old.txt
walk_space_table_journal -j space_table_journal_v4 > new.txt
diff old.txt new.txt
to confirm the only altered entries are those which previously had a 0 start timestamp.If the validation succeeds,
cp /var/lib/solera/meta/space_table_journal_v4 /home/space_table_journal_v4.backup
cp /home/space_table_journal_v4 /var/lib/solera/meta/space_table_journal_v4
walk_space_table_journal > final.txt
diff new.txt final.txt
[root@]# diff new.txt final.txt
< Space table journal name: space_table_journal_v4
—
> Space table journal name: /var/lib/solera/meta/space_table_journal_v4
scotus start