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 I was trying to index text files in chunks (2000 files in a chunk), I got this error message
"ConnectionError(('Connection aborted.', error(104, 'Connection reset by peer'))) caused by: ProtocolError(('Connection aborted.', error(104, 'Connection reset by peer')))"
When I reduced the chunk size to 1500 , it worked . The exception message was not very clear about the limit of the data that can be pushed to elasticsearch server .
The text was updated successfully, but these errors were encountered:
This is a message saying that elasticsearch closed the connection, which it would do if the request is above it's maximum size.
Unfortunately there is no easy way for us to know that that is what happened (as opposed to a regular network failure). There is nothing we can do I am afraid.
When I was trying to index text files in chunks (2000 files in a chunk), I got this error message
"ConnectionError(('Connection aborted.', error(104, 'Connection reset by peer'))) caused by: ProtocolError(('Connection aborted.', error(104, 'Connection reset by peer')))"
When I reduced the chunk size to 1500 , it worked . The exception message was not very clear about the limit of the data that can be pushed to elasticsearch server .
The text was updated successfully, but these errors were encountered: