Couchbase 2.2.0 document size editing limit

后端 未结 8 1182
离开以前
离开以前 2020-12-23 23:02

I tried to edit document via couchbase console, and caught this warning message:

Warning: Editing of document with size more than 2.5kb is not allowe

8条回答
  •  执念已碎
    2020-12-23 23:48

    As of Couchbase 4.5 you have to modify the app.min.js file not the documents.js. To permanently fix try:

    sed -i 's|return getStringBytesFilter(json)>docBytesLimit;|return false;|' /opt/couchbase/lib/ns_server/erlang/lib/ns_server/priv/public/ui/app.min.js

提交回复
热议问题