couchbase因为太大而无法存储

时间:2015-04-23 10:14:08

标签: python couchbase

我们正在使用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版

1 个答案:

答案 0 :(得分:6)

Couchbase存储桶中的最大文档大小为20MB,Memcached存储桶为1MB。没有办法改变这一点,所以如果您达到此限制,则需要更改数据建模以将文档拆分为较小的对象。