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
Fix timeout handling for queries with a lot of intermediate results, but less
than 1000 matches. The timeout was only checked after each 1000th match. This
caused troubles for queries with complex temporary results that where
discarded. The query execution could take too long time and consume system
resources in a multi-user system even when the timeout was configured. The fix
is to push down the timeout check to the node search iterators.