You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2008/07/15 04:02:35 UTC

[Couchdb Wiki] Update of "MaxDocumentSize" by GavinRoy

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by GavinRoy:
http://wiki.apache.org/couchdb/MaxDocumentSize

The comment on the change is:
I ran into a limitation in saving documents with a 9k attachment.

New page:
The maximum request size to CouchDB is defined in src/mochiweb/mochiweb_request.erl

% Maximum recv_body() length of 1MB
-define(MAX_RECV_BODY, (1024*1024)).

As this is the maximum request size, the maximum document size is less than 1MB.  The maximum document size is not a constant value as the JSON encoding is variable on a per document basis and is best defined as MAX_RECV_BODY - the size of the JSON key and formatting data.

You can edit MAX_RECV_BODY to a higher value.