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
When using BLS (in "AutoSearch mode") to add data to an index, the index status is being polled while the indexing takes place. This works fine in the beginning, but after a while, the status request remains pending for a number of seconds until the indexing process is finished. This is probably because of synchronized methods in Index.java blocking the status request. We can probably improve this by being more specific about what we synchronize on, and/or keeping track of an extra status variable.
The text was updated successfully, but these errors were encountered:
When using BLS (in "AutoSearch mode") to add data to an index, the index status is being polled while the indexing takes place. This works fine in the beginning, but after a while, the status request remains pending for a number of seconds until the indexing process is finished. This is probably because of synchronized methods in Index.java blocking the status request. We can probably improve this by being more specific about what we synchronize on, and/or keeping track of an extra status variable.
The text was updated successfully, but these errors were encountered: