summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2022-04-01 18:16:12 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-06-08 19:52:08 +0000
commita86bb832e16d554b148c90dff3e9b85558581954 (patch)
tree783595c10eb4f75bb973fac15b1fbf4352461a3b
parent32762963363d127ae187965b8ab59eea8603f5dd (diff)
downloadmongo-a86bb832e16d554b148c90dff3e9b85558581954.tar.gz
SERVER-65100 Increase block size for BSONColumn to be BSONObjMaxUserSize
(cherry picked from commit 0c2e3ff94757054b976390b2060a86bfa7dd086c)
-rw-r--r--src/mongo/bson/util/bsoncolumn.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mongo/bson/util/bsoncolumn.cpp b/src/mongo/bson/util/bsoncolumn.cpp
index e13d1fd80ae..49b6eb89577 100644
--- a/src/mongo/bson/util/bsoncolumn.cpp
+++ b/src/mongo/bson/util/bsoncolumn.cpp
@@ -43,8 +43,9 @@ namespace {
// Start capacity for memory blocks allocated by ElementStorage
constexpr int kStartCapacity = 128;
-// Max capacity for memory blocks allocated by ElementStorage
-constexpr int kMaxCapacity = 1024 * 32;
+// Max capacity for memory blocks allocated by ElementStorage. We need to allow blocks to grow to at
+// least BSONObjMaxUserSize so we can construct user objects efficiently.
+constexpr int kMaxCapacity = BSONObjMaxUserSize;
// Memory offset to get to BSONElement value when field name is an empty string.
constexpr int kElementValueOffset = 2;