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 default is 1MB for received request body and we can have documents size just above that limit.
It looks like there isn't a simple config file or one-line method we can set, so might have to re-architect the parser a bit to use the parser interface vs the the basic message oriented currently in use.
The other escape hatch we have is to simply switch to back to couch_js if customers are upset and want their views to be built.
When ateles tries to index large documents, we get a :
We send the document here via ibrowse:
https://github.com/cloudant-labs/ateles/blob/master/src/ateles_util.erl#L123-L126
The http server closes the connection because the body (JSON document sent via HTTP) is too large.
https://github.com/cloudant-labs/ateles/blob/master/c_src/connection.cc#L112
Here are some potential ideas on how to fix this issue:
https://stackoverflow.com/questions/50348516/boost-beast-message-with-body-limit
The text was updated successfully, but these errors were encountered: