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
Solr is pretty much the default configuration, which causes a bunch of issues at scale, like indexing falling behind and not reflecting changes to assets in searches.
Solr indexers fall behind on doc update storms (i.e. set attribute on every asset)
commits must be written to disk before being searchable, increasing lag between write and read visibility
asset updates may be triggering a manual commit instead of leveraging autocommit to properly batch commits
We should tune for improved autocommit, and look at softautocommit as well. Perhaps using the commitWithin solr facility may also provide some relief.
Solr is pretty much the default configuration, which causes a bunch of issues at scale, like indexing falling behind and not reflecting changes to assets in searches.
We should tune for improved autocommit, and look at softautocommit as well. Perhaps using the
commitWithin
solr facility may also provide some relief.https://wiki.apache.org/solr/SolrConfigXml?#Update_Handler_Section
https://wiki.apache.org/solr/NearRealtimeSearch
The text was updated successfully, but these errors were encountered: