Hi there.
Have you stopped and started Datahub and/or SVI-index? Is the index job stuck on "pending" / "running" ect?
You most likely need to check within postgres:
select job_id, * from feature.job order by started_at_dttm desc;
--VI Indexing Tasks table
select parent_id, name_nm, status_cd, message_txt , started_at_dttm, ended_at_dttm, * from feature.task where status_cd <> 'Completed' order by status_cd; If it i still "stuck" after the services reboot then you will need to change the stat of the index job.
-cancel job indexing from VI
update feature.job set status_cd = 'Cancelled' where job_id in ('value job_id');
-cancel VI indexing tasks
update feature.task set status_cd = 'Cancelled' where parent_id in ('value job_id');
... View more