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
The index sync process currently creates requests for every element in Mesh while sending requests to Elasticsearch. This can cause a lot of buffered documents with high memory usage when elastic search is not fast enough to process the requests.
The generation of the requests already uses Flowables, but this is converted to an observable which does not support backpressure. This should be fixed to only use flowables.
The text was updated successfully, but these errors were encountered:
The index sync process currently creates requests for every element in Mesh while sending requests to Elasticsearch. This can cause a lot of buffered documents with high memory usage when elastic search is not fast enough to process the requests.
The generation of the requests already uses Flowables, but this is converted to an observable which does not support backpressure. This should be fixed to only use flowables.
The text was updated successfully, but these errors were encountered: