You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a functional indexer codebase, but there are some reliability and performance aspects that need improvement:
Index-failure handling
After being consumed from RabbitMQ, an indexing task can fail for many reasons, which can usually be categorized into:
Retrievable: the task failed due to a temporary issue (e.g. network, pod restart, etc.), and can be re-tried with the likelihood of success
Terminal: the task will never succeed, so should not be retried. Instead, the operator should be notified of the failure, the reason, and steps to resolve
We should be able to assign priorities to Index tasks - see Priority Indexer Queues #103 (e.g. big re-indexes should be low priority background jobs, so as not to disrupt people submitting new data packages or edits)
Would be good to have a periodic auditing task that determines if we have objects that are missing from solr and reindexes them.
Already Done:
Metacat resubmits index tasks that were not successfully submitted to RabbitMQ (Metacat Issue #1603)
We have a functional indexer codebase, but there are some reliability and performance aspects that need improvement:
OntologyModelService- See Investigate the performance issue in DataONE indexer #34Already Done: