我们正在使用 python 将文档存储到 couchbase 中。
我们从 couchbase 收到此错误消息。
_TooBigError_0x4 (generated, catch TooBigError): <Key=u'1426714751', RC=0x4[The object requested is too big to store in the server], Operational Error, Results=1, C Source=(src\multiresult.c,309)>
如何更改最大尺寸?
我正在使用 couchbase python SDK 2.0 版
最佳答案
Couchbase 中的最大文档大小对于 Couchbase 存储桶为 20MB,对于 Memcached 存储桶为 1MB。没有办法改变它,所以如果你达到这个限制,你将需要改变你的数据模型来将你的文档拆分成更小的对象。
关于python - couchbase 无法存储,因为太大,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29820378/